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

.privacy-policy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
}

.privacy-header {
    margin-bottom: 3rem;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    position: relative;
}

.privacy-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    margin: 1rem auto;
    border-radius: 2px;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

.privacy-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.7;
}

.privacy-intro {
    font-size: 1.05rem;
    color: #495057;
    padding: 1.5rem;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 4px solid #2196f3;
}

.privacy-section {
    margin-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1.5rem;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h2 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
    position: relative;
}

.privacy-section h2::before {
    content: counter(section);
    counter-increment: section;
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.privacy-content {
    counter-reset: section;
}

.privacy-section p {
    color: #495057;
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    color: #495057;
    margin-bottom: 0.5rem;
    position: relative;
}

.privacy-section li::before {
    content: '▶';
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: -1.2rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #495057;
}

.contact-info strong {
    color: #2c3e50;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.company-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0;
    }
    
    .privacy-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section h2::before {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 1.5rem 1rem;
    }
    
    .privacy-title {
        font-size: 1.8rem;
    }
    
    .privacy-intro {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* アニメーション効果 */
.privacy-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.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; }

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

/* 印刷用スタイル */
@media print {
    .privacy-policy-section {
        background: white;
        padding: 20px 0;
    }
    
    .privacy-content {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .privacy-section h2::before {
        background: #000;
    }
    
    .privacy-title::after {
        background: #000;
    }
}