/* プライバシーポリシーページ専用スタイル */

/* ページヒーロー */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}

/* コンテンツ */
.privacy-content {
    padding: 80px 0;
    background: white;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-text p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.privacy-text h2 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 40px 0 20px 0;
    font-weight: 700;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.privacy-text ul {
    margin: 20px 0;
    padding-left: 20px;
}

.privacy-text li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.privacy-text a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.privacy-text a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.update-date {
    margin-top: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

/* フッターリンク */
.footer-links {
    margin-top: 10px;
    font-size: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .privacy-text {
        padding: 0 20px;
    }
    
    .privacy-text h2 {
        font-size: 18px;
    }
}