@charset "UTF-8";

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

.privacy-section {
    padding: 80px 0;
    background-color: var(--white);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

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

.privacy-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.privacy-content p {
    margin-bottom: 20px;
}

.privacy-content ol {
    list-style-type: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content ol li {
    margin-bottom: 10px;
}

.privacy-content ol ol {
    list-style-type: lower-alpha;
    margin-top: 10px;
    margin-left: 20px;
}

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

    .privacy-heading {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .privacy-content ol {
        margin-left: 15px;
    }

    .privacy-content ol ol {
        margin-left: 15px;
    }
}