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

/* ページヒーロー部分 */
.page-hero {
    background-color: #f8f9fa;
    padding: 120px 0 60px;
    margin-top: 80px;
}

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

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #007bff;
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.page-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
}

/* プライバシーポリシーコンテンツ */
.privacy-content {
    padding: 80px 0;
}

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

.privacy-header {
    margin-bottom: 50px;
    text-align: center;
}

.policy-date {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 30px;
}

.policy-intro p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.privacy-sections {
    margin-bottom: 60px;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.privacy-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007bff;
}

.privacy-section p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.privacy-section ul li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.privacy-section ul li::before {
    content: "•";
    color: #007bff;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sub-list {
    margin-top: 10px;
    padding-left: 20px;
}

.sub-list li {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-info {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

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

/* CTA セクション */
.privacy-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background-color: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
}

.btn-primary:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #667eea;
    transform: translateY(-2px);
}

/* ドロップダウンメニュー */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
}

/* モバイルメニューでbodyにmenu-openクラスが付いた時のスタイル */
body.menu-open {
    overflow: hidden;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-section {
        padding: 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}