/* privacy.css - 個人情報保護方針ページ専用スタイル */

/* プライバシーコンテンツ */
.privacy-content {
    padding: 70px 0;
    background: white;
}

.privacy-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.privacy-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #424242;
    margin-bottom: 20px;
}

.privacy-date {
    font-size: 0.95rem;
    color: #616161;
    margin-top: 30px;
}

/* プライバシーセクション */
.privacy-section {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #FAFAFA;
    border-radius: 8px;
}

.privacy-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #212121;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #1976D2;
}

.privacy-text {
    color: #424242;
    line-height: 1.8;
}

.privacy-text p {
    margin-bottom: 15px;
}

.privacy-text p:last-child {
    margin-bottom: 0;
}

.privacy-text ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-text li {
    margin-bottom: 10px;
    position: relative;
}

.privacy-text li::marker {
    color: #1976D2;
}

/* 連絡先情報 */
.contact-info {
    margin-top: 20px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E0E0E0;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}

.contact-info strong {
    color: #212121;
    font-size: 1.1rem;
}

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

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

/* アクセシビリティ向上のための見出しレベル調整 */
.privacy-section:first-of-type .privacy-heading {
    margin-top: 0;
}

/* プリント用スタイル */
@media print {
    .privacy-section {
        page-break-inside: avoid;
        background: white;
        border: 1px solid #E0E0E0;
    }
    
    .privacy-heading {
        border-bottom-color: #333;
    }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .privacy-heading {
        font-size: 1.75rem;
    }
    
    .privacy-text {
        font-size: 0.95rem;
    }
    
    .privacy-text ul {
        padding-left: 20px;
    }
    
    .contact-info {
        padding: 20px;
    }
}

/* ダークモード対応の準備 */
@media (prefers-color-scheme: dark) {
    /* 将来的なダークモード対応のためのプレースホルダー */
}

/* アニメーション */
.privacy-section {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 各セクションの遅延アニメーション */
.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }
.privacy-section:nth-child(7) { animation-delay: 0.7s; }
.privacy-section:nth-child(8) { animation-delay: 0.8s; }
.privacy-section:nth-child(9) { animation-delay: 0.9s; }
.privacy-section:nth-child(10) { animation-delay: 1.0s; }