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

/* プライバシーポリシーセクション */
.privacy-policy-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-intro {
    background: var(--matcha-pale);
    border-left: 4px solid var(--primary-green);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

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

/* プライバシーセクション */
.privacy-section {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

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

.privacy-section h2 {
    font-size: 24px;
    color: var(--primary-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

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

/* プライバシーリスト */
.privacy-list {
    margin-top: 25px;
}

.privacy-list h3 {
    font-size: 18px;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.privacy-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list ul li {
    padding: 12px 0;
    padding-left: 35px;
    position: relative;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    border-bottom: 1px dashed var(--border-color);
}

.privacy-list ul li:last-child {
    border-bottom: none;
}

.privacy-list ul li i {
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-green);
    font-size: 16px;
}

/* コンタクトボックス */
.contact-box {
    background: var(--bg-off-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
}

.contact-box h3 {
    font-size: 20px;
    color: var(--primary-green);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-box h3 i {
    font-size: 22px;
}

.contact-box > p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-details {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.contact-details p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.contact-details p strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
}

.contact-details p i {
    color: var(--primary-green);
    margin-right: 8px;
    width: 18px;
}

/* プライバシーフッター */
.privacy-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--primary-green);
    text-align: center;
}

.privacy-footer p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 8px 0;
}

.privacy-footer .company-info-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.privacy-footer .company-info-footer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 60px 0;
    }

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

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

    .privacy-section h2 {
        font-size: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-number {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .privacy-list ul li {
        padding-left: 30px;
        font-size: 14px;
    }

    .contact-box {
        padding: 20px;
    }

    .contact-box h3 {
        font-size: 18px;
    }

    .privacy-footer {
        margin-top: 40px;
        padding-top: 30px;
    }
}