/*=================================================================
    プライバシーポリシー
=================================================================*/
.privacy-page {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}
.privacy-page__card {
    width: 100%;
    max-width: 760px;
    padding: 56px 56px 48px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    color: #333333;
    line-height: 1.9;
}

/* Header */
.privacy-page__header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 40px;
}
.privacy-page__title {
    font-size: 28px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}
.privacy-page__lead {
    font-size: 14px;
    color: #666666;
    text-align: left;
    line-height: 1.9;
}

/* Sections */
.privacy-page__sections {
    list-style: none;
    counter-reset: privacy-section;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.privacy-page__section {
    counter-increment: privacy-section;
}
.privacy-page__section-title {
    position: relative;
    padding-left: 44px;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    letter-spacing: 0.04em;
}
.privacy-page__section-title::before {
    content: counter(privacy-section, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #111111;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.privacy-page__section p {
    font-size: 14px;
    color: #444444;
    margin-bottom: 8px;
}
.privacy-page__section p:last-child {
    margin-bottom: 0;
}
.privacy-page__list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.privacy-page__list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #444444;
    line-height: 1.8;
}
.privacy-page__list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.75em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #999999;
}
.privacy-page__contact {
    display: inline-block;
    margin-top: 8px !important;
    padding: 8px 14px;
    background-color: #f7f7f7;
    border-radius: 6px;
    font-size: 14px;
    color: #333333;
}

/* Revision */
.privacy-page__revision {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #eeeeee;
    text-align: right;
    font-size: 13px;
    color: #888888;
}

/*=================================================================
    タブレット用
=================================================================*/
@media screen and (max-width: 1024px) {
    .privacy-page__card {
        padding: 48px 40px 40px;
    }
}

/*=================================================================
    スマホ用
=================================================================*/
@media screen and (max-width: 768px) {
    .privacy-page {
        padding: 24px 16px;
    }
    .privacy-page__card {
        padding: 36px 24px 32px;
        border-radius: 12px;
        line-height: 1.8;
    }
    .privacy-page__header {
        padding-bottom: 24px;
        margin-bottom: 28px;
    }
    .privacy-page__title {
        font-size: 22px;
        margin-bottom: 16px;
    }
    .privacy-page__lead {
        font-size: 13px;
    }
    .privacy-page__sections {
        gap: 24px;
    }
    .privacy-page__section-title {
        padding-left: 38px;
        font-size: 15px;
    }
    .privacy-page__section-title::before {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    .privacy-page__section p,
    .privacy-page__list li {
        font-size: 13px;
    }
    .privacy-page__revision {
        margin-top: 32px;
        padding-top: 20px;
        font-size: 12px;
    }
}
