/* ===== 全体レイアウト ===== */
.container {
    width: 100%;
    margin: 0;
    padding: 168px 180px 146px 180px;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

/* ===== タイトル ===== */
.page_title {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #222222;
    text-align: center;
}

.page_subtitle {
    font-size: 16px;
    font-weight: bold;
    font-family: "Ubuntu", sans-serif;
    color: #2B9B7D;
    margin-top: 18px;
    margin-bottom: 105px;
}

/* ===== セクション見出し ===== */
.policy_section h2 {
    font-size: 20px;
    margin-top: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #222222;
}

/* ===== 段落 ===== */
.policy_section p {
    margin-bottom: 40px;
    line-height: 1.9;
    color: #222222;
    font-weight: 500;
}

/* ===== 制定日などのフッター部分 ===== */
.policy_footer {
    margin-top: 60px;
    font-size: 16px;
    color: #222222;
    text-align: left;
    margin-bottom: 160px;
}

/* ===== レスポンシブデザイン ===== */
@media screen and (min-width: 960px) {}
/* タブレット（520px〜959px） */
@media screen and (min-width: 520px) and (max-width: 959px) {
    .container {
        padding: 120px 40px 100px 40px;
    }

    .page_title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .page_subtitle {
        font-size: 16px;
        margin-bottom: 70px;
    }

    .policy_section h2 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 8px;
    }

    .policy_section p {
        font-size: 16px;
        margin-bottom: 35px;
        line-height: 1.8;
    }

    .policy_footer {
        font-size: 14px;
        margin-top: 50px;
        margin-bottom: 100px;
    }
}


/* スマートフォン（〜519px） */
@media screen and (max-width: 519px) {
    .container {
        padding: 100px 30px 80px 30px;
    }

    .page_title {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .page_subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .policy_section h2 {
        font-size: 20px;
        margin-top: 24px;
        margin-bottom: 8px;
    }

    .policy_section p {
        font-size: 16px;
        margin-bottom: 40px;
        line-height: 1.7;
    }

    .policy_footer {
        font-size: 14px;
        margin-top: 40px;
        margin-bottom: 80px;
    }
}