:root {
  --hjb-brand: #0f766e;
  --hjb-brand-dark: #095f58;
  --hjb-accent: #f9734d;
  --hjb-bg: #f4faf8;
  --hjb-line: #d9e5e2;
  --hjb-text: #172421;
  --hjb-muted: #61716d;
}

.hjb-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 16px 56px;
  color: var(--hjb-text);
}

.hjb-site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 18px;
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fff;
}

.hjb-site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: max-content;
  color: var(--hjb-text);
  text-decoration: none;
}

.hjb-site-nav__brand span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: var(--hjb-brand);
  font-weight: 900;
}

.hjb-site-nav__brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.hjb-site-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.hjb-site-nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid #cfe1dd;
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--hjb-brand);
  background: #f7fbfa;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.hjb-archive-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  margin: -24px -16px 18px;
  min-height: 56px;
  border-bottom: 1px solid var(--hjb-accent);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.98);
}

.hjb-archive-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--hjb-text);
  text-decoration: none;
}

.hjb-archive-header__brand span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  color: #fff;
  background: var(--hjb-brand);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.hjb-archive-header__brand strong {
  display: block;
  overflow: visible;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
  transform: scaleX(0.94);
  transform-origin: left center;
}

.hjb-archive-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 auto;
}

.hjb-archive-header__action,
.hjb-archive-header__register {
  appearance: none;
  display: inline-grid;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 0;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.hjb-archive-header__action {
  width: 34px;
  height: 38px;
  color: var(--hjb-brand-dark);
  background: transparent;
}

.hjb-archive-header__action svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hjb-archive-header__register {
  min-width: 76px;
  min-height: 36px;
  padding: 8px 10px;
  color: #fff;
  background: var(--hjb-accent);
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(249, 115, 77, 0.18);
}

.hjb-archive-header__register b,
.hjb-archive-header__action b {
  font-size: 13px;
}

.hjb-archive-header__action b {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hjb-site-menu[hidden] {
  display: none !important;
}

.hjb-site-menu {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 302px);
  background: rgba(23, 36, 33, 0.52);
}

body.admin-bar .hjb-site-menu,
body.customize-support .hjb-site-menu {
  top: 46px;
}

.hjb-site-menu__overlay {
  min-width: 0;
}

.hjb-site-menu__panel {
  overflow-y: auto;
  min-height: 100vh;
  color: var(--hjb-text);
  background: #fff;
  box-shadow: -18px 0 38px rgba(23, 36, 33, 0.18);
}

body.admin-bar .hjb-site-menu__panel,
body.customize-support .hjb-site-menu__panel {
  min-height: calc(100vh - 46px);
}

.hjb-site-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--hjb-line);
  padding: 14px 16px;
}

.hjb-site-menu__head strong {
  font-size: 18px;
  font-weight: 900;
}

.hjb-site-menu__close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hjb-line);
  border-radius: 999px;
  color: var(--hjb-muted);
  background: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.hjb-site-menu__register {
  display: grid;
  gap: 6px;
  padding: 18px 16px;
  background: linear-gradient(180deg, #fff7f3 0%, #fff 100%);
}

.hjb-site-menu__register a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border-radius: 6px;
  color: #fff;
  background: var(--hjb-accent);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
}

.hjb-site-menu__register b {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 42px;
  min-height: 27px;
  border-radius: 999px;
  color: var(--hjb-accent);
  background: #fff;
  font-size: 12px;
}

.hjb-site-menu__register p {
  margin: 0;
  color: var(--hjb-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.hjb-site-menu__links {
  display: grid;
  border-top: 1px solid var(--hjb-line);
}

.hjb-site-menu__links a,
.hjb-site-menu__links button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid var(--hjb-line);
  padding: 0 18px;
  color: var(--hjb-text);
  font-size: 16px;
  font-weight: 900;
  font-family: inherit;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
}

.hjb-site-menu__links span {
  color: var(--hjb-brand);
  font-size: 22px;
  line-height: 1;
}

.hjb-site-menu__note {
  margin: 18px 16px 0;
  border-radius: 8px;
  padding: 12px;
  color: var(--hjb-muted);
  background: #e7f5f2;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.7;
}

.hjb-site-menu-is-open {
  overflow: hidden;
}

.hjb-home > .hjb-archive-header {
  margin-top: -16px;
}

.hjb-archive-hero,
.hjb-search-shell,
.hjb-search,
.hjb-job-card,
.hjb-job-detail,
.hjb-empty,
.hjb-advisor,
.hjb-bottom-cta,
.hjb-area-links,
.hjb-link-panel {
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  background: #fff;
}

.hjb-archive-hero {
  margin-bottom: 18px;
  padding: 24px;
  background: linear-gradient(120deg, #e8f7f3, #fff8f2);
}

.hjb-eyebrow {
  margin: 0 0 6px;
  color: var(--hjb-brand);
  font-weight: 900;
}

.hjb-archive-hero h1,
.hjb-detail-header h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.25;
  letter-spacing: 0;
}

.hjb-home h2,
.hjb-page h2 {
  position: static !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  color: var(--hjb-text) !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0 !important;
}

.hjb-home h2::before,
.hjb-home h2::after,
.hjb-page h2::before,
.hjb-page h2::after {
  content: none !important;
  display: none !important;
}

.hjb-home-search > h2,
.hjb-prefecture-groups > h2,
.hjb-section-heading h2,
.hjb-advisor h2,
.hjb-bottom-cta h2,
.hjb-detail-section h2,
.hjb-area-links h2,
.hjb-empty h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px !important;
  color: var(--hjb-brand-dark) !important;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  line-height: 1.35;
}

.hjb-home-search > h2::before,
.hjb-prefecture-groups > h2::before,
.hjb-section-heading h2::before,
.hjb-advisor h2::before,
.hjb-bottom-cta h2::before,
.hjb-detail-section h2::before,
.hjb-area-links h2::before,
.hjb-empty h2::before {
  content: "" !important;
  display: inline-block !important;
  flex: 0 0 auto;
  width: 8px;
  height: 1.25em;
  border-radius: 999px;
  background: var(--hjb-accent);
}

.hjb-search-shell {
  margin: 0 0 22px;
  padding: 0;
  overflow: clip;
}

.hjb-search-shell summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 12px 18px;
  color: var(--hjb-brand);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.hjb-search-shell summary::-webkit-details-marker {
  display: none;
}

.hjb-search-shell summary::after {
  content: "⌄";
  color: var(--hjb-accent);
  font-size: 24px;
  line-height: 1;
}

.hjb-search-shell[open] summary::after {
  transform: rotate(180deg);
}

.hjb-search-shell summary b {
  color: var(--hjb-muted);
  font-size: 13px;
  font-weight: 800;
}

.hjb-search {
  margin: 0;
  border-width: 1px 0 0;
  border-radius: 0;
  padding: 18px;
}

.hjb-search__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hjb-search__head strong {
  font-size: 18px;
}

.hjb-search__head a {
  color: var(--hjb-brand);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.hjb-search__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.hjb-search label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.hjb-search input,
.hjb-search select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #cddbd8;
  border-radius: 6px;
  padding: 8px 10px;
  background: #fff;
  font: inherit;
}

.hjb-search-panel {
  margin: 0 0 22px;
}

.hjb-search-entry {
  display: grid;
  gap: 14px;
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.hjb-search-entry__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hjb-search-entry__head p {
  margin: 0 0 4px;
  color: var(--hjb-muted);
  font-size: 13px;
  font-weight: 900;
}

.hjb-search-entry__head strong {
  display: block;
  color: var(--hjb-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.hjb-search-entry__head > span {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--hjb-brand);
  background: #e8f5f2;
  font-size: 13px;
  font-weight: 900;
}

.hjb-search-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--hjb-brand);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--hjb-brand);
  background: #f7fbfa;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.hjb-search-entry__button b {
  color: var(--hjb-muted);
  font-size: 12px;
  line-height: 1.4;
}

.hjb-search-entry__summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hjb-search-entry__summary div {
  min-width: 0;
  border: 1px solid #dbe9e6;
  border-radius: 6px;
  padding: 10px;
  background: #fbfdfc;
}

.hjb-search-entry__summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--hjb-muted);
  font-size: 12px;
  font-weight: 900;
}

.hjb-search-entry__summary strong {
  display: block;
  overflow: hidden;
  color: var(--hjb-text);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hjb-search-entry__chips,
.hjb-search-modal__selected div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hjb-search-entry__chips span,
.hjb-search-modal__selected b {
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--hjb-brand);
  background: #e8f5f2;
  font-size: 12px;
  font-weight: 900;
}

.hjb-search-modal[hidden] {
  display: none;
}

.hjb-search-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 18px;
}

.hjb-search-modal:not([hidden]) {
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.hjb-search-modal__backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(23, 36, 33, 0.52);
}

.hjb-search-modal__dialog {
  position: relative;
  z-index: 2 !important;
  display: grid !important;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  overflow: hidden;
  width: min(760px, 100%);
  max-height: min(820px, calc(100vh - 36px));
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  background: #fff !important;
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: 0 24px 70px rgba(23, 36, 33, 0.24);
}

.hjb-search-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--hjb-line);
  padding: 18px 20px;
  background: #f7fbfa;
}

.hjb-search-modal__header p {
  margin: 0 0 3px;
  color: var(--hjb-brand);
  font-size: 13px;
  font-weight: 900;
}

.hjb-search-modal__header h2 {
  margin: 0 !important;
  font-size: 24px !important;
  line-height: 1.35;
}

.hjb-search-modal__header button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hjb-line);
  border-radius: 999px;
  color: var(--hjb-muted);
  background: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.hjb-search-modal__selected {
  display: grid;
  gap: 8px;
  border-bottom: 1px solid var(--hjb-line);
  padding: 14px 20px;
}

.hjb-search-modal__selected > span {
  color: var(--hjb-muted);
  font-size: 12px;
  font-weight: 900;
}

.hjb-search-modal__body {
  display: block !important;
  overflow: auto;
  padding: 18px 20px;
  background: var(--hjb-bg);
}

.hjb-search-modal__body label,
.hjb-search-choice {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
  font-weight: 900;
}

.hjb-search-modal__section {
  display: block !important;
  overflow: hidden;
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  background: #fff;
}

.hjb-search-modal__section + .hjb-search-modal__section {
  margin-top: 14px;
}

.hjb-search-modal__section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 12px;
}

.hjb-search-modal__section-head h3 {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.35;
  font-weight: 900;
}

.hjb-search-modal__section-head p {
  margin: 4px 0 0;
  color: var(--hjb-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.hjb-search-modal__section-body {
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}

.hjb-search-modal__field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.hjb-search-modal__body label span,
.hjb-search-choice legend {
  color: var(--hjb-text);
  font-weight: 900;
}

.hjb-search-choice legend small {
  color: var(--hjb-muted);
  font-size: 12px;
  font-weight: 800;
}

.hjb-search-modal__body input,
.hjb-search-modal__body select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cddbd8;
  border-radius: 6px;
  padding: 9px 11px;
  background: #fff;
  font: inherit;
}

.hjb-search-choice > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hjb-search-choice--employment > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hjb-search-choice button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid #cddbd8;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--hjb-brand-dark);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.hjb-search-choice button[aria-pressed="true"] {
  border-color: var(--hjb-brand);
  color: #fff;
  background: var(--hjb-brand);
}

.hjb-search-modal__footer {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--hjb-line);
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -14px 30px rgba(23, 36, 33, 0.08);
}

.hjb-search-modal__footer-actions {
  display: grid;
  grid-template-columns: 1fr;
}

.hjb-search-modal__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid #d3dedb;
  border-radius: 6px;
  padding: 7px 10px;
  color: var(--hjb-muted);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}

.hjb-search-modal__clear:hover {
  border-color: var(--hjb-brand);
  background: #f7fbfa;
}

.hjb-search-modal__footer .hjb-button {
  width: 100%;
  min-height: 48px;
  min-width: 0;
  box-shadow: 0 10px 22px rgba(15, 118, 110, 0.18);
}

.hjb-search-modal__footer .hjb-button:disabled {
  border-color: #c9d6d3;
  color: #6f7d79;
  background: #eef4f2;
  box-shadow: none;
  cursor: not-allowed;
}

.hjb-search-modal__footer .hjb-archive-hero-cta {
  margin-top: 0;
}

.hjb-modal-open {
  overflow: hidden;
}

.hjb-modal-open .p-fixBtnWrap,
.hjb-modal-open #pagetop,
.hjb-modal-open [data-onclick="pageTop"] {
  display: none !important;
}

.hjb-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  border: 1px solid var(--hjb-brand);
  border-radius: 6px;
  padding: 9px 13px;
  color: var(--hjb-brand);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.hjb-button--primary {
  color: #fff;
  background: var(--hjb-brand);
}

.hjb-button--primary:hover {
  background: var(--hjb-brand-dark);
}

.hjb-button--disabled {
  border-color: #b8c7c4;
  color: #6c7a77;
  background: #eef4f2;
}

.hjb-result-count {
  margin: 0 0 14px;
  font-weight: 900;
}

.hjb-sort-control {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 14px;
}

.hjb-sort-control label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--hjb-muted);
  font-size: 14px;
  font-weight: 900;
}

.hjb-sort-control select {
  min-width: 170px;
  min-height: 42px;
  border: 1px solid #cddbd8;
  border-radius: 6px;
  padding: 8px 34px 8px 11px;
  color: var(--hjb-text);
  background: #fff;
  font: inherit;
  font-weight: 900;
}

.hjb-active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.hjb-active-filters span {
  color: var(--hjb-muted);
  font-size: 13px;
  font-weight: 900;
}

.hjb-active-filters b {
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--hjb-brand);
  background: #fff;
  font-size: 13px;
}

.hjb-archive-hero-cta {
  margin-top: 12px;
}

.hjb-archive-hero-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  border: 1px solid #f35f36;
  border-radius: 6px;
  padding: 10px 12px;
  color: #fff;
  background: #f35f36;
  box-shadow: 0 8px 18px rgba(249, 115, 77, 0.2);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.hjb-archive-hero-cta__stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 42px;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 8px;
  color: #f35f36;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.hjb-archive-hero-cta__text {
  display: inline-block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hjb-archive-hero-cta p {
  margin: 8px 0 0;
  color: var(--hjb-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.hjb-job-list {
  display: grid;
  gap: 16px;
}

.hjb-job-card {
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  padding: 22px;
  border-color: #ffd9c7;
  box-shadow: 0 8px 24px rgba(23, 36, 33, 0.06);
}

.hjb-job-card__topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hjb-job-card__date {
  color: var(--hjb-muted);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.hjb-job-card__id {
  margin: 10px 0 -2px;
  color: var(--hjb-muted);
  font-size: 13px;
  font-weight: 800;
}

.hjb-job-card h2 {
  margin: 8px 0 14px !important;
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.38;
}

.hjb-job-card h2 a {
  color: inherit;
  text-decoration: none;
}

.hjb-job-card__lead {
  margin: -4px 0 14px;
  color: #40524e;
  font-weight: 700;
  line-height: 1.7;
}

.hjb-job-card__image {
  display: block;
  overflow: hidden;
  width: min(100%, 520px);
  margin: 0 0 14px;
  border-radius: 8px;
  background: var(--hjb-bg);
  aspect-ratio: 16 / 9;
}

.hjb-job-card__image img,
.hjb-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hjb-job-card__facts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.hjb-job-card__facts div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 10px;
}

.hjb-job-card__facts dt {
  color: var(--hjb-muted);
  font-weight: 900;
}

.hjb-job-card__facts dd {
  margin: 0;
}

.hjb-job-card__cta {
  align-self: end;
  width: 100%;
}

.hjb-job-card__side {
  display: grid;
  align-content: end;
  gap: 10px;
  border-left: 1px solid var(--hjb-line);
  padding-left: 18px;
}

.hjb-job-card__side p {
  margin: 0;
  color: var(--hjb-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.6;
}

.hjb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.hjb-tags span {
  border-radius: 999px;
  background: #e8f5f2;
  color: var(--hjb-brand);
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 900;
}

.hjb-tags--outline {
  margin-top: 0;
}

.hjb-tags--outline span {
  border: 1px solid var(--hjb-accent);
  color: #c84f2a;
  background: #fff;
}

.hjb-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hjb-pagination .page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--hjb-line);
  border-radius: 6px;
  text-decoration: none;
}

.hjb-pagination .current {
  color: #fff;
  background: var(--hjb-brand);
  border-color: var(--hjb-brand);
}

.hjb-job-detail {
  padding: 24px;
}

.hjb-breadcrumb {
  margin: 0 0 18px;
  color: var(--hjb-muted);
  font-size: 14px;
}

.hjb-breadcrumb--archive {
  margin-bottom: 12px;
}

.hjb-breadcrumb a {
  color: var(--hjb-brand);
}

.hjb-detail-header {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hjb-line);
}

.hjb-detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hjb-detail-apply-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 620px;
  min-height: 76px;
  border: 1px solid var(--hjb-accent);
  border-radius: 8px;
  padding: 14px 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--hjb-accent) 0%, #ea5d38 100%);
  box-shadow: 0 16px 28px rgba(249, 115, 77, 0.24);
  font-weight: 900;
  text-decoration: none;
}

.hjb-detail-apply-cta__main {
  min-width: 0;
  font-size: 22px;
  line-height: 1.25;
  white-space: nowrap;
}

.hjb-detail-apply-cta__stamp {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  min-width: 116px;
  min-height: 48px;
  border-radius: 14px;
  padding: 8px 12px;
  color: #ea5d38;
  background: #fff;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 6px 12px rgba(23, 36, 33, 0.08);
}

.hjb-detail-apply-cta__stamp b {
  display: block;
  font-size: 17px;
  line-height: 1.15;
}

.hjb-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}

.hjb-summary-item {
  min-height: 92px;
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  padding: 14px;
  background: #f8fcfb;
}

.hjb-summary-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--hjb-muted);
  font-size: 13px;
  font-weight: 900;
}

.hjb-summary-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.55;
}

.hjb-detail-image {
  overflow: hidden;
  margin: 22px 0;
  border-radius: 8px;
  background: var(--hjb-bg);
  aspect-ratio: 16 / 7;
}

.hjb-advisor,
.hjb-bottom-cta {
  margin: 22px 0;
  padding: 20px;
  background: #f8fcfb;
}

.hjb-recommend {
  border-color: #ffd5c5;
  background: #fff8f2;
}

.hjb-advisor h2,
.hjb-bottom-cta h2,
.hjb-detail-section h2,
.hjb-area-links h2,
.hjb-empty h2 {
  font-size: clamp(21px, 2vw, 28px);
}

.hjb-job-table {
  width: 100%;
  border-collapse: collapse;
}

.hjb-job-table th,
.hjb-job-table td {
  border-top: 1px solid var(--hjb-line);
  padding: 14px 12px;
  text-align: left;
  vertical-align: top;
}

.hjb-job-table th {
  width: 190px;
  background: var(--hjb-bg);
  color: #274743;
  font-weight: 900;
}

.hjb-faq-section {
  margin-top: 24px;
}

.hjb-faq-content {
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  padding: 16px;
  background: #f8fcfb;
  line-height: 1.8;
}

.hjb-empty {
  padding: 24px;
}

.hjb-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hjb-area-links {
  margin: 28px 0;
  padding: 20px;
}

.hjb-archive-links {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.hjb-link-panel {
  padding: 20px;
}

.hjb-link-panel h2 {
  margin: 0 0 12px;
  color: var(--hjb-text);
  font-size: clamp(20px, 2vw, 26px);
}

.hjb-link-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hjb-link-panel--compact ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hjb-link-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border: 1px solid #d6e5e2;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--hjb-brand);
  background: #f7fbfa;
  font-weight: 900;
  text-decoration: none;
}

.hjb-link-panel a::after {
  content: "›";
  color: var(--hjb-accent);
  font-size: 20px;
  line-height: 1;
}

.hjb-link-panel a:hover {
  border-color: var(--hjb-brand);
  background: #eef8f5;
}

.hjb-related {
  margin-top: 30px;
}

.hjb-area-links ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hjb-area-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  border: 1px solid #d6e5e2;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--hjb-brand);
  background: #f7fbfa;
  font-weight: 900;
  text-decoration: none;
}

.hjb-home {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 16px 56px;
  color: var(--hjb-text);
}

body:has(.hjb-home) .l-content,
body:has(.hjb-page) .l-content {
  display: block;
}

body:has(.hjb-page) #content,
body:has(.hjb-page) .l-content {
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}

body:has(.hjb-home) #header,
body:has(.hjb-page) #header,
body:has(.hjb-home) #breadcrumb,
body:has(.hjb-page) #breadcrumb,
body:has(.hjb-home) .l-header,
body:has(.hjb-page) .l-header,
body:has(.hjb-home) .p-breadcrumb,
body:has(.hjb-page) .p-breadcrumb,
body:has(.hjb-home) .p-spHead,
body:has(.hjb-page) .p-spHead {
  display: none;
}

body:has(.hjb-home) .l-mainContent,
body:has(.hjb-page) .l-mainContent {
  width: 100%;
  max-width: none;
}

body:has(.hjb-home) .l-sidebar,
body:has(.hjb-page) .l-sidebar,
body:has(.hjb-home) .p-postList,
body:has(.hjb-page) .p-postList,
body:has(.hjb-home) #main_visual,
body:has(.hjb-home) .p-mainVisual {
  display: none;
}

.hjb-home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: end;
  margin: 0 0 28px;
  padding: 40px 28px 30px;
  border-bottom: 4px solid var(--hjb-accent);
  background:
    linear-gradient(120deg, rgba(15, 118, 110, 0.88), rgba(15, 118, 110, 0.52)),
    url("/wp-content/plugins/hoiku-job-core/assets/img/home-hero-bg.png");
  background-color: #dff3ef;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hjb-home-hero .hjb-eyebrow {
  color: #dffcf6;
}

.hjb-home-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(36px, 6vw, 62px);
  line-height: 1.16;
  letter-spacing: 0;
}

.hjb-home-hero p {
  max-width: 720px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.8;
}

.hjb-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hjb-home-hero__panel {
  padding: 20px;
  border: 2px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hjb-text);
  text-align: center;
}

.hjb-home-hero__panel p,
.hjb-home-hero__panel span {
  margin: 0;
  color: var(--hjb-muted);
  font-size: 15px;
}

.hjb-home-hero__panel strong {
  display: inline-block;
  color: var(--hjb-accent);
  font-size: 46px;
  line-height: 1;
}

.hjb-home-support-card {
  position: relative;
  z-index: 2;
  margin: -18px auto 28px;
  max-width: 720px;
  border: 1px solid rgba(249, 115, 77, 0.22);
  border-radius: 8px;
  padding: 16px 14px 14px;
  color: var(--hjb-text);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 20px 38px rgba(23, 36, 33, 0.18);
}

.hjb-home-support-card__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fb7078;
  font-weight: 900;
  line-height: 1.25;
}

.hjb-home-support-card__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  border-radius: 7px;
  padding: 7px 9px;
  color: #fff;
  background: #fb7078;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.hjb-home-support-card__head strong {
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.hjb-home-support-card__head small {
  font-size: 13px;
}

.hjb-home-support-card__question {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 12px;
  color: #2f3534;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.hjb-home-support-card__question::before,
.hjb-home-support-card__question::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.hjb-home-support-card__question::before {
  transform: rotate(46deg);
}

.hjb-home-support-card__question::after {
  transform: rotate(-46deg);
}

.hjb-home-support-card__choices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.hjb-home-support-card__choices a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 6px;
  padding: 10px 8px;
  color: #fff;
  background: linear-gradient(180deg, var(--hjb-accent), #ea5d38);
  box-shadow: 0 9px 16px rgba(249, 115, 77, 0.24);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
}

.hjb-home-support-card__search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  border: 1px solid #cfe1dd;
  border-radius: 6px;
  padding: 9px 12px;
  color: var(--hjb-brand);
  background: #fff;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.hjb-home-support-card__note {
  margin: 8px 0 0;
  color: var(--hjb-muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.hjb-home-search,
.hjb-prefecture-groups,
.hjb-home-latest {
  margin: 28px 0;
}

.hjb-home-search > h2,
.hjb-prefecture-groups > h2 {
  font-size: clamp(23px, 2.4vw, 32px);
}

.hjb-prefecture-groups {
  padding: 22px;
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  background: #fff;
}

.hjb-prefecture-groups__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hjb-prefecture-group {
  padding: 16px;
  border: 1px solid var(--hjb-line);
  border-radius: 8px;
  background: #f9fcfb;
}

.hjb-prefecture-group h3 {
  margin: 0 0 10px;
  color: var(--hjb-brand);
  font-size: 18px;
}

.hjb-prefecture-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hjb-prefecture-group a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid #cfe1dd;
  border-radius: 6px;
  padding: 6px 10px;
  color: var(--hjb-brand);
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.hjb-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.hjb-section-heading h2 {
  font-size: clamp(23px, 2.4vw, 32px);
}

.hjb-section-heading a {
  color: var(--hjb-brand);
  font-weight: 900;
}

@media (max-width: 900px) {
  .hjb-archive-header {
    gap: 7px;
    margin: -24px -12px 14px;
    min-height: 56px;
    padding: 8px 12px;
  }

  .hjb-archive-header__brand {
    gap: 7px;
  }

  .hjb-archive-header__brand span {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    font-size: 20px;
  }

  .hjb-archive-header__brand strong {
    max-width: none;
    font-size: 15px;
  }

  .hjb-archive-header__actions {
    gap: 8px;
  }

  .hjb-archive-header__action {
    width: 34px;
    height: 38px;
    padding: 0;
  }

  .hjb-archive-header__action svg {
    width: 22px;
    height: 22px;
  }

  .hjb-archive-header__action b {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hjb-archive-header__register {
    min-width: 76px;
    min-height: 36px;
    padding: 8px 10px;
  }

  .hjb-archive-header__register b {
    font-size: 13px;
  }

  .hjb-home > .hjb-archive-header {
    margin: -16px -28px 14px;
  }

  .hjb-search__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hjb-search-entry__summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hjb-job-card {
    grid-template-columns: 1fr;
  }

  .hjb-job-card__side {
    border-left: 0;
    border-top: 1px solid var(--hjb-line);
    padding-top: 14px;
    padding-left: 0;
  }

  .hjb-home-hero {
    grid-template-columns: 1fr;
  }

  .hjb-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hjb-job-card__cta {
    width: auto;
  }
}

@media (max-width: 640px) {
  .hjb-page {
    padding: 16px 12px 48px;
  }

  .hjb-home {
    padding: 12px 12px 48px;
  }

  .hjb-site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hjb-site-nav__links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .hjb-site-nav__links a {
    justify-content: center;
    text-align: center;
  }

  .hjb-home-hero {
    margin-right: -12px;
    margin-left: -12px;
    padding: 28px 18px 24px;
  }

  .hjb-home-support-card {
    margin: -16px 0 24px;
  }

  .hjb-home-hero h1 {
    font-size: 36px;
  }

  .hjb-home-hero p {
    font-size: 16px;
  }

  .hjb-home-support-card__head strong {
    font-size: 18px;
  }

  .hjb-home-support-card__head span {
    min-height: 36px;
    font-size: 18px;
  }

  .hjb-home-support-card__choices a {
    font-size: 15px;
  }

  .hjb-search__grid,
  .hjb-search-entry__summary,
  .hjb-search-modal__field-grid,
  .hjb-search-choice--employment > div,
  .hjb-area-links ul,
  .hjb-link-panel ul,
  .hjb-link-panel--compact ul,
  .hjb-prefecture-groups__grid,
  .hjb-summary-grid {
    grid-template-columns: 1fr;
  }

  .hjb-search-shell {
    margin-bottom: 16px;
  }

  .hjb-search-panel {
    margin-bottom: 16px;
  }

  .hjb-detail-apply-cta {
    gap: 10px;
    min-height: 68px;
    padding: 12px 13px;
  }

  .hjb-detail-apply-cta__main {
    font-size: 18px;
  }

  .hjb-detail-apply-cta__stamp {
    min-width: 92px;
    min-height: 44px;
    border-radius: 12px;
    padding: 7px 9px;
    font-size: 12px;
  }

  .hjb-detail-apply-cta__stamp b {
    font-size: 14px;
  }

  .hjb-sort-control {
    justify-content: stretch;
  }

  .hjb-sort-control label {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .hjb-sort-control select {
    width: 100%;
  }

  .hjb-search-entry {
    padding: 14px;
  }

  .hjb-search-entry__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hjb-search-entry__button {
    width: 100%;
    min-height: 56px;
  }

  .hjb-search-modal {
    align-items: end;
    padding: 0;
  }

  .hjb-search-modal__dialog {
    width: 100%;
    max-height: 92vh;
    max-height: min(92svh, calc(100dvh - max(16px, env(safe-area-inset-top))));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 8px 8px 0 0;
  }

  .hjb-search-modal__header,
  .hjb-search-modal__selected,
  .hjb-search-modal__body,
  .hjb-search-modal__footer {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hjb-search-modal__footer {
    align-items: stretch;
  }

  .hjb-search-modal__footer .hjb-button {
    width: 100%;
    min-width: 0;
  }

  .hjb-search-shell summary {
    min-height: 52px;
    padding: 10px 14px;
  }

  .hjb-search-shell summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .hjb-search-shell summary::after {
    position: absolute;
    right: 18px;
  }

  .hjb-search__head,
  .hjb-job-card__topline,
  .hjb-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .hjb-job-card,
  .hjb-job-detail {
    padding: 16px;
  }

  .hjb-job-card__side p {
    display: none;
  }

  .hjb-job-card__facts div,
  .hjb-job-table th,
  .hjb-job-table td {
    display: block;
    width: 100%;
  }

  .hjb-detail-image {
    aspect-ratio: 4 / 3;
  }
}
