/* ===================================================
   Privacy Policy Page
=================================================== */

/* ページヘッダー */
.privacy-page-header {
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 60px;
    background: #FFFBFB;
}

.privacy-page-header__inner {
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.privacy-page-header__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: var(--weight-thin);
    font-size: clamp(48px, 9vw, 110px);
    letter-spacing: 0.02em;
    line-height: 1.05;
    color: var(--color-text);
}

/* コンテンツエリア */
.privacy-content {
    background: #FFFBFB;
    padding-block: 60px 120px;
}

.privacy-content__inner {
    max-width: 800px;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

/* イントロ */
.privacy-intro {
    font-family: var(--font-ja);
    font-size: 13px;
    line-height: 2.3;
    letter-spacing: 0.04em;
    color: var(--color-text-mid);
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid var(--color-border);
}

/* 各セクション */
.privacy-section {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--color-border);
}

.privacy-section:last-of-type {
    border-bottom: none;
}

.privacy-section__title {
    font-family: var(--font-ja);
    font-weight: var(--weight-regular);
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--color-text);
    margin-bottom: 24px;
}

.privacy-section__body {
    font-family: var(--font-ja);
    font-size: 13px;
    line-height: 2.3;
    letter-spacing: 0.04em;
    color: var(--color-text-mid);
}

.privacy-section__body p + p {
    margin-top: 16px;
}

.privacy-section__sub-heading {
    font-weight: var(--weight-regular);
    color: var(--color-text);
    margin-top: 20px;
    margin-bottom: 8px;
}

/* リスト共通 */
.privacy-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ・箇条書き */
.privacy-list li {
    padding-left: 1.2em;
    position: relative;
}

.privacy-list:not(.privacy-list--paren):not(.privacy-list--bracket) li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--color-text-light);
}

/* (1)(2) 形式 */
.privacy-list--paren {
    counter-reset: paren-counter;
}

.privacy-list--paren li {
    padding-left: 2em;
    counter-increment: paren-counter;
}

.privacy-list--paren li::before {
    content: '(' counter(paren-counter) ')';
    position: absolute;
    left: 0;
    color: var(--color-text-light);
    font-size: 12px;
}

/* [1][2] 形式 */
.privacy-list--bracket {
    counter-reset: bracket-counter;
}

.privacy-list--bracket li {
    padding-left: 2.2em;
    counter-increment: bracket-counter;
}

.privacy-list--bracket li::before {
    content: '[' counter(bracket-counter) ']';
    position: absolute;
    left: 0;
    color: var(--color-text-light);
    font-size: 12px;
}

/* (1)ラベル + 本文 */
.privacy-list__label {
    display: inline;
    font-weight: var(--weight-regular);
    color: var(--color-text);
    margin-right: 0.5em;
}

.privacy-list__label::after {
    content: '：';
}

/* お問い合わせリンク */
.privacy-link {
    color: var(--color-text);
    border-bottom: 1px solid var(--color-border);
    transition: opacity var(--dur-fast) var(--easing);
}

.privacy-link:hover {
    opacity: 0.6;
}

/* 会社情報 */
.privacy-company {
    font-family: var(--font-ja);
    font-size: 13px;
    line-height: 2.2;
    letter-spacing: 0.04em;
    color: var(--color-text-mid);
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

/* ===================================================
   Responsive
=================================================== */
@media (max-width: 768px) {
    .privacy-page-header {
        padding-bottom: 40px;
    }

    .privacy-content {
        padding-block: 40px 80px;
    }

    .privacy-intro {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .privacy-section {
        margin-bottom: 36px;
        padding-bottom: 36px;
    }
}
