/* ==========================================================================
   プライバシーポリシーページ（/privacy-policy/）
   ========================================================================== */

/* ---- HERO ---- */
.pp-hero {
    opacity: 1 !important;
    transform: none !important;
}

.pp-hero__bg {
    position: relative;
    width: 100%;
    height: 316px;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pp-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45);
}

.pp-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.pp-hero__title {
    font-family: "Noto Serif JP", serif;
    font-size: 50px;
    font-weight: 700;
    color: rgb(81, 81, 81);
    margin: 0;
    line-height: 1.2;
}

/* ---- 本文エリア ---- */
.pp-body {
    opacity: 1 !important;
    transform: none !important;
    background: #fff;
    padding: 80px 20px;
}

.pp-body__inner {
    max-width: 1120px;
    margin: 0 auto;
}

/* ---- リード文 ---- */
.pp-lead {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.9;
    margin: 0 0 56px;
}

/* ---- 各セクション ---- */
.pp-section {
    margin-bottom: 48px;
}

.pp-section:last-child {
    margin-bottom: 0;
}

.pp-section__title {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.pp-section__body {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.9;
    margin: 16px 0 0;
}

.pp-section__list {
    margin: 12px 0 0 0;
    padding: 0 0 0 1.5em;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pp-section__list li {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.9;
}

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 767px) {
    .pp-hero__bg {
        height: 220px;
    }

    .pp-hero__title {
        font-size: 30px;
    }

    .pp-body {
        padding: 48px 20px;
    }

    .pp-lead {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .pp-section {
        margin-bottom: 36px;
    }

    .pp-section__title {
        font-size: 16px;
    }

    .pp-section__body {
        font-size: 15px;
    }

    .pp-section__list li {
        font-size: 15px;
    }
}
