@charset "UTF-8";
/* プライバシーポリシーページ用CSS */
.privacy-content {
    background: #ffffff;
    padding: 4rem 0;
    min-height: 100vh;
}

.privacy-content .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-intro {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.privacy-intro p {
    color: #333;

    line-height: 1.7;
    margin: 0;
}

.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.privacy-section {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.privacy-section:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.privacy-section h2 {
    background: linear-gradient(135deg, #0048A8, #0066CC);
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
    font-weight: bold;
}

.section-content {
    padding: 2rem;
}

.section-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* リスト項目のスタイル */
.purpose-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.purpose-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 2rem;
    color: #444;
    line-height: 1.6;
}

.purpose-list li::before {
    content: "•";
    color: #0048A8;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    font-size: 1.2rem;
}

/* 連絡先情報 */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-item {
    margin-bottom: 0.8rem;
    color: #333;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item strong {
    color: #0048A8;
    font-weight: bold;
    display: inline-block;
    min-width: 120px;
}

.contact-item a {
    color: #0048A8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0066CC;
    text-decoration: underline;
}

/* 制定日・更新日 */
.policy-date {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #e9ecef;
    border-radius: 8px;
    text-align: center;
}

.policy-date p {
    color: #666;
    margin: 0.5rem 0;
    font-weight: 500;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .privacy-content {
        padding: 2rem 0;
    }
    
    .privacy-content .container {
        padding: 0 1rem;
    }
    
    .privacy-intro {
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        padding: 1rem 1.5rem;
        font-size: 1.2rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .contact-item strong {
        display: block;
        margin-bottom: 0.2rem;
        min-width: auto;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .privacy-intro {
        padding: 1rem;
    }
    
    .privacy-section h2 {
        padding: 0.8rem 1rem;
        font-size: 1.1rem;
    }
    
    .section-content {
        padding: 1rem;
    }
    
    .section-content p {
        font-size: 0.95rem;
    }
}
