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

/* 特商法ページコンテナ（1カラム） */
.tokusho-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* メインコンテンツエリア */
.tokusho-main-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

/* ページヘッダー */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 3px solid #f0f0f0;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* 特商法コンテンツ */
.tokusho-content {
    padding: 0;
}

/* 情報テーブル */
.tokusho-table {
    width: 100%;
    margin-bottom: 30px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

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

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

.tokusho-table th {
    background-color: #f3f4f6;
    padding: 15px 20px;
    text-align: left;
    font-weight: bold;
    color: #333;
    width: 30%;
    vertical-align: top;
}

.tokusho-table td {
    padding: 15px 20px;
    color: #555;
    line-height: 1.8;
}

/* セクション見出し */
.tokusho-section {
    margin-bottom: 30px;
}

.tokusho-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

/* 注意事項ボックス */
.notice-box {
    background-color: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.notice-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #374151;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.notice-box h3 i {
    margin-right: 10px;
    color: #6B7280;
}

.notice-box ul {
    margin: 0;
    padding-left: 25px;
}

.notice-box li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

/* 支払い方法セクション */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.payment-method {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.payment-method:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.payment-method i {
    font-size: 32px;
    color: var(--primary-color, #DC2626);
    margin-bottom: 10px;
}

.payment-method h4 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* 返品・キャンセルポリシー */
.policy-box {
    background-color: #FEF3C7;
    border: 1px solid #FCD34D;
    border-radius: 6px;
    padding: 20px;
    margin: 20px 0;
}

.policy-box h3 {
    font-size: 18px;
    font-weight: bold;
    color: #92400E;
    margin-bottom: 15px;
}

.policy-box p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #78350F;
}

.policy-box p:last-child {
    margin-bottom: 0;
}

/* お問い合わせセクション */
.contact-section {
    margin-top: 40px;
    text-align: center;
}

/* ボタンは共通スタイルを使用 */
.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color, #DC2626);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #B91C1C;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(220, 38, 38, 0.2);
}

/* リンク */
.tokusho-content a {
    color: var(--primary-color, #DC2626);
    text-decoration: none;
    transition: all 0.3s;
}

.tokusho-content a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .tokusho-page-container {
        padding: 20px 15px;
    }

    .tokusho-main-content {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .page-header {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .page-title {
        font-size: 24px;
    }

    .tokusho-table th,
    .tokusho-table td {
        display: block;
        width: 100%;
        padding: 15px;
    }

    .tokusho-table th {
        background-color: #f3f4f6;
        font-size: 14px;
        border-bottom: none;
    }

    .tokusho-table td {
        padding-top: 5px;
        border-bottom: 1px solid #e5e7eb;
    }

    .tokusho-section h2 {
        font-size: 16px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .notice-box,
    .policy-box {
        padding: 15px;
    }

    .contact-section {
        margin-top: 30px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
    }
}