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

/* プライバシーページコンテナ（1カラム） */
.privacy-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* メインコンテンツエリア */
.privacy-main-content {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

/* ページヘッダー */
.page-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 3px solid #f0f0f0;
}

.page-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

/* プライバシーポリシーコンテンツ */
.privacy-content {
    padding: 0;
}

/* 最終更新日 */
.last-updated {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

/* セクション */
.privacy-section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

.privacy-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.privacy-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* リスト */
.privacy-section ul,
.privacy-section ol {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

/* 定義リスト */
.privacy-section dl {
    margin: 20px 0;
}

.privacy-section dt {
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}

.privacy-section dd {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

/* お問い合わせ情報ボックス */
.contact-info {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 25px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-info strong {
    color: #333;
}

/* リンク */
.privacy-content a {
    color: var(--primary-color, #DC2626);
    text-decoration: none;
    transition: all 0.3s;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* 強調表示 */
.highlight-box {
    background-color: #FEF3C7;
    border-left: 4px solid #F59E0B;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.highlight-box p {
    margin: 0;
    color: #92400E;
}

/* テーブル */
.privacy-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.privacy-table th,
.privacy-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-table th {
    background-color: #f5f5f5;
    font-weight: bold;
    color: #333;
}

.privacy-table td {
    color: #555;
}

.privacy-table tr:last-child td {
    border-bottom: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .privacy-page-container {
        padding: 20px 15px;
    }

    .privacy-main-content {
        padding: 25px 20px;
        border-radius: 8px;
    }

    .page-header {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .page-title {
        font-size: 24px;
    }

    .privacy-section {
        padding: 15px;
        margin-bottom: 20px;
    }

    .privacy-section h2 {
        font-size: 16px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    .privacy-section h3 {
        font-size: 16px;
    }

    .contact-info {
        padding: 20px;
        margin-top: 30px;
    }

    .privacy-table {
        font-size: 14px;
    }

    .privacy-table th,
    .privacy-table td {
        padding: 10px;
    }
}