/* ==========================================================================
   特定商取引法に基づく表記ページ（/tokusho/）
   ========================================================================== */

/* ---- HERO ---- */
.tk-hero {
    opacity: 1 !important;
    transform: none !important;
}

.tk-hero__bg {
    position: relative;
    width: 100%;
    height: 316px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tk-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
}

.tk-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.tk-hero__title {
    font-family: "Noto Serif JP", serif;
    font-size: 50px;
    font-weight: 700;
    color: rgb(81, 81, 81);
    margin: 0;
    line-height: 1.2;
}

/* ---- 本文エリア ---- */
.tk-body {
    opacity: 1 !important;
    transform: none !important;
    background: #fff;
    padding: 80px 20px;
}

.tk-body__inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* ---- 各セクション ---- */
.tk-section {
    margin-bottom: 56px;
}

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

.tk-section__title {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

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

.tk-table__head {
    background: rgb(37, 42, 118);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    padding: 14px 20px;
    width: 220px;
    vertical-align: top;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.tk-table__head--bold {
    font-weight: 700;
}

.tk-table__data {
    background: #fff;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 400;
    padding: 14px 20px;
    line-height: 1.7;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    vertical-align: top;
}

.tk-table tbody tr:first-child .tk-table__data,
.tk-table tbody tr:first-child .tk-table__head {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tk-table__data--bold {
    font-weight: 700;
}

/* ---- 返金・解約テキスト ---- */
.tk-section__body {
    margin: 0;
}

.tk-section__paragraph {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.9;
    margin: 0 0 24px;
}

.tk-section__paragraph:last-child {
    margin-bottom: 0;
}

/* ---- 特記事項リスト ---- */
.tk-section__list {
    margin: 0;
    padding: 0 0 0 1.5em;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tk-section__list li {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.9;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 767px) {
    .tk-hero__bg {
        height: 220px;
    }

    .tk-hero__title {
        font-size: 28px;
    }

    .tk-body {
        padding: 48px 20px;
    }

    .tk-section {
        margin-bottom: 40px;
    }

    .tk-section__title {
        font-size: 16px;
    }

    .tk-table__head {
        width: 120px;
        font-size: 14px;
        padding: 10px 12px;
    }

    .tk-table__data {
        font-size: 14px;
        padding: 10px 12px;
    }

    .tk-section__paragraph {
        font-size: 15px;
    }

    .tk-section__list li {
        font-size: 15px;
    }
}
