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

/* ヒーローセクション */
.p-privacy-hero {
    position: relative;
    height: 800px;
    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.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 100px;
}

.p-privacy-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 40px;
}

.p-privacy-hero__title {
    font-size: 3.7rem;
    font-weight: normal;
    margin-bottom: 30px;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.p-privacy-hero__divider {
    width: 80px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 30px auto;
    opacity: 0;
    transform: scaleX(0);
    animation: scaleIn 0.8s ease 0.6s forwards;
}

.p-privacy-hero__subtitle {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-family: "Crimson Text", serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease 0.3s forwards;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

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

.p-privacy__content {
    background: #fff;
    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: #2a5d1f;
    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: #333;
    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: #333;
    margin-bottom: 10px;
}

.p-privacy__contact {
    background: #f8f8f8;
    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: #333;
    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;
    }

    .p-privacy-hero {
        height: 400px;
        margin-bottom: 60px;
    }

    .p-privacy-hero__inner {
        padding: 0 20px;
    }

    .p-privacy-hero__title {
        font-size: 2.8rem;
    }

    .p-privacy-hero__divider {
        width: 60px;
        margin: 20px auto;
    }

    .p-privacy-hero__subtitle {
        font-size: 1.2rem;
    }

    .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;
    }
} 