/* プライバシーポリシーページ専用CSS */

/* ナビゲーションアクティブ状態 */
.nav-menu a.active {
    color: #666;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #333;
}

.mobile-nav-menu a.active {
    color: #666;
    font-weight: 600;
}

/* ページヘッダー */
.page-header {
    position: relative;
    height: 300px;
    background: url('../images/page-header.webp') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.page-header-content {
    position: relative;
    z-index: 2;
    color: #333;
    text-align: left;
    max-width: 1200px;
    width: 100%;
    padding: 0 60px;
}

.page-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    color: #333;
}

/* パンくずリスト */
.breadcrumb-section {
    background: #FAFAFA;
    padding: 20px 0;
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.breadcrumb {
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #666;
}

.breadcrumb .current {
    color: #333;
}

/* プライバシーポリシーセクション */
.privacy-section {
    background: white;
    padding: 80px 0;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.privacy-content {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    letter-spacing: 0.02em;
}

.privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    letter-spacing: 0.05em;
}

.privacy-content h2:first-child {
    margin-top: 0;
}

.privacy-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
    letter-spacing: 0.03em;
}

.privacy-content p {
    margin-bottom: 15px;
    font-weight: 400;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    font-weight: 400;
}

.privacy-content strong {
    font-weight: 600;
    color: #333;
}

/* お問い合わせ情報ボックス */
.contact-info {
    background: #f8f8f8;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #333;
}

.contact-info p {
    margin-bottom: 10px;
}

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

.contact-info strong {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .privacy-container {
        padding: 0 40px;
    }

    .page-header-content {
        padding: 0 40px;
    }

    .breadcrumb-container {
        padding: 0 40px;
    }

    .privacy-content h2 {
        font-size: 1.3rem;
    }

    .privacy-content h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 0;
    }

    .privacy-container {
        padding: 0 30px;
    }

    .page-header {
        height: 200px;
    }

    .page-header-content {
        padding: 0 30px;
    }

    .page-title {
        font-size: 2rem;
    }

    .breadcrumb-container {
        padding: 0 30px;
    }

    .breadcrumb {
        font-size: 12px;
    }

    .breadcrumb-separator {
        margin: 0 8px;
    }

    .privacy-content {
        font-size: 13px;
    }

    .privacy-content h2 {
        font-size: 1.2rem;
        margin: 30px 0 15px 0;
    }

    .privacy-content h3 {
        font-size: 1rem;
        margin: 25px 0 12px 0;
    }

    .contact-info {
        padding: 20px;
    }

    .contact-info strong {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .privacy-section {
        padding: 50px 0;
    }

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

    .page-header {
        height: 160px;
    }

    .page-header-content {
        padding: 0 20px;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .breadcrumb-container {
        padding: 0 20px;
    }

    .breadcrumb {
        font-size: 11px;
    }

    .privacy-content {
        font-size: 12px;
        line-height: 1.7;
    }

    .privacy-content h2 {
        font-size: 1.1rem;
        margin: 25px 0 12px 0;
        padding-bottom: 8px;
    }

    .privacy-content h3 {
        font-size: 0.95rem;
        margin: 20px 0 10px 0;
    }

    .privacy-content ul {
        padding-left: 15px;
    }

    .privacy-content li {
        margin-bottom: 6px;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info strong {
        font-size: 13px;
    }
}