/* ========================================
   特定商取引法に基づく表記 - tokushoho.css
   rem基準（1rem = 10px @1920px）
   ======================================== */

/* ========================================
   ページヘッダー（ゴールド帯）
   ======================================== */
.tokushoho-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 8rem 0;
    text-align: center;
}

.tokushoho-hero-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 11.2rem;
}

.tokushoho-hero-en {
    font-size: 3.92rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5rem;
    line-height: 1.2;
}

.tokushoho-hero-ja {
    font-size: 2.52rem;
    font-weight: 600;
    color: #fff;
    margin-top: 0.75rem;
    letter-spacing: 0.15em;
}

/* ========================================
   ページラッパー
   ======================================== */
.tokushoho-page-wrap {
    max-width: 145rem;
    margin: 0 auto;
    padding: 10rem 11.2rem 12rem;
}

/* ========================================
   カード
   ======================================== */
.tokushoho-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 1.4rem;
    padding: 5.6rem;
    overflow: hidden;
}

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

.tokushoho-table tr {
    border-bottom: 1px solid var(--border-color);
}

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

.tokushoho-table th,
.tokushoho-table td {
    padding: 3.5rem 4.2rem;
    font-size: 2.24rem;
    line-height: 1.8;
    vertical-align: top;
}

.tokushoho-table th {
    width: 28rem;
    font-weight: 700;
    color: var(--text-color);
    background-color: var(--cream-bg);
    white-space: nowrap;
}

.tokushoho-table td {
    color: var(--text-color);
}

.tokushoho-table td p {
    margin-bottom: 0.7rem;
}

.tokushoho-table td p:last-child {
    margin-bottom: 0;
}

/* ========================================
   レスポンシブ - タブレット (768px以下)
   ======================================== */
@media (max-width: 768px) {
    .tokushoho-hero {
        padding: 6rem 0;
    }

    .tokushoho-hero-inner {
        padding: 0 2.8rem;
    }

    .tokushoho-hero-en {
        font-size: 3.5rem;
    }

    .tokushoho-page-wrap {
        padding: 8rem 2.8rem 10rem;
    }

    .tokushoho-card {
        padding: 4.2rem 3.5rem;
    }

    .tokushoho-table th {
        width: 22rem;
    }

    .tokushoho-table th,
    .tokushoho-table td {
        padding: 2.8rem 2.8rem;
    }
}

/* ========================================
   レスポンシブ - スマホ (480px以下)
   ======================================== */
@media (max-width: 480px) {
    .tokushoho-hero {
        padding: 5rem 0;
    }

    .tokushoho-hero-inner {
        padding: 0 2.1rem;
    }

    .tokushoho-hero-en {
        font-size: 3rem;
    }

    .tokushoho-hero-ja {
        font-size: 2.24rem;
    }

    .tokushoho-page-wrap {
        padding: 6rem 2.1rem 8.4rem;
    }

    .tokushoho-card {
        padding: 2.8rem 2.1rem;
    }

    /* 縦積みレイアウト */
    .tokushoho-table,
    .tokushoho-table tbody,
    .tokushoho-table tr,
    .tokushoho-table th,
    .tokushoho-table td {
        display: block;
        width: 100%;
    }

    .tokushoho-table tr {
        padding: 2.8rem 0;
    }

    .tokushoho-table th {
        padding: 0 0 1.4rem 0;
        white-space: normal;
        background-color: transparent;
        border-bottom: none;
        font-size: 2.38rem;
        color: var(--primary-dark);
    }

    .tokushoho-table td {
        padding: 0;
        font-size: 2.1rem;
    }
}
