/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-serif);
    line-height: 1.7;
    color: #333;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Container - Only apply to privacy page content sections, not header */
.privacy-hero .container,
.privacy-content .container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}


/* Privacy Hero Section */
.privacy-hero {
    padding: 160px 0 60px;
    background: linear-gradient(135deg,
        rgba(26, 43, 74, 0.95) 0%,
        rgba(44, 62, 80, 0.9) 50%,
        rgba(26, 43, 74, 0.95) 100%),
        url('../../images/bg2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at bottom left, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease both;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease 0.2s both;
}

/* Privacy Content Section */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    background: linear-gradient(135deg, #1a2b4a 0%, #2c3e50 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.last-updated i {
    font-size: 1.1rem;
}

.privacy-section {
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease;
}

.privacy-section h2 {
    font-size: 1.8rem;
    color: #1a2b4a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(135deg, #1a2b4a 0%, #2c3e50 100%);
}

.section-number {
    background: linear-gradient(135deg, #1a2b4a 0%, #2c3e50 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.privacy-section p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.privacy-section ul,
.privacy-section ol,
.privacy-wrapper .wp-block-list {
    padding-left: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.privacy-section ul,
.privacy-wrapper ul.wp-block-list {
    list-style: disc;
}

.privacy-section ol,
.privacy-wrapper ol.wp-block-list {
    list-style: decimal;
}

.privacy-section ul li,
.privacy-section ol li,
.privacy-wrapper .wp-block-list li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.privacy-section ul ul,
.privacy-section ol ul,
.privacy-wrapper .wp-block-list ul.wp-block-list {
    list-style: circle;
    margin-top: 10px;
    padding-left: 40px;
}

.privacy-section ol ol,
.privacy-wrapper ol.wp-block-list ol.wp-block-list,
.privacy-wrapper .wp-block-list .wp-block-list {
    list-style: lower-alpha;
    margin-top: 10px;
    padding-left: 40px !important;
}

.contact-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid;
    border-image: linear-gradient(135deg, #1a2b4a 0%, #2c3e50 100%) 1;
    padding: 30px;
    border-radius: 10px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-box h3 {
    color: #1a2b4a;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-box p {
    line-height: 2;
    color: #555;
    margin: 0;
}


/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
/* ハンバーガーメニュー表示切り替え - 1024px以下 */
@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-actions .btn {
        display: none;
    }
}

/* モバイルレイアウト調整 - 768px以下 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .privacy-wrapper {
        padding: 0 20px;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
        gap: 10px;
    }

    .section-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .contact-info-box {
        padding: 20px;
    }

    .contact-info-box h3 {
        font-size: 1.1rem;
    }
}