/* =========================================
   privacy.php用のスタイル
   ========================================= */

/* メインコンテンツ */
.main-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* プライバシーポリシーセクション */
.privacy-section {
    background-color: #fff;
    border-radius: var(--radius-md);
    padding: 48px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 24px;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 12px;
}

.privacy-section h2:first-of-type {
    margin-top: 0;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.privacy-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.privacy-section ul, 
.privacy-section ol {
    margin-bottom: 20px;
    padding-left: 32px;
    line-height: 1.8;
    color: var(--text-dark);
}

.privacy-section li {
    margin-bottom: 12px;
}

.privacy-section ul li {
    list-style-type: disc;
}

.privacy-section ol li {
    list-style-type: decimal;
}

.privacy-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-section a:hover {
    color: var(--primary-orange);
    text-decoration: underline;
}

.privacy-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.privacy-contact-info {
    margin-top: 24px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-blue);
}

.privacy-contact-info p {
    margin-bottom: 12px;
    line-height: 1.8;
    color: var(--text-dark);
}

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

.privacy-date {
    text-align: right;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.privacy-date p {
    margin-bottom: 8px;
}

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

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .main-content {
        padding: 0 16px;
    }

    .privacy-section {
        padding: 32px 24px;
    }
    
    .privacy-section h2 {
        font-size: 1.5rem;
        margin-top: 40px;
    }
    
    .privacy-section h3 {
        font-size: 1.125rem;
    }

    .privacy-contact-info {
        padding: 20px;
    }

    .privacy-date {
        text-align: left;
    }
}

