<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Pricing & Policy</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #374151;
            background-color: #f9fafb;
            padding: 20px;
        }

        .container {
            max-width: 768px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .section {
            padding: 24px;
            border-bottom: 1px solid #e5e7eb;
        }

        .section:last-child {
            border-bottom: none;
        }

        .section-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .section-title .emoji {
            font-size: 18px;
        }

        .note {
            font-size: 14px;
            color: #6b7280;
            background-color: #f9fafb;
            padding: 12px;
            border-radius: 8px;
            border-left: 4px solid #d1d5db;
        }

        .table-container {
            overflow-x: auto;
            margin: 16px 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            overflow: hidden;
            min-width: 500px;
        }

        th {
            background-color: #f9fafb;
            padding: 12px;
            text-align: left;
            font-weight: 500;
            font-size: 14px;
            color: #111827;
            border-bottom: 1px solid #d1d5db;
        }

        th:first-child {
            text-align: left;
        }

        th:not(:first-child) {
            text-align: center;
        }

        td {
            padding: 12px;
            border-bottom: 1px solid #e5e7eb;
        }

        td:first-child {
            font-weight: 500;
            color: #111827;
        }

        td:not(:first-child) {
            text-align: center;
            color: #374151;
        }

        tr:last-child td {
            border-bottom: none;
        }

        ul {
            list-style-type: disc;
            padding-left: 20px;
            color: #374151;
        }

        li {
            margin-bottom: 8px;
        }

        strong {
            font-weight: 600;
            color: #111827;
        }

        .copy-button {
            background-color: #2563eb;
            color: white;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 500;
            transition: background-color 0.2s;
            margin: 20px auto;
            display: block;
        }

        .copy-button:hover {
            background-color: #1d4ed8;
        }

        .copy-button:active {
            background-color: #1e40af;
        }

        .copy-button.copied {
            background-color: #059669;
        }

        /* 印刷用CSS */
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .container {
                box-shadow: none;
                border: 1px solid #d1d5db;
            }
            
            .copy-button {
                display: none;
            }
            
            table {
                border: 2px solid #000;
            }
            
            th, td {
                border: 1px solid #000;
            }
        }

        /* ダークモード対応 */
        @media (prefers-color-scheme: dark) {
            body {
                background-color: #111827;
                color: #f9fafb;
            }
            
            .container {
                background: #1f2937;
                border: 1px solid #374151;
            }
            
            .section {
                border-bottom-color: #374151;
            }
            
            .section-title {
                color: #f9fafb;
            }
            
            .note {
                background-color: #374151;
                color: #d1d5db;
                border-left-color: #6b7280;
            }
            
            table {
                border-color: #4b5563;
            }
            
            th {
                background-color: #374151;
                color: #f9fafb;
                border-bottom-color: #4b5563;
            }
            
            td {
                border-bottom-color: #4b5563;
                color: #d1d5db;
            }
            
            td:first-child {
                color: #f9fafb;
            }
            
            ul {
                color: #d1d5db;
            }
            
            strong {
                color: #f9fafb;
            }
        }

        /* レスポンシブ対応 */
        @media (max-width: 640px) {
            body {
                padding: 10px;
            }
            
            .section {
                padding: 16px;
            }
            
            .section-title {
                font-size: 18px;
            }
            
            table {
                font-size: 14px;
            }
            
            th, td {
                padding: 8px;
            }
        }
    </style>
</head>
<body>
    <div class="container">
        <!-- 料金比較セクション -->
        <div class="section">
            <h1 class="section-title">
                <span class="emoji">💰</span>
                料金比較(1回60分)
            </h1>
            <div class="table-container">
                <table role="table" aria-label="料金比較表">
                    <thead>
                        <tr>
                            <th scope="col">プラン</th>
                            <th scope="col">ARTRY</th>
                            <th scope="col">P.S.parkle(月契約)</th>
                            <th scope="col">P.S.parkle(完全単発)</th>
                        </tr>
                    </thead>
                    <tbody>
                        <tr>
                            <td>マンツーマン</td>
                            <td>4,980円</td>
                            <td>5,000円</td>
                            <td>6,500円</td>
                        </tr>
                        <tr>
                            <td>グループ</td>
                            <td>3,980円</td>
                            <td>3,500円</td>
                            <td>4,000円</td>
                        </tr>
                    </tbody>
                </table>
            </div>
        </div>

        <!-- 注記セクション -->
        <div class="section">
            <div class="note">
                ※P.S.parkleは「レッスン繰越」や「3回まで保留」が可能。
            </div>
        </div>

        <!-- 支払いシステムセクション -->
        <div class="section">
            <h2 class="section-title">
                <span class="emoji">👜</span>
                回数システム
            </h2>
            <ul>
                <strong>ARTRY</strong>
                <li>回数をあらかじめ決めての月額制</li>
                <strong>P.S.parkle</strong>
                <li>月額型+もっと受けたい月は追加単発購入の併用可能</li>
                <li>例:月1回契約+追加で単発購入(マンツーマン5,000円 / グループ3,500円)</li>
                <li>月契約なしの完全単発型も選択可能(マンツーマン6,500円 / グループ4,000円)
                    気が向いた時にレッスンを受けたい方向け
                </li>
            </ul>
        </div>

        <!-- 退会タイミングセクション -->
        <div class="section">
            <h2 class="section-title">
                <span class="emoji">📅</span>
                退会タイミング
            </h2>
            <ul>
                <strong>ARTRY</strong>
                <li>退会は「10日まで」の申し出</li>
                <strong>P.S.parkle</strong>
                <li>毎月1日が引き落とし日 → それまでの申し出</li>
                <li>超えた場合も、決済手数料を差し引いた額を返金対応可</li>
            </ul>
        </div>

        <!-- まとめポイントセクション -->
        <div class="section">
            <h2 class="section-title">
                <span class="emoji">✨</span>
                まとめポイント
            </h2>
            <ul>
                <li>料金:マンツーマンはARTRYの方が20円安いが、グループはP.S.parkleの方が500円安い。</li>
                <li>柔軟性:P.S.parkleでは「月契約+追加単発」「完全単発」など自由度が高い。</li>
                <li>退会:P.S.parkleでは日を過ぎても返金対応可。</li>
            </ul>
        </div>

        <!-- Copy to Clipboard ボタン -->
        
    </div>

    <script>
        function copyToClipboard() {
            const button = document.querySelector('.copy-button');
            const originalText = button.textContent;
            
            // HTMLの内容を取得
            const htmlContent = document.documentElement.outerHTML;
            
            // クリップボードにコピー
            navigator.clipboard.writeText(htmlContent).then(() => {
                button.textContent = 'コピー完了!';
                button.classList.add('copied');
                
                setTimeout(() => {
                    button.textContent = originalText;
                    button.classList.remove('copied');
                }, 2000);
            }).catch(err => {
                console.error('Failed to copy: ', err);
                button.textContent = 'コピー失敗';
                setTimeout(() => {
                    button.textContent = originalText;
                }, 2000);
            });
        }
    </script>
</body>
</html>
上部へスクロール