/* プライバシーポリシー専用スタイル */
.privacy-policy-section {
    padding: 100px 0;
    background-color: #fff;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 50px 50px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.policy-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.policy-date {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.policy-intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-item {
    margin-bottom: 40px;
}

.policy-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.policy-item p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #333;
}

.policy-item ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-item ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    position: relative;
    padding-left: 15px;
}

.policy-item ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: #000;
    border-radius: 50%;
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 80px 0;
    }
    
    .policy-content {
        padding: 20px;
    }
    
    .policy-header h2 {
        font-size: 1.8rem;
    }
    
    .policy-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-policy-section {
        padding: 60px 0;
    }
    
    .policy-content {
        padding: 15px;
    }
    
    .policy-header h2 {
        font-size: 1.5rem;
    }
    
    .policy-intro {
        font-size: 1rem;
    }
    
    .policy-item h3 {
        font-size: 1.1rem;
    }
}