:root {
	--hm-main: #059669;
	--hm-main-dark: #047857;
	--hm-main-deep: #064e3b;
	--hm-sub: #ecfdf5;
	--hm-sub-strong: #d1fae5;
	--hm-accent: #7c3aed;
	--hm-accent-dark: #6d28d9;
	--hm-text: #064e3b;
	--hm-body: #1f2937;
	--hm-muted: #64748b;
	--hm-border: #a7f3d0;
	--hm-border-soft: #d8e7e1;
	--hm-white: #fff;
	--hm-bg: #f8faf9;
	--hm-warning: #b45309;
	--hm-shadow: 0 12px 32px rgb(6 78 59 / 8%);
	--hm-radius: 6px;
	--hm-radius-lg: 12px;
	--hm-font-heading: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
	--hm-font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
	--hm-font-number: "Roboto", "Arial", sans-serif;
	--hm-space-1: .25rem;
	--hm-space-2: .5rem;
	--hm-space-3: .75rem;
	--hm-space-4: 1rem;
	--hm-space-5: 1.5rem;
	--hm-space-6: 2rem;
	--hm-space-7: 3rem;
	--hm-space-8: 4.5rem;
	--color-main: var(--hm-main);
	--color-sub: var(--hm-sub);
	--color-accent: var(--hm-accent);
	--color-text: var(--hm-text);
	--color-border: var(--hm-border);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--hm-white); color: var(--hm-body); font-family: var(--hm-font-body); font-size: 1rem; line-height: 1.8; }
body.hm-nav-open { overflow: hidden; }
img { display: block; height: auto; max-width: 100%; }
a { color: var(--hm-main-dark); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--hm-accent); }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #c084fc; outline-offset: 3px; }
h1, h2, h3, h4 { color: var(--hm-text); font-family: var(--hm-font-heading); font-weight: 700; line-height: 1.35; }
h1 { font-size: clamp(2rem, 6vw, 3.5rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.25rem); }
p { margin: 0 0 1.25rem; }
.hm-container { margin-inline: auto; max-width: 1180px; padding-inline: 20px; width: 100%; }
.hm-container--narrow { max-width: 900px; }
.hm-main { padding-block: var(--hm-space-5) var(--hm-space-8); }
.hm-visually-hidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px; }
.hm-skip-link { background: var(--hm-text); color: #fff; left: 12px; padding: 10px 16px; position: fixed; top: -100px; z-index: 9999; }
.hm-skip-link:focus { top: 12px; }

.hm-header { background: rgb(255 255 255 / 96%); border-bottom: 1px solid var(--hm-border-soft); position: sticky; top: 0; z-index: 100; }
.hm-header__inner { min-height: 70px; }
.hm-header__site-name, .hm-footer__brand { align-items: center; color: var(--hm-text); display: inline-flex; font-family: var(--hm-font-heading); font-size: 1.25rem; font-weight: 700; gap: 10px; text-decoration: none; }
.hm-header__mark { align-items: center; background: var(--hm-main); border-radius: 50%; color: #fff; display: inline-flex; height: 34px; justify-content: center; width: 34px; }
.custom-logo-link img { max-height: 48px; width: auto; }
.hm-nav-toggle { align-items: center; background: transparent; border: 0; color: var(--hm-text); cursor: pointer; display: flex; gap: 10px; padding: 8px; }
.hm-nav-toggle__label { font-size: .8rem; font-weight: 700; }
.hm-nav-toggle__bars { display: grid; gap: 4px; width: 24px; }
.hm-nav-toggle__bars span { background: currentColor; display: block; height: 2px; transition: .2s; }
.hm-nav { background: #fff; box-shadow: var(--hm-shadow); display: none; inset: 70px 0 auto; max-height: calc(100vh - 70px); overflow: auto; padding: 12px 20px 24px; position: fixed; }
.hm-nav.hm-nav--open { display: block; }
.hm-nav__list { list-style: none; margin: 0; padding: 0; }
.hm-nav__list a { border-bottom: 1px solid var(--hm-border-soft); color: var(--hm-text); display: block; font-weight: 700; padding: 14px 8px; text-decoration: none; }
.hm-nav__list .sub-menu { list-style: none; padding-left: 16px; }

.hm-button { align-items: center; border: 1px solid transparent; border-radius: var(--hm-radius); display: inline-flex; font-weight: 700; gap: 12px; justify-content: center; min-height: 50px; padding: 11px 22px; text-decoration: none; transition: transform .2s, background-color .2s, box-shadow .2s; }
.hm-button:hover { color: #fff; transform: translateY(-2px); }
.hm-button--accent { background: var(--hm-accent); box-shadow: 0 8px 20px rgb(124 58 237 / 22%); color: #fff; }
.hm-button--accent:hover { background: var(--hm-accent-dark); }
.hm-button--primary { background: var(--hm-main); color: #fff; }
.hm-button--primary:hover { background: var(--hm-main-dark); }

.hm-hero { background: linear-gradient(120deg, var(--hm-sub), #d1fae5); border-bottom: 1px solid var(--hm-border); overflow: hidden; }
.hm-hero__inner { display: grid; min-height: 620px; padding-block: 56px 36px; }
.hm-hero__content { position: relative; z-index: 1; }
.hm-hero__eyebrow, .hm-section-heading__eyebrow, .hm-cta__eyebrow { color: var(--hm-main-dark); display: block; font-size: .78rem; font-weight: 700; letter-spacing: .12em; margin-bottom: 12px; text-transform: uppercase; }
.hm-hero h1 { margin: 0 0 22px; max-width: 720px; }
.hm-hero__content > p { color: #28594b; font-size: 1.08rem; max-width: 650px; }
.hm-hero__actions { align-items: flex-start; display: flex; flex-direction: column; gap: 18px; margin: 30px 0 24px; }
.hm-hero__text-link { font-weight: 700; padding: 8px; }
.hm-hero__trust { display: flex; flex-wrap: wrap; font-size: .86rem; font-weight: 700; gap: 10px 22px; list-style: none; margin: 0; padding: 0; }
.hm-hero__trust li { color: var(--hm-main-deep); }
.hm-hero__visual { align-self: end; margin: 20px -50px -35px 0; }
.hm-hero__visual img { mix-blend-mode: multiply; width: 100%; }

.hm-section { padding-block: var(--hm-space-8); }
.hm-section--tint { background: var(--hm-bg); border-block: 1px solid #edf3f0; }
.hm-section-heading { align-items: end; display: flex; justify-content: space-between; margin-bottom: 28px; }
.hm-section-heading .hm-section-title { margin-bottom: 0; }
.hm-section-heading > a { font-size: .9rem; font-weight: 700; }
.hm-section-title { border-left: 5px solid var(--hm-main); margin: 0 0 30px; padding-left: 14px; }
.hm-grid { display: grid; gap: 22px; }
.hm-card { background: #fff; border: 1px solid var(--hm-border-soft); border-radius: var(--hm-radius); box-shadow: 0 6px 22px rgb(6 78 59 / 5%); min-width: 0; overflow: hidden; transition: border-color .2s, transform .2s, box-shadow .2s; }
.hm-card:hover { border-color: var(--hm-border); box-shadow: var(--hm-shadow); transform: translateY(-3px); }
.hm-card__image { aspect-ratio: 600 / 315; background: var(--hm-sub); display: block; overflow: hidden; }
.hm-card__image img { height: 100%; object-fit: cover; transition: transform .35s; width: 100%; }
.hm-card:hover .hm-card__image img { transform: scale(1.025); }
.hm-card__placeholder { align-items: center; background: linear-gradient(145deg, var(--hm-sub), var(--hm-sub-strong)); display: flex; height: 100%; justify-content: center; }
.hm-card__placeholder span { align-items: center; background: var(--hm-main); border-radius: 50%; color: #fff; display: flex; font-size: 2rem; height: 72px; justify-content: center; width: 72px; }
.hm-card__body { padding: 20px; }
.hm-card__category, .hm-article__categories a { background: var(--hm-sub); border-radius: 999px; color: var(--hm-main-dark); display: inline-block; font-size: .75rem; font-weight: 700; padding: 3px 10px; text-decoration: none; }
.hm-card__title { margin: 12px 0 10px; }
.hm-card__title a { color: var(--hm-text); text-decoration: none; }
.hm-card__excerpt { color: #52645e; display: -webkit-box; font-size: .9rem; line-height: 1.7; margin-bottom: 14px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.hm-card__meta { align-items: center; border-top: 1px solid #edf3f0; color: var(--hm-muted); display: flex; font-family: var(--hm-font-number); font-size: .78rem; justify-content: space-between; padding-top: 12px; }
.hm-category-grid { display: grid; gap: 12px; }
.hm-category-card { align-items: center; background: #fff; border: 1px solid var(--hm-border-soft); border-radius: var(--hm-radius); color: var(--hm-text); display: grid; gap: 14px; grid-template-columns: auto 1fr auto; padding: 18px; text-decoration: none; }
.hm-category-card:hover { border-color: var(--hm-main); box-shadow: var(--hm-shadow); }
.hm-category-card__icon { align-items: center; background: var(--hm-sub); border-radius: var(--hm-radius); color: var(--hm-main); display: flex; font-weight: 700; height: 44px; justify-content: center; width: 44px; }
.hm-category-card strong, .hm-category-card small { display: block; }
.hm-category-card small { color: var(--hm-muted); font-family: var(--hm-font-number); margin-top: 2px; }
.hm-about { background: var(--hm-main-deep); color: #d1fae5; }
.hm-about__inner { display: grid; gap: 26px; }
.hm-about h2, .hm-about .hm-section-heading__eyebrow { color: #fff; }
.hm-about__badge { align-items: center; border: 1px solid rgb(255 255 255 / 22%); border-radius: 50%; display: flex; height: 140px; justify-content: center; width: 140px; }
.hm-about__badge span { align-items: center; background: var(--hm-main); border-radius: 50%; color: #fff; display: flex; font-size: 2.4rem; height: 80px; justify-content: center; width: 80px; }

.hm-breadcrumb { margin: 8px 0 26px; overflow: hidden; }
.hm-breadcrumb__list { align-items: center; display: flex; font-size: .78rem; gap: 8px; list-style: none; margin: 0; overflow: hidden; padding: 0; white-space: nowrap; }
.hm-breadcrumb__item { align-items: center; display: flex; gap: 8px; min-width: 0; }
.hm-breadcrumb__item:last-child { overflow: hidden; text-overflow: ellipsis; }
.hm-breadcrumb__item a { color: var(--hm-muted); }
.hm-breadcrumb__separator { color: #94a3b8; }
.hm-page-header { background: var(--hm-sub); border: 1px solid var(--hm-border); border-radius: var(--hm-radius-lg); margin-bottom: 38px; padding: 30px 22px; }
.hm-page-header h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin: 0 0 12px; }
.hm-page-header > p, .hm-page-header__lead { color: #3f6257; margin: 0; max-width: 760px; }
.hm-content-layout { display: flex; flex-direction: column; gap: 44px; }
.hm-content-main { min-width: 0; order: 1; }
.hm-sidebar { min-width: 0; order: 2; }
.hm-post-list { margin-top: 24px; }
.hm-empty { background: var(--hm-bg); border: 1px dashed var(--hm-border); border-radius: var(--hm-radius); grid-column: 1 / -1; padding: 24px; }
.hm-search-form { display: flex; margin-bottom: 26px; max-width: 620px; }
.hm-search-form input { border: 1px solid #b7cec6; border-radius: var(--hm-radius) 0 0 var(--hm-radius); min-width: 0; padding: 11px 14px; width: 100%; }
.hm-search-form button { background: var(--hm-main); border: 0; border-radius: 0 var(--hm-radius) var(--hm-radius) 0; color: #fff; cursor: pointer; font-weight: 700; padding: 10px 18px; }
.hm-widget { background: #fff; border: 1px solid var(--hm-border-soft); border-radius: var(--hm-radius); margin-bottom: 22px; padding: 20px; }
.hm-widget__title { border-bottom: 2px solid var(--hm-main); font-size: 1rem; margin: 0 0 16px; padding-bottom: 10px; }
.hm-widget ul { list-style: none; margin: 0; padding: 0; }
.hm-widget li { border-bottom: 1px solid #edf3f0; padding: 10px 0; }
.hm-widget li:last-child { border: 0; }
.hm-widget li a { color: var(--hm-text); font-size: .88rem; font-weight: 700; text-decoration: none; }
.hm-widget__posts time { color: var(--hm-muted); display: block; font-family: var(--hm-font-number); font-size: .72rem; }
.hm-widget__categories li { align-items: center; display: flex; font-family: var(--hm-font-number); justify-content: space-between; }
.hm-cta { background: linear-gradient(135deg, #5b21b6, var(--hm-accent)); border-radius: var(--hm-radius-lg); color: #f5f3ff; overflow: hidden; padding: 34px 24px; position: relative; }
.hm-cta::after { border: 36px solid rgb(255 255 255 / 8%); border-radius: 50%; content: ""; height: 150px; position: absolute; right: -40px; top: -50px; width: 150px; }
.hm-cta__eyebrow { color: #ddd6fe; position: relative; z-index: 1; }
.hm-cta__title { color: #fff; font-size: clamp(1.3rem, 4vw, 1.8rem); margin: 0 0 12px; position: relative; z-index: 1; }
.hm-cta > p, .hm-cta .hm-button, .hm-cta > small { position: relative; z-index: 1; }
.hm-cta .hm-button { background: #fff; color: #5b21b6; margin-bottom: 12px; }
.hm-cta .hm-button:hover { color: #5b21b6; }
.hm-cta small { display: block; opacity: .8; }
.hm-cta--compact { padding: 24px 20px; }
.hm-cta--compact .hm-cta__title { font-size: 1.25rem; }
.hm-cta--compact .hm-button { text-align: center; width: 100%; }

.hm-article__header { margin-bottom: 28px; }
.hm-article__header h1 { font-size: clamp(1.8rem, 5vw, 3rem); margin: 18px 0; }
.hm-article__categories { display: flex; flex-wrap: wrap; gap: 8px; }
.hm-article__meta { color: var(--hm-muted); display: flex; flex-wrap: wrap; font-family: var(--hm-font-number); font-size: .78rem; gap: 8px 18px; }
.hm-article__featured, .hm-page__featured { border-radius: var(--hm-radius); margin: 0 0 34px; overflow: hidden; }
.hm-article__featured img { aspect-ratio: 1200 / 630; object-fit: cover; width: 100%; }
.hm-entry-content { color: #243d35; font-size: 1rem; line-height: 1.95; margin-bottom: 44px; }
.hm-entry-content > *:first-child { margin-top: 0; }
.hm-entry-content h2 { border-left: 5px solid var(--hm-main); margin: 3.5rem 0 1.5rem; padding: 8px 0 8px 16px; scroll-margin-top: 90px; }
.hm-entry-content h3 { border-bottom: 2px solid var(--hm-border); margin: 2.5rem 0 1.2rem; padding-bottom: 8px; scroll-margin-top: 90px; }
.hm-entry-content a { word-break: break-word; }
.hm-entry-content img { border-radius: var(--hm-radius); }
.hm-entry-content blockquote { background: var(--hm-bg); border-left: 4px solid var(--hm-main); margin: 2rem 0; padding: 18px 22px; }
.hm-static-page__section { margin-bottom: 3rem; }
.hm-static-page__section > h2 { border-left: 5px solid var(--hm-main); margin: 2.75rem 0 1.25rem; padding: 8px 0 8px 16px; }
.hm-static-page__details { border: 1px solid var(--hm-border-soft); border-radius: var(--hm-radius); margin: 1.5rem 0 2rem; overflow: hidden; }
.hm-static-page__detail { border-bottom: 1px solid var(--hm-border-soft); display: grid; grid-template-columns: minmax(105px, 30%) 1fr; }
.hm-static-page__detail:last-child { border-bottom: 0; }
.hm-static-page__detail dt { background: var(--hm-sub); color: var(--hm-text); font-weight: 700; padding: 12px 14px; }
.hm-static-page__detail dd { margin: 0; padding: 12px 14px; }
.hm-static-page__list { padding-left: 1.4rem; }
.hm-static-page__list li { margin-bottom: .65rem; }
.hm-static-page__revision, .hm-static-page__note { background: var(--hm-bg); border: 1px solid var(--hm-border-soft); border-radius: var(--hm-radius); color: #52645e; font-size: .88rem; padding: 16px 18px; }
.hm-static-page .hm-caution { background: #fffbeb; border: 1px solid #fcd34d; border-left: 5px solid var(--hm-warning); border-radius: var(--hm-radius); margin: 1.5rem 0; padding: 18px; }
.hm-static-page .hm-caution__label { color: #92400e; display: block; font-size: .78rem; font-weight: 700; margin-bottom: .45rem; }
.hm-static-page .hm-caution > :last-child { margin-bottom: 0; }
.hm-static-page .wpcf7 { margin-block: 1.5rem; }
.hm-static-page .wpcf7 label { color: var(--hm-text); display: block; font-weight: 700; margin-bottom: 1.25rem; }
.hm-static-page .wpcf7 input[type="text"], .hm-static-page .wpcf7 input[type="email"], .hm-static-page .wpcf7 input[type="tel"], .hm-static-page .wpcf7 textarea { background: #fff; border: 1px solid #b7cec6; border-radius: var(--hm-radius); display: block; margin-top: .4rem; padding: 11px 12px; width: 100%; }
.hm-static-page .wpcf7 textarea { min-height: 180px; resize: vertical; }
.hm-static-page .wpcf7 input[type="submit"] { background: var(--hm-accent); border: 0; border-radius: var(--hm-radius); color: #fff; cursor: pointer; font-weight: 700; min-height: 50px; padding: 11px 28px; }
.hm-static-page .wpcf7 input[type="submit"]:hover { background: var(--hm-accent-dark); }
.hm-people, .hm-related { margin-top: 56px; }
.hm-people__grid { display: grid; gap: 18px; }
.hm-person { background: var(--hm-bg); border: 1px solid var(--hm-border-soft); border-radius: var(--hm-radius); display: grid; gap: 18px; grid-template-columns: 72px 1fr; padding: 20px; }
.hm-person__photo img, .hm-person__photo > span { align-items: center; background: var(--hm-sub); border-radius: 50%; display: flex; height: 72px; justify-content: center; object-fit: cover; width: 72px; }
.hm-person__role { color: var(--hm-main-dark); font-size: .72rem; font-weight: 700; }
.hm-person h3 { font-size: 1.05rem; margin: 2px 0; }
.hm-person p { font-size: .84rem; margin: 6px 0 0; }
.hm-person__title { color: var(--hm-muted); }
.navigation.pagination { margin-top: 36px; }
.nav-links, .page-numbers { align-items: center; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.nav-links .page-numbers, .page-numbers li > * { align-items: center; border: 1px solid var(--hm-border-soft); border-radius: var(--hm-radius); display: flex; height: 42px; justify-content: center; min-width: 42px; padding: 4px 10px; text-decoration: none; }
.nav-links .current, .page-numbers li > .current { background: var(--hm-main); color: #fff; }
.hm-error-page__content { padding: 70px 0; text-align: center; }
.hm-error-page__code { color: var(--hm-main); font-family: var(--hm-font-number); font-size: clamp(4rem, 18vw, 9rem); font-weight: 700; line-height: 1; opacity: .18; }
.hm-error-page .hm-search-form { margin-inline: auto; }

.hm-footer { background: #063c31; color: #b9d7ce; padding-top: 54px; }
.hm-footer__logo { display: flex; justify-content: center; margin-bottom: 32px; text-align: center; }
.hm-footer__logo a { display: inline-flex; }
.hm-footer__logo img { height: 40px; max-width: min(280px, 80vw); object-fit: contain; width: auto; }
.hm-footer__grid { display: grid; gap: 30px; padding-bottom: 40px; }
.hm-footer__brand { color: #fff; margin-bottom: 14px; }
.hm-footer p { font-size: .86rem; max-width: 480px; }
.hm-footer__operator { color: #fff; }
.hm-footer__nav { display: grid; gap: 8px; list-style: none; margin: 0; padding: 0; }
.hm-footer__nav a, .hm-footer__social a { color: #d1fae5; font-size: .86rem; }
.hm-footer__social { display: flex; gap: 16px; }
.hm-footer__bottom { border-top: 1px solid rgb(255 255 255 / 12%); padding: 18px 0; }
.hm-footer small { font-family: var(--hm-font-number); }

@media (min-width: 640px) {
	.hm-container { padding-inline: 28px; }
	.hm-grid--2, .hm-grid--3, .hm-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hm-hero__actions { align-items: center; flex-direction: row; }
	.hm-about__inner { align-items: center; grid-template-columns: 160px 1fr; }
	.hm-footer__grid { grid-template-columns: 2fr 1fr; }
}

@media (min-width: 768px) {
	.hm-main { padding-block: var(--hm-space-6) var(--hm-space-8); }
	.hm-hero__inner { align-items: center; grid-template-columns: minmax(0, 1.05fr) minmax(350px, .95fr); padding-block: 60px; }
	.hm-hero__visual { margin: 0 -80px 0 -30px; }
	.hm-hero__content > p { font-size: 1.15rem; }
	.hm-section { padding-block: 80px; }
	.hm-page-header { padding: 40px; }
	.hm-cta { padding: 44px; }
	.hm-people__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
	.hm-nav-toggle { display: none; }
	.hm-nav { background: transparent; box-shadow: none; display: block; inset: auto; max-height: none; overflow: visible; padding: 0; position: static; }
	.hm-nav__list { align-items: center; display: flex; gap: 26px; }
	.hm-nav__list a { border: 0; font-size: .88rem; padding: 10px 0; }
	.hm-nav__list .menu-item-has-children { position: relative; }
	.hm-nav__list .sub-menu { background: #fff; box-shadow: var(--hm-shadow); display: none; left: -18px; min-width: 220px; padding: 10px 18px; position: absolute; top: 100%; }
	.hm-nav__list li:hover > .sub-menu, .hm-nav__list li:focus-within > .sub-menu { display: block; }
	.hm-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.hm-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.hm-content-layout { align-items: flex-start; flex-direction: row; gap: 48px; }
	.hm-content-main { flex: 1 1 auto; order: 1; }
	.hm-sidebar { flex: 0 0 300px; order: 2; position: sticky; top: 96px; }
	.hm-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1280px) {
	.hm-container { padding-inline: 0; }
	.hm-content-layout { gap: 64px; }
	.hm-sidebar { flex-basis: 320px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
