/* ==========================================================================
   プライバシーポリシーページ専用スタイル
   ========================================================================== */

/* ページヒーロー */
.page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--color-light-blue) 0%, var(--color-soft-pink) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 300;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-text-light);
    font-weight: 400;
}

/* コンテンツエリア */
.privacy-content {
    background-color: var(--color-white);
    padding: 80px 0 100px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

/* イントロダクション */
.privacy-intro {
    margin-bottom: 60px;
    padding: 30px;
    background-color: var(--color-soft-pink);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.privacy-intro p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-dark);
    margin: 0;
}

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

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

.privacy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-primary);
    position: relative;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--color-olive);
}

.privacy-section > p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* リストスタイル */
.privacy-list {
    margin: 20px 0;
    padding-left: 0;
    counter-reset: item;
}

.privacy-list > li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
    counter-increment: item;
}

.privacy-list > li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}

/* サブリスト */
.privacy-sublist {
    margin: 15px 0;
    padding-left: 0;
    counter-reset: subitem;
}

.privacy-sublist > li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    counter-increment: subitem;
}

.privacy-sublist > li::before {
    content: '(' counter(subitem) ')';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* アルファベットサブリスト */
.privacy-sublist-alpha {
    margin: 12px 0;
    padding-left: 0;
    counter-reset: alphaitem;
}

.privacy-sublist-alpha > li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-text-light);
    counter-increment: alphaitem;
}

.privacy-sublist-alpha > li::before {
    content: counter(alphaitem, lower-alpha) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-primary);
    font-weight: 600;
}

/* お問い合わせ情報 */
.contact-info {
    background-color: var(--color-light-blue);
    padding: 30px;
    border-radius: 8px;
    margin-top: 25px;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* フッター */
.privacy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--color-border);
    text-align: center;
}

.update-date {
    font-size: 14px;
    color: var(--color-text-light);
    font-weight: 500;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
    .content-wrapper {
        padding: 50px 40px;
    }

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

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }

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

    .page-subtitle {
        font-size: 16px;
    }

    .privacy-content {
        padding: 60px 0 80px;
    }

    .content-wrapper {
        padding: 40px 25px;
        box-shadow: none;
        border-radius: 0;
    }

    .privacy-section h2 {
        font-size: 20px;
    }

    .privacy-intro {
        padding: 20px;
    }

    .privacy-intro p {
        font-size: 15px;
    }

    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .content-wrapper {
        padding: 30px 20px;
    }

    .privacy-section h2 {
        font-size: 18px;
    }

    .privacy-list > li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

/* プリント用スタイル */
@media print {
    .header,
    .footer,
    .page-top-btn {
        display: none;
    }

    .page-hero {
        padding: 40px 0 20px;
        background: none;
    }

    .content-wrapper {
        box-shadow: none;
        padding: 20px;
    }

    .privacy-section {
        page-break-inside: avoid;
    }

    body {
        font-size: 12pt;
        line-height: 1.6;
    }
}
