/* ===== Policy Page Styles ===== */
.policy-page-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.policy-page-section h2 { /* 「指導方針」タイトル */
    text-align: center;
    font-size: 2.2em; /* index.htmlのセクションタイトルと合わせる */
    margin-bottom: 40px;
    color: #386641; /* ダークグリーン */
}

.policy-content {
    background-color: #FFFFFF;
    padding: 30px 35px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    margin-bottom: 40px; /* フッターとの間隔 */
}

.policy-content p {
    font-size: 1.0em; /* 基本的なフォントサイズ */
    line-height: 1.9; /* 行間を広めにとって読みやすく */
    margin-bottom: 1.5em; /* 段落間のマージン */
    color: #4A4A4A; /* style.cssの基本テキストカラー */
}

.policy-content p:last-child {
    margin-bottom: 0;
}

.policy-content strong {
    color: #386641; /* ダークグリーンで見出しと色を合わせるか、#6A994E も可 */
    font-weight: 700;
}

.policy-cta {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px dashed #D4E0D4; /* 薄い区切り線 */
    text-align: center;
}

.policy-cta p {
    font-size: 1.05em;
    color: #4A4A4A;
    margin-bottom: 20px;
}

.policy-cta .btn-primary {
    /* style.css の .btn-primary スタイルが適用されます */
    /* 必要であれば、ここで微調整することも可能です */
    /* 例: margin-top: 10px; */
}

/* ----- スマートフォン向け調整 (phone-style.css に追記するか、こちらで管理) ----- */
@media (max-width: 768px) {
    .policy-page-section {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .policy-page-section h2 {
        font-size: 1.7em; /* phone-style.css の他のh2に合わせる */
        margin-bottom: 25px;
    }

    .policy-content {
        padding: 20px 15px; /* スマホではパディングを少し小さく */
        margin-bottom: 30px;
    }

    .policy-content p {
        font-size: 0.95em; /* スマホでのフォントサイズ調整 */
        line-height: 1.8;
        margin-bottom: 1.2em;
    }

    .policy-cta {
        margin-top: 25px;
        padding-top: 20px;
    }

    .policy-cta p {
        font-size: 1em;
    }

    .policy-cta .btn-primary {
        width: 90%; /* ボタン幅を広げる */
        max-width: 300px; /* 最大幅 */
        font-size: 0.95em;
        padding: 12px 15px;
    }
}