/* ==========================================================================
   プライバシーポリシー・利用規約ページ専用スタイル
   ========================================================================== */

/* ==========================================================================
   ページヘッダー（共通スタイル）
   ========================================================================== */
.page-header {
    position: relative;
    padding: 100px 0 60px;
    color: white;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 61, 92, 0.85) 0%, rgba(46, 82, 102, 0.85) 100%);
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    z-index: 2;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-title {
    text-align: center;
}

.page-title .title-en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
    opacity: 0.8;
    font-weight: 400;
}

.page-title .title-ja {
    display: block;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.breadcrumb {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
}

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

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .separator {
    margin: 0 8px;
    opacity: 0.5;
}

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

.privacy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-intro,
.terms-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.privacy-section,
.terms-section-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.privacy-section:last-child,
.terms-section-item:last-child {
    border-bottom: none;
}

.privacy-section h2,
.terms-section-item h2 {
    font-size: 24px;
    color: #1a3d5c;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #1976d2;
}

.privacy-section p,
.terms-section-item p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.privacy-section ul,
.terms-section-item ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-section li,
.terms-section-item li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.contact-info-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
    border-left: 4px solid #1976d2;
}

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

.contact-info-box strong {
    color: #1a3d5c;
    font-size: 18px;
}

.contact-info-box a {
    color: #1976d2;
    text-decoration: none;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

.privacy-footer,
.terms-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
}

.last-updated {
    font-size: 14px;
    color: #999;
    font-style: italic;
}

/* ==========================================================================
   レスポンシブ対応
   ========================================================================== */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 50px;
    }
    
    .page-title .title-ja {
        font-size: 28px;
    }
    
    .page-title .title-en {
        font-size: 12px;
    }
    
    .privacy-policy-section,
    .terms-section {
        padding: 40px 0;
    }
    
    .privacy-content,
    .terms-content {
        padding: 0 15px;
    }
    
    .privacy-section h2,
    .terms-section-item h2 {
        font-size: 20px;
    }
    
    .privacy-section p,
    .terms-section-item p,
    .privacy-section li,
    .terms-section-item li {
        font-size: 14px;
    }
    
    .privacy-intro,
    .terms-intro {
        font-size: 15px;
        padding: 15px;
    }
    
    .contact-info-box {
        padding: 20px;
    }
}


