/* プライバシーポリシーページのスタイル */
.privacy-policy-section {
    padding: 80px 0 60px;
}

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

.privacy-policy-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.privacy-policy-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #444;
}

.privacy-policy-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.privacy-policy-content ul,
.privacy-policy-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.privacy-policy-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.privacy-policy-content a {
    color: #4dabf7;
    text-decoration: underline;
}

.privacy-policy-content a:hover {
    color: #3a8bd5;
}

.privacy-policy-content .no-content {
    text-align: center;
    padding: 50px 0;
    color: #888;
}

/* お問い合わせセクション */
.company-contact-section {
    padding: 60px 0 80px;
    background-color: #f9f9f9;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info .company-table {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}

.contact-info .company-table th,
.contact-info .company-table td {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.contact-info .company-table th {
    background-color: #f5f5f5;
    width: 30%;
    font-weight: 500;
}

.contact-link {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4dabf7;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3a8bd5;
}

/* レスポンシブスタイル */
@media (max-width: 768px) {
    .privacy-policy-section,
    .company-contact-section {
        padding: 50px 0;
    }
    
    .privacy-policy-content {
        padding: 20px;
    }
    
    .contact-info .company-table th {
        width: 35%;
    }
}

@media (max-width: 576px) {
    .privacy-policy-content h3 {
        font-size: 1.3rem;
    }
    
    .privacy-policy-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-info .company-table th,
    .contact-info .company-table td {
        padding: 8px 12px;
    }
    
    .contact-info .company-table th {
        width: 40%;
    }
}
