/* ─────────────────────────────────────────
   PAGE HEALTH MANAGEMENT — 健康経営の取り組み
   ───────────────────────────────────────── */

/* ── Title band (teal strip, same look as the QA/WSR page bands) ── */
.hm-title-band-wrap {
    max-width: 1200px;
    margin: 24px auto 0;
    padding: 0 2rem;
}
.hm-title-band {
    display: inline-block;
    background: #4DB1AF;
    color: #fff;
    font-size: 26px; font-weight: 700;
    line-height: 1;
    padding: 18px 48px 18px 28px;
    margin: 0;
}

/* ── Section: centered title with teal rules on both sides ── */
.hm-section { margin-bottom: 64px; }
.hm-section-title {
    display: flex; align-items: center; gap: 24px;
    font-size: 22px; font-weight: 700; color: #008F8D;
    text-align: center;
    margin: 0 0 28px;
}
.hm-section-title::before,
.hm-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #008F8D;
}

.hm-text { font-size: 15px; color: #333F50; line-height: 1.9; margin: 0 0 16px; }

/* ── Badge rows (image left + text right) ── */
.hm-badge-row {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 24px;
}
.hm-badge-img {
    flex: 0 0 230px;
    width: 230px;
    height: auto;
    object-fit: contain;
}
.hm-badge-img--wide {
    height: auto;
    max-height: 60px;
}
.hm-badge-text {
    flex: 1;
}

/* ── Declaration text style ── */
.hm-declaration-text {
    line-height: 2;
}

/* ── Organization Chart ── */
.hm-org-chart-wrap {
    display: flex;
    justify-content: center;
    margin: 32px 0;
}
.hm-org-chart-img {
    max-width: 630px;
    width: 100%;
    height: auto;
    display: block;
}
.hm-org-desc {
    margin-top: 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hm-title-band { font-size: 20px; padding: 14px 32px 14px 20px; }
    .hm-section-title { font-size: 18px; gap: 14px; }
    .hm-badge-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .hm-badge-img {
        flex: 0 0 auto;
    }
    .hm-org-chart-wrap {
        margin: 20px 0;
    }
}
