/* ========================================
   プライバシーポリシーページ
   ======================================== */

.pv-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ヒーロー（画像未設定時はグラデーション代替）
   ======================================== */
.pv-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.pv-hero-bg {
    width: 100%;
    height: 100%;
    background: url('/static/landing/images/privacy.jpg') center/cover no-repeat;
}

.pv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
}

.pv-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pv-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    letter-spacing: 0.15em;
}

/* ========================================
   コンテンツ
   ======================================== */
.pv-content {
    padding: 60px 0 80px;
}

.pv-intro {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

/* セクション */
.pv-section {
    margin-bottom: 36px;
}

.pv-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pv-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #00BCD4;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.pv-section-text {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 8px;
}

/* リスト */
.pv-list {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.pv-list li {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    padding-left: 20px;
    position: relative;
}

.pv-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #00BCD4;
    border-radius: 50%;
}

/* お問い合わせ窓口 */
.pv-contact-box {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 24px;
    margin-top: 12px;
}

.pv-contact-company {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.pv-contact-info {
    font-size: 15px;
    color: #555;
    line-height: 2;
}

.pv-contact-info i {
    color: #00BCD4;
    width: 20px;
    margin-right: 8px;
}

/* 制定日 */
.pv-date {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

.pv-date p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 768px) {
    .pv-hero {
        height: 200px;
    }

    .pv-hero-title {
        font-size: 32px;
    }

    .pv-content {
        padding: 40px 0 60px;
    }

    .pv-section-title {
        font-size: 16px;
    }

    .pv-contact-box {
        padding: 16px;
    }
}
