/* ======================================= */
/* ファイル名: main-content-privacy.css */
/* プライバシーポリシー専用スタイル（最適化版） */
/* ======================================= */

#main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 15px;
    font-family: "Yu Mincho", "游明朝体", "Hiragino Mincho Pro W6", "ヒラギノ明朝 Pro W6", "MS PMincho", serif;
    color: #333;
    line-height: 1.7;
    background-color: #fff;
}

/* 基本方針の見出し */
.sub-ttl {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    padding: 15px 0;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 3px solid #007bff;
}

/* 基本方針ボックス */
.privacy-intro {
    background-color: #f5f8fa;
    border-left: 6px solid #007bff;
    padding: 20px 25px;
    margin-bottom: 30px;
    font-size: 1rem;
    color: #444;
    border-radius: 6px;
    line-height: 1.8;
}

.privacy-intro .privacy-message {
    margin: 0;
    padding: 0;
}

.privacy-sign {
    text-align: right;
    font-weight: 600;
    margin-top: 1.5em;
    color: #333;
}

/* 各セクションの見出し */
.privacy-section > h3,
.privacy-section > h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0056b3;
    border-left: 5px solid #ffcc00;
    padding-left: 12px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-section p {
    margin-bottom: 1.2em;
}

/* リスト設定 */
.privacy-section ul,
.privacy-section ol {
    margin-bottom: 1.5em;
    padding-left: 25px;
}

.privacy-section ul { list-style-type: disc; }
.privacy-section ol { list-style-type: decimal; }

.privacy-section ul li::marker,
.privacy-section ol li::marker {
    color: #007bff;
    font-weight: 700;
}

/* このクラスがついた項目だけに下の余白を作る */
.li-spacing {
    margin-bottom: 1em !important; 
}

/* PDFダウンロード */
.pdf-download-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 15px;
}

.pdf-download-list li {
    margin-bottom: 12px;
}

.pdf-download-list li a {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #007bff;
    color: #007bff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.pdf-download-list li a:hover {
    background-color: #007bff;
    color: #fff;
}

.pdf-download-list li a::before {
    content: "PDF";
    font-size: 0.7rem;
    background-color: #dc3545;
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    margin-right: 15px;
    line-height: 1;
}

.download-note {
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: auto;
    opacity: 0.8;
}

/* スマホ調整 */
@media (max-width: 480px) {
    .sub-ttl { font-size: 1.8rem; }
    .privacy-section > h2 { font-size: 1.4rem; }
    .pdf-download-list li a { padding: 10px 15px; font-size: 0.9rem; }
}