/* プライバシーポリシーページのスタイル */
.p-privacy {
    padding-top: 80px;
    padding-bottom: 100px;
}

/* ヒーローセクション骨格は common.css の .c-page-hero が担う。ここは背景画像・固有差分のみ指定 */
.c-page-hero--privacy {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.6) 100%
    ),
    url('../../images/privacy-policy/privacy_policy_hero.webp') center/cover no-repeat;
    margin-bottom: 100px;
}

.c-page-hero--privacy .c-page-hero__title {
    font-size: 3.7rem;
}

/* コンテンツエリア */
.p-privacy__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.p-privacy__content {
    background: var(--color-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(42, 93, 31, 0.1);
}

.p-privacy__section {
    margin-bottom: 50px;
}

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

.p-privacy__heading {
    font-size: 2.4rem;
    font-weight: normal;
    color: var(--color-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(42, 93, 31, 0.2);
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
}

.p-privacy__text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 20px;
}

.p-privacy__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.p-privacy__list li {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 10px;
}

.p-privacy__contact {
    background: var(--color-bg-light);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid rgba(42, 93, 31, 0.1);
}

.p-privacy__contact p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 10px;
}

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

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .p-privacy {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .c-page-hero--privacy {
        margin-bottom: 60px;
    }

    .c-page-hero--privacy .c-page-hero__title {
        font-size: 2.8rem;
    }

    .p-privacy__content {
        padding: 30px 20px;
    }

    .p-privacy__heading {
        font-size: 2rem;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .p-privacy__text,
    .p-privacy__list li,
    .p-privacy__contact p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .p-privacy__section {
        margin-bottom: 40px;
    }

    .p-privacy__contact {
        padding: 20px;
    }
} 