/* ================================
   特定商取引法に基づく表記ページ専用スタイル
   ================================ */

/* 注意書きセクション */
.tokushoho-notice {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white-color);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tokushoho-notice p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 表記コンテンツ */
.tokushoho-content {
    padding: 4rem 0;
}

.tokushoho-content .container {
    max-width: 1000px;
}

/* テーブルラッパー */
.tokushoho-table-wrapper {
    background: var(--white-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 4rem;
}

/* 表記テーブル */
.tokushoho-table {
    width: 100%;
    border-collapse: collapse;
}

.tokushoho-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.tokushoho-table tbody tr:last-child {
    border-bottom: none;
}

.tokushoho-table th {
    background: var(--gray-50);
    color: var(--title-color);
    font-weight: 600;
    text-align: left;
    padding: 1.5rem;
    width: 25%;
    vertical-align: top;
    border-right: 1px solid #e5e7eb;
}

.tokushoho-table td {
    padding: 1.5rem;
    color: var(--text-color);
    line-height: 1.8;
    vertical-align: top;
}

/* リスト */
.payment-methods,
.cancellation-list,
.system-requirements,
.special-notes {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
}

.payment-methods li,
.cancellation-list li,
.system-requirements li,
.special-notes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.payment-methods li::before,
.cancellation-list li::before,
.system-requirements li::before,
.special-notes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* 注記 */
.payment-note,
.policy-note {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color-light);
    line-height: 1.6;
}

/* キャンセルポリシー */
.cancellation-policy {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.policy-title {
    font-weight: 600;
    color: var(--title-color);
    margin-bottom: 0.5rem;
}

/* インラインリンク */
.inline-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--secondary-color);
}

/* 追加情報セクション */
.tokushoho-additional {
    background: var(--white-color);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.additional-title {
    font-size: 1.8rem;
    color: var(--title-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
}

/* 注意事項セクション */
.notice-section {
    margin-bottom: 2rem;
}

.notice-section:last-child {
    margin-bottom: 0;
}

.notice-heading {
    font-size: 1.2rem;
    color: var(--title-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.notice-heading::before {
    content: "▸";
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.notice-section p {
    color: var(--text-color);
    line-height: 1.8;
    margin: 0;
}

/* アクションボタン */
.tokushoho-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

/* レスポンシブデザイン */
@media screen and (max-width: 768px) {
    .tokushoho-notice {
        padding: 1.5rem;
    }

    .tokushoho-notice p {
        font-size: 1rem;
    }

    .tokushoho-content {
        padding: 2rem 0;
    }

    /* テーブルをカード形式に変換 */
    .tokushoho-table {
        display: block;
    }

    .tokushoho-table tbody {
        display: block;
    }

    .tokushoho-table tbody tr {
        display: block;
        margin-bottom: 1.5rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        overflow: hidden;
    }

    .tokushoho-table th,
    .tokushoho-table td {
        display: block;
        width: 100%;
        border: none;
    }

    .tokushoho-table th {
        background: var(--primary-color);
        color: var(--white-color);
        padding: 1rem;
        font-size: 1rem;
    }

    .tokushoho-table td {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .tokushoho-additional {
        padding: 2rem 1.5rem;
    }

    .additional-title {
        font-size: 1.5rem;
    }

    .notice-heading {
        font-size: 1.1rem;
    }

    .tokushoho-actions {
        flex-direction: column;
    }

    .tokushoho-actions .button {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .tokushoho-notice {
        padding: 1rem;
    }

    .tokushoho-notice p {
        font-size: 0.9rem;
    }

    .tokushoho-table th {
        font-size: 0.95rem;
    }

    .tokushoho-table td {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .tokushoho-additional {
        padding: 1.5rem 1rem;
    }

    .additional-title {
        font-size: 1.3rem;
    }

    .notice-section p {
        font-size: 0.9rem;
    }
}
