/* TOP-only story layout. Functional hooks remain in index.html; visual structure lives here. */
.home-story-page {
  --story-ink: #18344d;
  --story-ink-soft: #496174;
  --story-yellow: #f4cb49;
  --story-yellow-deep: #d8a713;
  --story-yellow-soft: #fbf2c9;
  --story-paper: #fffdf8;
  --story-canvas: #f5f2e8;
  --story-sage: #dfe9d4;
  --story-mist: #e3edf0;
  --story-line: #d8d8cd;
  --story-white: #ffffff;
  --story-shadow: 0 24px 64px rgba(24, 52, 77, 0.1);
  color: var(--story-ink);
  background: var(--story-canvas);
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: clip;
}

.home-story-page *,
.home-story-page *::before,
.home-story-page *::after {
  box-sizing: border-box;
}

.home-story-page a {
  color: inherit;
  text-decoration: none;
}

.home-story-page button,
.home-story-page select {
  font: inherit;
}

.home-story-page img,
.home-story-page video,
.home-story-page svg {
  display: block;
  max-width: 100%;
}

.home-story-page .site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  background: var(--story-canvas);
  overflow: visible;
}

.home-story-page main {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  min-width: 0;
  background: var(--story-canvas);
}

.home-story-page :where(.area-section, .jobs-section, .guide-section, .info-section) {
  width: 100%;
  margin-inline: 0;
}

.home-story-page .leaf {
  display: none;
}

.home-story-page .section-kicker {
  display: block;
  margin: 0 0 14px;
  color: #7a755f;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* Header */
.home-story-page .site-shell > .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(250px, 330px) minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 10px 28px;
  border: 0;
  border-bottom: 1px solid rgba(24, 52, 77, 0.08);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: none;
  backdrop-filter: blur(16px);
  transition: min-height 0.45s ease, background-color 0.45s ease, box-shadow 0.45s ease;
}

.home-story-page .site-shell > .site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 253, 248, 0.985);
  box-shadow: 0 12px 30px rgba(24, 52, 77, 0.08);
}

.home-story-page .site-header .brand {
  justify-self: start;
  width: min(100%, 310px);
  min-width: 0;
  margin: 0;
}

.home-story-page .site-header .brand-logo-img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.home-story-page .site-header .brand-sample-note {
  inset: 0;
}

.home-story-page .site-header .global-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-width: 0;
  margin: 0 24px;
}

.home-story-page .site-header .global-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 11px 0;
  color: var(--story-ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.home-story-page .site-header .global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--story-yellow-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.home-story-page .site-header .global-nav a:hover::after,
.home-story-page .site-header .global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-story-page .site-header .header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 246px;
  margin: 0;
}

.home-story-page .site-header .favorite-link,
.home-story-page .site-header .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.home-story-page .site-header .favorite-link {
  border: 1px solid var(--story-line);
  background: rgba(255, 255, 255, 0.72);
}

.home-story-page .site-header .header-cta {
  border: 1px solid #e1b426;
  background: var(--story-yellow);
  box-shadow: none;
}

/* Hero */
.home-story-page .hero-section {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 150px);
  margin: 0 0 72px;
  padding: 0;
  overflow: visible;
  color: var(--story-white);
  background: #284254;
}

.home-story-page .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  border-radius: 0 0 72px 0;
  background: #39596d;
}

.home-story-page .hero-bg::before,
.home-story-page .hero-copy::after {
  display: none;
  content: none;
}

.home-story-page .hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 37, 56, 0.78) 0%, rgba(11, 37, 56, 0.48) 38%, rgba(11, 37, 56, 0.12) 68%, rgba(11, 37, 56, 0.04) 100%),
    linear-gradient(0deg, rgba(11, 37, 56, 0.32) 0%, transparent 44%);
}

.home-story-page .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.015);
  animation: story-hero-breathe 16s ease-in-out infinite alternate;
}

.home-story-page .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: end;
  gap: 88px;
  width: min(100%, 1440px);
  min-height: calc(100svh - 150px);
  margin: 0 auto;
  padding: 118px 64px 164px;
}

.home-story-page .hero-copy {
  width: min(100%, 760px);
  padding-bottom: 8px;
  text-shadow: 0 4px 26px rgba(5, 29, 45, 0.28);
}

.home-story-page .hero-kicker {
  margin: 0 0 24px;
  color: #ffe28a;
  font-family: var(--site-font-hero, "Klee One", "Noto Sans JP", sans-serif);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
}

.home-story-page .hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--story-white);
  font-family: var(--site-font-hero, "Klee One", "Noto Sans JP", sans-serif);
  font-size: 56px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0;
}

.home-story-page .hero-script {
  margin: 25px 0 0;
  color: #ffe28a;
  font-family: "Yomogi", "Klee One", sans-serif;
  font-size: 29px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.home-story-page .hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  font-family: var(--site-font-critical, "Noto Sans JP", sans-serif);
}

.home-story-page .hero-search {
  align-self: end;
  width: 100%;
  margin: 0;
  padding: 28px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 24px 70px rgba(5, 29, 45, 0.24);
  color: var(--story-ink);
  backdrop-filter: blur(14px);
  font-family: var(--site-font-critical, "Noto Sans JP", sans-serif);
}

.home-story-page .hero-search h2 {
  margin: 0 0 17px;
  color: var(--story-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
}

.home-story-page .hero-search label {
  position: relative;
  display: block;
  margin: 0;
  border-top: 1px solid rgba(24, 52, 77, 0.18);
}

.home-story-page .hero-search label::before {
  display: none !important;
  content: none !important;
}

.home-story-page .hero-search label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-story-page .hero-search select {
  width: 100%;
  height: 58px;
  padding: 0 36px 0 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  color: var(--story-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  appearance: auto;
}

.home-story-page .hero-search .hero-search-area-field {
  position: relative;
  display: block;
  margin: 0;
  border-top: 1px solid rgba(24, 52, 77, 0.18);
}

.home-story-page .hero-search .hero-search-area-field > label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-story-page .hero-search .hero-search-area-field.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-story-page .hero-search .hero-search-combobox-field.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-story-page .hero-area-combobox {
  position: relative;
}

.home-story-page .hero-search .hero-area-combobox-trigger {
  display: flex;
  width: 100%;
  min-height: 68px;
  margin: 0;
  padding: 10px 6px 10px 0;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 0;
  color: var(--story-ink);
  background: transparent;
  box-shadow: none;
  text-align: left;
  transform: none;
}

.home-story-page .hero-search .hero-area-combobox-trigger:hover,
.home-story-page .hero-search .hero-area-combobox-trigger:focus-visible {
  background: rgba(244, 203, 73, 0.11);
  transform: none;
}

.home-story-page .hero-search .hero-area-combobox-trigger:focus-visible {
  outline: 3px solid rgba(13, 95, 88, 0.28);
  outline-offset: -3px;
}

.home-story-page .hero-area-combobox-copy,
.home-story-page .hero-area-option {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.home-story-page .hero-search label .hero-area-combobox-copy {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
}

.home-story-page .hero-area-combobox-copy strong,
.home-story-page .hero-area-option strong {
  color: var(--story-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.home-story-page .hero-area-combobox-copy small,
.home-story-page .hero-area-option small {
  color: #5d6d77;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.45;
}

.home-story-page .hero-area-combobox-chevron {
  position: static;
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}

.home-story-page .hero-area-combobox.is-open .hero-area-combobox-chevron {
  transform: rotate(225deg) translate(-2px, -2px);
}

.home-story-page .hero-area-listbox {
  position: fixed;
  z-index: 10000;
  max-height: min(380px, 54dvh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior: contain;
  padding: 5px;
  border: 1px solid rgba(24, 52, 77, 0.2);
  border-radius: 5px;
  background: #fffdf8;
  box-shadow: 0 18px 34px rgba(5, 29, 45, 0.2);
}

.home-story-page.is-hero-area-open .hero-search {
  position: relative;
  z-index: 9999;
}

.home-story-page .hero-area-listbox[hidden] {
  display: none;
}

.home-story-page .hero-area-option {
  min-height: 58px;
  padding: 9px 11px;
  justify-content: start;
  align-content: center;
  text-align: left;
  border-bottom: 1px solid rgba(24, 52, 77, 0.1);
  cursor: pointer;
}

.home-story-page .hero-area-option:last-child {
  border-bottom: 0;
}

.home-story-page .hero-area-option:hover,
.home-story-page .hero-area-option.is-active {
  background: #f4f2ea;
}

.home-story-page .hero-area-option[aria-selected="true"] {
  background: var(--story-yellow-soft);
}

.home-story-page .hero-search-area-field.is-enhanced + .hero-search-area-note {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.home-story-page .hero-search button {
  width: 100%;
  min-height: 54px;
  margin: 14px 0 0;
  border: 1px solid #e1b426;
  border-radius: 5px;
  color: var(--story-ink);
  background: var(--story-yellow);
  box-shadow: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.home-story-page .hero-search button:hover,
.home-story-page .hero-search button:focus-visible {
  background: #f8d75f;
  transform: translateY(-2px);
}

.home-story-page .trust-strip {
  position: absolute;
  right: 0;
  bottom: -54px;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 96px), 1120px);
  min-height: 108px;
  margin: 0 auto;
  border: 1px solid rgba(24, 52, 77, 0.13);
  border-radius: 0 32px 0 32px;
  background: var(--story-paper);
  box-shadow: 0 18px 46px rgba(24, 52, 77, 0.1);
  color: var(--story-ink);
}

.home-story-page .trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  padding: 20px 24px;
  border-right: 1px solid var(--story-line);
}

.home-story-page .trust-strip > div:last-child {
  border-right: 0;
}

.home-story-page .trust-icon {
  display: grid;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(216, 167, 19, 0.5);
  border-radius: 50%;
  background: #fff7d9;
}

.home-story-page .trust-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--story-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.home-story-page .trust-strip strong {
  color: var(--story-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.75;
}

/* Company rail */
.home-story-page .logo-rail-section {
  position: relative;
  width: 100%;
  margin-inline: 0;
  padding: 122px 0 126px;
  overflow: hidden;
  background: var(--story-paper);
}

.home-story-page .logo-rail-section::before {
  position: absolute;
  inset: 20px auto auto max(24px, calc((100% - 1240px) / 2));
  content: "COMPANIES";
  color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 112px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(24, 52, 77, 0.09);
  pointer-events: none;
}

.home-story-page .logo-rail-head,
.home-story-page .jobs-head,
.home-story-page .board-head {
  width: min(calc(100% - 96px), 1240px);
  margin: 0 auto;
}

.home-story-page .logo-rail-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 54px;
}

.home-story-page .logo-rail-head h2,
.home-story-page .jobs-head h2,
.home-story-page .board-head h2 {
  margin: 0;
  color: var(--story-ink);
  font-family: var(--site-font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.home-story-page .logo-rail-head p,
.home-story-page .jobs-head p {
  margin: 13px 0 0;
  color: var(--story-ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.home-story-page .logo-rail-head > a,
.home-story-page .jobs-head > a,
.home-story-page .board-head > a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 46px;
  padding: 0 4px 8px;
  border-bottom: 1px solid var(--story-ink);
  color: var(--story-ink);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.home-story-page .logo-rail-head > a::after,
.home-story-page .jobs-head > a::after,
.home-story-page .board-head > a::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.25s ease;
}

.home-story-page .logo-rail-head > a:hover::after,
.home-story-page .jobs-head > a:hover::after,
.home-story-page .board-head > a:hover::after {
  transform: translateX(5px);
}

.home-story-page .logo-marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}

.home-story-page .logo-marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: story-logo-flow 34s linear infinite;
}

.home-story-page .logo-marquee--bottom .logo-marquee-track {
  animation-name: story-logo-flow-reverse;
  animation-duration: 39s;
}

.home-story-page .logo-marquee-set {
  display: flex;
  flex: none;
}

.home-story-page .logo-marquee-item {
  display: grid;
  flex: 0 0 224px;
  width: 224px;
  height: 94px;
  place-items: center;
  padding: 18px 34px;
  border-right: 1px solid var(--story-line);
  background: transparent;
}

.home-story-page .logo-marquee-item img {
  width: 100%;
  height: 54px;
  object-fit: contain;
  filter: saturate(0.92);
}

/* Area */
.home-story-page .area-section {
  position: relative;
  padding: 96px 32px 142px;
  overflow: hidden;
  background: var(--story-yellow-soft);
}

.home-story-page .area-section::before {
  position: absolute;
  top: -18px;
  left: 32px;
  content: "SAITAMA";
  color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 150px;
  font-weight: 500;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(146, 111, 11, 0.12);
  pointer-events: none;
}

.home-story-page .area-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px 58px;
  width: min(100%, 1376px);
  min-height: 760px;
  margin: 0 auto;
  padding: 72px 64px 68px;
  border: 0;
  border-radius: 0 72px 0 72px;
  background: var(--story-paper);
  box-shadow: var(--story-shadow);
}

.home-story-page .area-copy {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}

.home-story-page .area-copy > div {
  min-width: 0;
}

.home-story-page .area-copy h2 {
  margin: 0;
  color: var(--story-ink);
  font-family: var(--site-font);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}

.home-story-page .area-copy p {
  margin: 22px 0 0;
  color: var(--story-ink-soft);
  font-size: 15px;
  line-height: 2;
}

.home-story-page .area-all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 4px 0 0;
  border-bottom: 1px solid var(--story-ink);
  color: var(--story-ink);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
}

.home-story-page .area-all-link::after {
  margin-left: 28px;
  color: #b98400;
  content: "→";
  font-size: 20px;
  transition: transform 0.25s ease;
}

.home-story-page .area-all-link:hover::after,
.home-story-page .area-all-link:focus-visible::after {
  transform: translateX(5px);
}

.home-story-page .saitama-map {
  position: relative;
  align-self: center;
  width: 100%;
  min-width: 0;
  margin: 0;
  background: transparent;
}

.home-story-page .top-area-map-link,
.home-story-page .top-area-map-fallback {
  display: block;
  width: 100%;
}

.home-story-page .top-area-map-link svg,
.home-story-page .top-area-map-link img {
  width: 100%;
  height: auto;
  min-height: 570px;
  object-fit: contain;
  filter: saturate(0.86) contrast(0.98);
  transition: filter 0.35s ease, transform 0.6s ease;
}

.home-story-page .top-area-map-link:hover svg,
.home-story-page .top-area-map-link:focus-within svg {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.012);
}

.home-story-page .top-area-map-link .area-shape {
  transition: opacity 0.25s ease, filter 0.25s ease, stroke 0.25s ease, transform 0.25s ease;
  transform-box: fill-box;
  transform-origin: center;
}

.home-story-page .top-area-map-link .area-link:hover .area-shape,
.home-story-page .top-area-map-link .area-link:focus .area-shape,
.home-story-page .top-area-map-link .area-link.is-area-hovered .area-shape {
  opacity: 1;
  filter: brightness(1.03) saturate(1.12) drop-shadow(0 8px 8px rgba(24, 52, 77, 0.14));
  stroke: var(--story-ink);
  stroke-width: 2.3;
  transform: translateY(-3px);
}

.home-story-page .top-area-mobile-callouts {
  display: none;
}

.home-story-page .area-list {
  grid-column: auto;
  display: block;
  grid-template-columns: none;
  align-self: center;
  gap: 0;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-story-page .area-list h3 {
  margin: 0 0 15px;
  color: var(--story-ink);
  font-size: 15px;
  font-weight: 700;
}

.home-story-page .area-list a {
  position: relative;
  display: block;
  min-height: 70px;
  padding: 15px 32px 14px 0;
  border: 0;
  border-top: 1px solid var(--story-line);
  border-radius: 0;
  color: var(--story-ink);
  background: transparent;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.home-story-page .area-list a:last-child {
  border-bottom: 1px solid var(--story-line);
}

.home-story-page .area-list a::after {
  position: absolute;
  top: 50%;
  right: 4px;
  content: "→";
  font-size: 18px;
  transform: translateY(-50%);
}

.home-story-page .area-list a::before {
  content: none !important;
}

.home-story-page .area-list a span {
  display: block;
  margin-top: 4px;
  color: var(--story-ink-soft);
  font-size: 11px;
  font-weight: 500;
}

.home-story-page .area-list a:hover,
.home-story-page .area-list a:focus-visible,
.home-story-page .area-list a.is-area-hovered {
  padding-left: 12px;
  color: #8e6a00;
}

/* Jobs */
.home-story-page .jobs-section {
  position: relative;
  padding: 134px 0 150px;
  overflow: hidden;
  background: var(--story-paper);
}

.home-story-page .jobs-section::before {
  position: absolute;
  top: 22px;
  left: -12px;
  content: "JOBS";
  color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 176px;
  font-weight: 500;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(24, 52, 77, 0.08);
  pointer-events: none;
}

.home-story-page .jobs-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 58px;
}

.home-story-page .job-carousel {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}

.home-story-page .job-carousel-viewport {
  width: 100%;
  padding: 0 max(48px, calc((100vw - 1240px) / 2));
  overflow-x: auto;
  overflow-y: visible;
  scroll-padding-inline: max(48px, calc((100vw - 1240px) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.home-story-page .job-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.home-story-page .job-carousel-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
}

.home-story-page .pickup-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: 236px auto auto auto 1fr auto;
  flex: 0 0 330px;
  width: 330px;
  min-height: 650px;
  padding: 0 0 22px;
  overflow: hidden;
  border: 1px solid var(--story-line);
  border-radius: 0 32px 0 32px;
  background: var(--story-white);
  box-shadow: none;
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.home-story-page .pickup-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 46px rgba(24, 52, 77, 0.1);
}

.home-story-page .pickup-card > img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  border-radius: 0;
  filter: saturate(0.9);
  transition: transform 0.7s ease, filter 0.35s ease;
}

.home-story-page .pickup-card:hover > img {
  filter: saturate(1);
  transform: scale(1.035);
}

.home-story-page .pickup-role {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  margin: 20px 22px 0;
  padding: 0 10px;
  border: 0;
  border-radius: 2px;
  color: #745700;
  background: var(--story-yellow-soft);
  font-size: 11px;
  font-weight: 700;
}

.home-story-page .pickup-card > strong {
  display: block;
  min-height: 58px;
  margin: 13px 22px 0;
  color: var(--story-ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.home-story-page .pickup-summary {
  min-height: 48px;
  margin: 8px 22px 0;
  color: #886500;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

.home-story-page .pickup-meta {
  margin: 14px 22px 0;
  padding: 0;
}

.home-story-page .pickup-meta > div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--story-line);
  border-bottom: 0;
}

.home-story-page .pickup-meta dt,
.home-story-page .pickup-meta dd {
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
}

.home-story-page .pickup-meta dt {
  color: #7a887d;
  font-weight: 600;
}

.home-story-page .pickup-meta dd {
  color: var(--story-ink);
  font-weight: 500;
}

.home-story-page .pickup-actions {
  display: flex;
  justify-content: center;
  margin: 18px 22px 0;
}

.home-story-page .pickup-cta {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: calc(100% - 28px);
  max-width: 220px;
  height: 48px;
  padding: 0 32px;
  border: 1px solid #e1b426;
  border-radius: 4px;
  color: var(--story-ink);
  background: var(--story-yellow);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.home-story-page .pickup-cta::after {
  content: "→";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}

.home-story-page .job-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  margin: 0;
  border: 1px solid rgba(24, 52, 77, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 10px 26px rgba(24, 52, 77, 0.12);
  cursor: pointer;
  transform: translateY(-50%);
}

.home-story-page .job-carousel-button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--story-ink);
  border-right: 2px solid var(--story-ink);
}

.home-story-page .job-carousel-button--prev {
  left: 18px;
}

.home-story-page .job-carousel-button--prev::before {
  transform: translate(-38%, -50%) rotate(-135deg);
}

.home-story-page .job-carousel-button--next {
  right: 18px;
}

.home-story-page .job-carousel-button--next::before {
  transform: translate(-62%, -50%) rotate(45deg);
}

.home-story-page .job-carousel-button.is-hidden,
.home-story-page .job-carousel-button:disabled {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Guide and in-page movie */
.home-story-page .guide-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.7fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
  background: var(--story-sage);
}

.home-story-page .guide-section::before {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 1;
  content: "WORK";
  color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 132px;
  font-weight: 500;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(24, 52, 77, 0.12);
  pointer-events: none;
}

.home-story-page .movie-panel,
.home-story-page .guide-panel {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-story-page .movie-panel {
  display: flex;
  min-height: 760px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 76px 70px 64px;
  overflow: hidden;
  color: var(--story-white);
  background: #1b3548;
}

.home-story-page .movie-panel > .section-kicker,
.home-story-page .movie-panel > .movie-eyebrow,
.home-story-page .movie-panel > h2,
.home-story-page .movie-panel > p:not(.movie-eyebrow) {
  position: relative;
  z-index: 3;
  width: min(100%, 600px);
  text-shadow: 0 4px 24px rgba(5, 29, 45, 0.35);
}

.home-story-page .movie-social-links {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  width: min(100%, 600px);
  margin-top: 20px;
}

.home-story-page .movie-social-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(14, 44, 64, 0.48);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(7px);
}

.home-story-page .movie-social-links a:hover,
.home-story-page .movie-social-links a:focus-visible {
  border-color: #ffe28a;
  background: rgba(244, 203, 73, 0.9);
  color: var(--story-navy);
}

.home-story-page .movie-social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.home-story-page .movie-social-links .is-filled {
  fill: currentColor;
  stroke: none;
}

.home-story-page .movie-panel > .section-kicker {
  color: rgba(255, 255, 255, 0.7);
}

.home-story-page .movie-eyebrow {
  margin: 0 0 10px;
  color: #ffe28a;
  font-size: 13px;
  font-weight: 700;
}

.home-story-page .movie-panel > h2 {
  margin: 0;
  color: var(--story-white);
  font-family: var(--site-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
}

.home-story-page .movie-panel > h2 span {
  display: block;
}

.home-story-page .movie-panel > p:not(.movie-eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.8;
}

.home-story-page .movie-embed {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #1b3548;
}

.home-story-page .movie-embed::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: linear-gradient(0deg, rgba(10, 33, 49, 0.86) 0%, rgba(10, 33, 49, 0.18) 62%, rgba(10, 33, 49, 0.06) 100%);
  pointer-events: none;
}

.home-story-page .movie-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.home-story-page .movie-youtube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) brightness(0.86);
  transition: transform 1s ease, filter 0.45s ease;
}

.home-story-page .movie-youtube:hover img {
  filter: saturate(0.95) brightness(0.9);
  transform: scale(1.025);
}

.home-story-page .movie-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.16);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, background-color 0.35s ease;
}

.home-story-page .movie-play::before {
  position: static;
  inset: auto;
  display: block;
  width: 18px;
  height: 24px;
  margin: 0;
  border: 0;
  content: "";
  background: var(--story-white);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(3px);
}

.home-story-page .movie-youtube:hover .movie-play {
  background: rgba(244, 203, 73, 0.9);
  transform: translate(-50%, -50%) scale(1.06);
}

.home-story-page .movie-embed iframe {
  position: absolute;
  inset: 0;
  z-index: 6;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-story-page .movie-embed.is-playing {
  z-index: 5;
}

.home-story-page .movie-embed.is-playing::after,
.home-story-page .movie-embed:has(iframe)::after {
  display: none;
}

.home-story-page .guide-panel {
  align-self: stretch;
  padding: 108px 54px 72px;
  background: var(--story-sage);
}

.home-story-page .guide-panel h2 {
  margin: 0;
  color: var(--story-ink);
  font-family: var(--site-font);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

.home-story-page .guide-panel > p {
  margin: 18px 0 0;
  color: var(--story-ink-soft);
  font-size: 14px;
  line-height: 2;
}

.home-story-page .guide-links {
  margin: 34px 0 0;
  border-top: 1px solid rgba(24, 52, 77, 0.2);
}

.home-story-page .guide-links a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 10px 28px 10px 0;
  border-bottom: 1px solid rgba(24, 52, 77, 0.2);
  color: var(--story-ink);
  font-size: 13px;
  font-weight: 600;
  transition: padding-left 0.25s ease;
}

.home-story-page .guide-links a::after {
  position: absolute;
  top: 50%;
  right: 3px;
  content: "→";
  transform: translateY(-50%);
}

.home-story-page .guide-links a:hover,
.home-story-page .guide-links a:focus-visible {
  padding-left: 10px;
}

.home-story-page .guide-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(24, 52, 77, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.55);
}

.home-story-page .guide-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--story-ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.home-story-page .guide-panel > .green-button {
  display: flex;
  width: fit-content;
  min-width: 224px;
  min-height: 52px;
  margin: 38px auto 0;
  padding: 0 22px;
  border: 1px solid #e1b426;
  border-radius: 4px;
  color: var(--story-ink);
  background: var(--story-yellow);
  box-shadow: 0 12px 24px rgba(184, 126, 0, 0.14);
  font-size: 14px;
  font-weight: 700;
}

.home-story-page .guide-panel > .green-button::after {
  margin-left: 22px;
  content: "→";
  font-size: 17px;
}

/* News and Instagram */
.home-story-page .info-section {
  position: relative;
  display: block;
  padding: 132px 32px 150px;
  overflow: hidden;
  background: var(--story-canvas);
}

.home-story-page .info-section::before {
  content: none;
}

.home-story-page .news-panel,
.home-story-page .instagram-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1260px);
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-story-page .news-panel {
  padding: 68px 76px 72px;
  border-radius: 0 64px 0 64px;
  background: var(--story-paper);
}

.home-story-page .board-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  margin-bottom: 34px;
  border-bottom: 0;
}

.home-story-page .news-row {
  display: grid;
  grid-template-columns: 112px 90px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  border-top: 1px solid var(--story-line);
  border-bottom: 0;
  color: var(--story-ink);
}

.home-story-page .board-head + .news-row {
  border-top: 0;
}

.home-story-page .news-row:last-child {
  border-bottom: 1px solid var(--story-line);
}

.home-story-page .news-row::after {
  content: "→";
  font-size: 17px;
  transition: transform 0.25s ease;
}

.home-story-page .news-row:hover::after {
  transform: translateX(5px);
}

.home-story-page .news-row time {
  color: #858476;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
}

.home-story-page .news-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  min-height: 26px;
  padding: 0 8px;
  border: 0;
  border-radius: 2px;
  color: #725600;
  background: var(--story-yellow-soft);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.home-story-page .news-row strong {
  min-width: 0;
  color: var(--story-ink);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
}

.home-story-page .instagram-panel {
  margin-top: 112px;
}

.home-story-page .instagram-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 118px;
  gap: 12px;
  width: 100%;
}

.home-story-page .instagram-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(0.9);
  transition: filter 0.35s ease, transform 0.5s ease;
}

.home-story-page .instagram-grid img:hover {
  filter: saturate(1);
  transform: translateY(-4px);
}

.home-story-page .instagram-grid.instagram-grid--empty {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-auto-rows: auto;
  min-height: 280px;
  padding: 36px 24px;
  place-items: center;
  background: #fffdf8;
}

.home-story-page .instagram-empty-state {
  display: grid;
  width: min(100%, 520px);
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.home-story-page .instagram-empty-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid #d9d4c8;
  border-radius: 50%;
  place-items: center;
  color: #17364f;
  background: #fff;
}

.home-story-page .instagram-empty-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.home-story-page .instagram-empty-icon .is-filled {
  fill: currentColor;
  stroke: none;
}

.home-story-page .instagram-empty-state h3 {
  margin: 2px 0 0;
  color: var(--story-ink);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.home-story-page .instagram-grid--empty .instagram-empty-account {
  margin: 0;
  color: #8a6915;
  font-size: 13px;
  font-weight: 700;
}

.home-story-page .instagram-grid--empty .instagram-empty-state > p:not(.instagram-empty-account) {
  margin: 0;
  color: #64717b;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8;
}

.home-story-page .instagram-empty-state a {
  display: inline-flex;
  min-width: 190px;
  min-height: 44px;
  margin-top: 4px;
  padding: 10px 20px;
  border: 1px solid #17364f;
  align-items: center;
  justify-content: center;
  color: #17364f;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: #fff;
}

.home-story-page .instagram-empty-state a:hover {
  color: #fff;
  background: #17364f;
}

.home-story-page .instagram-empty-state small {
  color: #7e8790;
  font-size: 11px;
  line-height: 1.6;
}

.home-story-page .instagram-grid.instagram-grid--embeds {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  align-items: start;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-story-page .instagram-embed-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e3ded3;
  border-radius: 2px 24px 2px 24px;
  background: #fff;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.home-story-page .instagram-embed-card:hover {
  border-color: #b1b9b2;
  box-shadow: 0 12px 28px rgba(24, 52, 77, 0.1);
}

.home-story-page .instagram-embed-card:focus-within {
  outline: 3px solid var(--story-ink);
  outline-offset: 5px;
}

.home-story-page .instagram-post-link {
  display: block;
  color: var(--story-ink);
  text-decoration: none;
}

.home-story-page .instagram-post-media {
  position: relative;
  display: block;
  aspect-ratio: 361 / 640;
  overflow: hidden;
  background: #e9e7df;
}

.home-story-page .instagram-grid--embeds .instagram-post-media img,
.home-story-page .instagram-grid--embeds .instagram-post-media img:hover {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  grid-column: auto;
  grid-row: auto;
  object-fit: contain;
  border-radius: 0;
  filter: none;
  transform: none;
  transition: none;
}

.home-story-page .instagram-reel-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 52, 77, 0.78);
}

.home-story-page .instagram-reel-icon svg {
  width: 13px;
  height: 15px;
  margin-left: 2px;
}

.home-story-page .instagram-post-meta {
  display: flex;
  min-height: 88px;
  padding: 16px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.home-story-page .instagram-post-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.6;
}

.home-story-page .instagram-post-action {
  display: block;
  margin-top: 3px;
  color: var(--story-ink-soft);
  font-size: 12px;
  line-height: 1.7;
}

.home-story-page .instagram-post-link:hover .instagram-post-action {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-story-page .instagram-card-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--story-yellow-soft);
}

.home-story-page .instagram-card-arrow svg {
  width: 18px;
  height: 18px;
}

@media (prefers-reduced-motion: reduce) {
  .home-story-page .instagram-embed-card {
    transition: none;
  }
}

.home-story-page .instagram-load-more {
  display: flex;
  margin-top: 28px;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.home-story-page .instagram-load-more[hidden] {
  display: none;
}

.home-story-page .instagram-load-more-button {
  min-width: 180px;
  min-height: 48px;
  padding: 11px 28px;
  border: 1px solid #17364f;
  border-radius: 999px;
  background: #fff;
  color: #17364f;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.home-story-page .instagram-load-more-button:hover,
.home-story-page .instagram-load-more-button:focus-visible {
  background: #17364f;
  color: #fff;
}

.home-story-page .instagram-load-more-button:focus-visible {
  outline: 3px solid rgba(194, 148, 35, 0.35);
  outline-offset: 3px;
}

.home-story-page .instagram-load-more-status {
  margin: 0;
  color: #6e7780;
  font-size: 13px;
  line-height: 1.6;
}

.home-story-page .instagram-grid img:nth-child(1) {
  grid-column: span 4;
  grid-row: span 3;
}

.home-story-page .instagram-grid img:nth-child(2),
.home-story-page .instagram-grid img:nth-child(3) {
  grid-column: span 4;
  grid-row: span 2;
}

.home-story-page .instagram-grid img:nth-child(4),
.home-story-page .instagram-grid img:nth-child(5),
.home-story-page .instagram-grid img:nth-child(6),
.home-story-page .instagram-grid img:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.home-story-page .instagram-grid img:nth-child(8) {
  grid-column: span 4;
  grid-row: span 2;
}

/* About */
.home-story-page .top-about-section {
  position: relative;
  min-height: 590px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(19, 49, 69, 0.96), rgba(19, 49, 69, 0.62)),
    url("/assets/photos/association-video/saitama-stadium.webp") center 58% / cover no-repeat;
  color: var(--story-white);
}

.home-story-page .top-about-section::before {
  content: none;
}

.home-story-page .top-about-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  width: min(calc(100% - 96px), 1240px);
  min-height: 590px;
  margin: 0 auto;
  padding: 92px 0 88px;
}

.home-story-page .top-about-inner > div {
  width: min(100%, 530px);
  padding: 54px 58px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0 36px 0 36px;
  background: rgba(18, 49, 70, 0.72);
  backdrop-filter: blur(10px);
}

.home-story-page .top-about-inner .section-kicker {
  color: rgba(255, 255, 255, 0.66);
}

.home-story-page .top-about-inner h2 {
  margin: 0;
  color: var(--story-white);
  font-family: var(--site-font);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
}

.home-story-page .top-about-inner p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 2;
}

.home-story-page .top-about-inner > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  min-height: 54px;
  margin: 0 0 0 24px;
  padding: 0 28px;
  border: 1px solid #e1b426;
  border-radius: 4px;
  color: var(--story-ink);
  background: var(--story-yellow);
  font-size: 14px;
  font-weight: 700;
}

/* Footer tone for this TOP */
.home-story-page .site-footer {
  margin: 0;
  border: 0;
  background: #152f45;
  color: rgba(255, 255, 255, 0.82);
}

.home-story-page .site-footer a,
.home-story-page .site-footer h3,
.home-story-page .site-footer address {
  color: inherit;
}

.home-story-page .site-footer .footer-main {
  padding-top: 72px;
  padding-bottom: 54px;
}

.home-story-page .site-footer .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.14);
}

/* Motion */
.top-motion-enabled .home-story-page .top-reveal {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(24px);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--top-reveal-delay, 0ms),
    filter 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--top-reveal-delay, 0ms),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1) var(--top-reveal-delay, 0ms);
}

.top-motion-enabled .home-story-page .top-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes story-hero-breathe {
  from { transform: scale(1.015); }
  to { transform: scale(1.055); }
}

@keyframes story-logo-flow {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes story-logo-flow-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@media (max-width: 1220px) {
  .home-story-page .site-shell > .site-header {
    grid-template-columns: 260px minmax(0, 1fr) auto;
    padding-inline: 22px;
  }

  .home-story-page .site-header .global-nav {
    gap: 18px;
    margin-inline: 16px;
  }

  .home-story-page .site-header .global-nav a {
    font-size: 13px;
  }

  .home-story-page .site-header .header-actions {
    min-width: 224px;
  }

  .home-story-page .site-header .favorite-link,
  .home-story-page .site-header .header-cta {
    padding-inline: 16px;
  }

  .home-story-page .hero-inner {
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 54px;
    padding-inline: 48px;
  }

  .home-story-page .area-card {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 38px 40px;
    min-height: 700px;
    padding: 62px 42px 58px;
  }

  .home-story-page .area-copy h2 {
    font-size: 37px;
  }
}

@media (max-width: 1100px) {
  .home-story-page .site-header .global-nav,
  .home-story-page .site-header .favorite-link,
  .home-story-page .site-header .header-cta {
    display: none;
  }

  .home-story-page .site-header .portal-menu-button {
    display: inline-flex;
  }
}

@media (max-width: 1000px) {
  .home-story-page .instagram-grid.instagram-grid--embeds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-story-page .site-shell > .site-header {
    grid-template-columns: minmax(220px, 300px) 1fr auto;
  }

  .home-story-page .site-header .global-nav {
    display: none;
  }

  .home-story-page .site-header .favorite-link,
  .home-story-page .site-header .header-cta {
    display: none;
  }

  .home-story-page .site-header .portal-menu-button {
    display: inline-flex;
  }

  .home-story-page .hero-inner {
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 38px;
    padding-inline: 38px;
  }

  .home-story-page .hero-copy h1 {
    font-size: 54px;
  }

  .home-story-page .trust-strip {
    width: calc(100% - 64px);
  }

  .home-story-page .area-card {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 34px 32px;
  }

  .home-story-page .area-copy {
    grid-column: 1 / -1;
  }

  .home-story-page .saitama-map {
    align-self: start;
  }

  .home-story-page .area-list {
    display: block;
    grid-template-columns: none;
    gap: 0;
  }

  .home-story-page .guide-section {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .home-story-page .movie-panel {
    min-height: 680px;
    padding-inline: 46px;
  }

  .home-story-page .guide-panel {
    padding-inline: 36px;
  }
}

@media (max-width: 1050px) {
  .home-story-page .area-card {
    display: block;
    min-height: 0;
    padding: 64px 36px 56px;
    border-radius: 0 48px 0 48px;
  }

  .home-story-page .area-copy {
    width: 100%;
  }

  .home-story-page .saitama-map {
    width: min(100%, 780px);
    margin: 38px auto 0;
  }

  .home-story-page .top-area-map-link svg,
  .home-story-page .top-area-map-link img {
    min-height: 500px;
  }

  .home-story-page .area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 30px;
    margin-top: 30px;
  }

  .home-story-page .area-list h3 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .home-story-page .site-shell > .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 72px;
    padding: 8px 18px;
  }

  .home-story-page .site-header .brand {
    width: min(100%, 305px);
  }

  .home-story-page .site-header .brand-logo-img {
    height: 54px;
  }

  .home-story-page .site-header .header-actions {
    min-width: 0;
  }

  .home-story-page .site-header .favorite-link,
  .home-story-page .site-header .header-cta {
    display: none;
  }

  .home-story-page .hero-section {
    min-height: auto;
    margin-bottom: 0;
    padding-bottom: 34px;
  }

  .home-story-page .hero-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    height: 55svh;
    min-height: 430px;
    max-height: 560px;
    border-radius: 0 0 34px 0;
  }

  .home-story-page .hero-bg::after {
    background: linear-gradient(0deg, rgba(11, 37, 56, 0.5) 0%, transparent 58%);
  }

  .home-story-page .hero-video {
    object-position: center center;
  }

  .home-story-page .hero-inner {
    position: static;
    display: block;
    min-height: auto;
    padding: 0;
  }

  .home-story-page .hero-copy {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    width: 100%;
    height: min(55svh, 560px);
    min-height: 430px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px 24px 42px;
  }

  .home-story-page .hero-copy h1 {
    max-width: 560px;
    font-size: 42px;
    line-height: 1.35;
  }

  .home-story-page .hero-kicker {
    margin-bottom: 12px;
    font-size: 21px;
  }

  .home-story-page .hero-script-break {
    display: none;
  }

  .home-story-page .hero-lead {
    display: block;
    position: static;
    width: auto;
    height: auto;
    max-width: 590px;
    margin: 17px 0 0;
    overflow: visible;
    clip: auto;
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.8;
    white-space: normal;
  }

  .home-story-page .hero-search {
    width: calc(100% - 36px);
    margin: -18px auto 0;
    padding: 26px 24px 28px;
    box-shadow: 0 18px 44px rgba(24, 52, 77, 0.13);
  }

  .home-story-page .trust-strip {
    position: static;
    display: grid;
    width: calc(100% - 36px);
    min-height: 0;
    margin: 18px auto 0;
    border-radius: 0 20px 0 20px;
    box-shadow: none;
  }

  .home-story-page .trust-strip > div {
    justify-content: flex-start;
    min-height: 74px;
    padding: 14px 18px;
  }

  .home-story-page .trust-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .home-story-page .trust-strip strong {
    font-size: 12px;
  }

  .home-story-page .logo-rail-section {
    padding: 104px 0 96px;
  }

  .home-story-page .logo-rail-section::before,
  .home-story-page .jobs-section::before,
  .home-story-page .info-section::before {
    font-size: 78px;
  }

  .home-story-page .logo-rail-head,
  .home-story-page .jobs-head,
  .home-story-page .board-head {
    width: calc(100% - 40px);
  }

  .home-story-page .logo-rail-head h2,
  .home-story-page .jobs-head h2,
  .home-story-page .board-head h2 {
    font-size: 34px;
  }

  .home-story-page .area-section {
    padding: 78px 16px 112px;
  }

  .home-story-page .area-section::before {
    left: 12px;
    font-size: 88px;
  }

  .home-story-page .area-card {
    display: block;
    min-height: 0;
    padding: 64px 28px 54px;
    border-radius: 0 38px 0 38px;
  }

  .home-story-page .area-copy {
    width: min(100%, 560px);
  }

  .home-story-page .area-copy h2 {
    font-size: 36px;
  }

  .home-story-page .saitama-map {
    width: min(100%, 650px);
    margin: 36px auto 0;
  }

  .home-story-page .top-area-map-link svg,
  .home-story-page .top-area-map-link img {
    min-height: 420px;
  }

  .home-story-page .area-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 26px;
    margin-top: 28px;
  }

  .home-story-page .jobs-section {
    padding-block: 112px 126px;
  }

  .home-story-page .job-carousel-viewport {
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .home-story-page .job-carousel-button {
    width: 50px;
    height: 50px;
  }

  .home-story-page .job-carousel-button--prev {
    left: 4px;
  }

  .home-story-page .job-carousel-button--next {
    right: 4px;
  }

  .home-story-page .guide-section {
    display: block;
  }

  .home-story-page .guide-section::before {
    font-size: 84px;
  }

  .home-story-page .movie-panel {
    min-height: 68svh;
    max-height: 720px;
    padding: 50px 36px 44px;
  }

  .home-story-page .guide-panel {
    padding: 74px 34px 78px;
  }

  .home-story-page .info-section {
    padding: 108px 16px 120px;
  }

  .home-story-page .news-panel {
    padding: 54px 34px 58px;
    border-radius: 0 38px 0 38px;
  }

  .home-story-page .news-row {
    grid-template-columns: 100px 82px minmax(0, 1fr) 20px;
    gap: 12px;
  }

  .home-story-page .instagram-panel {
    margin-top: 88px;
  }

  .home-story-page .instagram-grid {
    grid-auto-rows: 92px;
  }

  .home-story-page .top-about-inner {
    width: calc(100% - 40px);
  }

  .home-story-page .top-about-section::before {
    font-size: 290px;
  }
}

@media (max-width: 640px) {
  .home-story-page .hero-copy {
    padding: 30px 20px 34px;
  }

  .home-story-page .hero-kicker {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .home-story-page .hero-copy h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.48;
  }

  .home-story-page .hero-lead {
    margin-top: 13px;
    font-size: 12px;
    line-height: 1.75;
  }

  .home-story-page .site-shell > .site-header {
    min-height: 68px;
    padding: 7px 14px;
  }

  .home-story-page .site-header .brand {
    width: min(100%, 270px);
  }

  .home-story-page .site-header .brand-logo-img {
    height: 50px;
  }

  .home-story-page .hero-bg,
  .home-story-page .hero-copy {
    height: 54svh;
    min-height: 410px;
    max-height: 520px;
  }

  .home-story-page .hero-video {
    object-position: 52% center;
  }

  .home-story-page .hero-copy {
    padding: 30px 20px 36px;
  }

  .home-story-page .hero-script {
    max-width: 330px;
    font-size: 20px;
    line-height: 1.5;
  }

  .home-story-page .hero-search {
    width: calc(100% - 28px);
    padding: 24px 20px 25px;
  }

  .home-story-page .hero-search select {
    height: 54px;
  }

  .home-story-page .trust-strip {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .home-story-page .trust-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--story-line);
  }

  .home-story-page .trust-strip > div:last-child {
    border-bottom: 0;
  }

  .home-story-page .logo-rail-section {
    padding-block: 92px 84px;
  }

  .home-story-page .logo-rail-section::before {
    top: 28px;
    font-size: 56px;
  }

  .home-story-page .logo-rail-head,
  .home-story-page .jobs-head,
  .home-story-page .board-head {
    display: block;
    width: calc(100% - 32px);
  }

  .home-story-page .logo-rail-head {
    margin-bottom: 40px;
  }

  .home-story-page .logo-rail-head h2,
  .home-story-page .jobs-head h2,
  .home-story-page .board-head h2 {
    font-size: 29px;
  }

  .home-story-page .logo-rail-head > a,
  .home-story-page .jobs-head > a,
  .home-story-page .board-head > a {
    width: fit-content;
    margin-top: 22px;
  }

  .home-story-page .logo-marquee-item {
    flex-basis: 170px;
    width: 170px;
    height: 78px;
    padding: 14px 24px;
  }

  .home-story-page .logo-marquee-item img {
    height: 46px;
  }

  .home-story-page .area-section {
    padding: 62px 10px 90px;
  }

  .home-story-page .area-section::before {
    top: 5px;
    font-size: 58px;
  }

  .home-story-page .area-card {
    padding: 52px 18px 42px;
    border-radius: 0 28px 0 28px;
  }

  .home-story-page .area-copy {
    display: block;
    width: 100%;
  }

  .home-story-page .area-all-link {
    width: fit-content;
    margin-top: 20px;
  }

  .home-story-page .area-copy h2 {
    font-size: 30px;
  }

  .home-story-page .area-copy p {
    font-size: 14px;
  }

  .home-story-page .saitama-map {
    min-height: 500px;
    margin-top: 24px;
  }

  .home-story-page .top-area-map-link {
    position: absolute;
    top: 68px;
    left: 50%;
    width: 110%;
    transform: translateX(-50%);
  }

  .home-story-page .top-area-map-link svg,
  .home-story-page .top-area-map-link img {
    min-height: 350px;
    object-position: center;
  }

  .home-story-page .top-area-map-link .area-label-link {
    display: none;
  }

  .home-story-page .top-area-mobile-callouts {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    pointer-events: none;
  }

  .home-story-page .top-area-mobile-callout {
    position: absolute;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 9px;
    border: 1px solid rgba(24, 52, 77, 0.24);
    border-radius: 4px;
    color: var(--story-ink);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 5px 14px rgba(24, 52, 77, 0.1);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    pointer-events: auto;
  }

  .home-story-page .top-area-mobile-callout::after {
    position: absolute;
    z-index: -1;
    content: "";
    width: var(--leader-length, 34px);
    height: 1px;
    background: rgba(24, 52, 77, 0.4);
    transform-origin: left center;
  }

  .home-story-page .top-area-mobile-callout::before {
    position: absolute;
    z-index: -1;
    content: "";
    width: 7px;
    height: 7px;
    border: 2px solid #d8a713;
    border-radius: 50%;
    background: var(--story-paper);
    pointer-events: none;
  }

  .home-story-page .top-area-mobile-callout--chuseimo { top: 54px; left: 2px; }
  .home-story-page .top-area-mobile-callout--chuseimo::after { top: 100%; left: 66%; --leader-length: 98px; transform: rotate(72deg); }
  .home-story-page .top-area-mobile-callout--chuseimo::before { top: 123px; left: 69px; }
  .home-story-page .top-area-mobile-callout--kenpoku { top: 22px; right: 12px; }
  .home-story-page .top-area-mobile-callout--kenpoku::after { top: 100%; left: 8px; --leader-length: 148px; transform: rotate(123deg); }
  .home-story-page .top-area-mobile-callout--kenpoku::before { top: 155px; left: -75px; }
  .home-story-page .top-area-mobile-callout--chichibu { top: 182px; left: 0; }
  .home-story-page .top-area-mobile-callout--chichibu::after { top: 100%; left: 52%; --leader-length: 34px; transform: rotate(78deg); }
  .home-story-page .top-area-mobile-callout--chichibu::before { top: 62px; left: 42px; }
  .home-story-page .top-area-mobile-callout--kennan-seibu { bottom: 108px; left: 0; }
  .home-story-page .top-area-mobile-callout--kennan-seibu::after { top: 0; left: 88%; --leader-length: 66px; transform: rotate(-47deg); }
  .home-story-page .top-area-mobile-callout--kennan-seibu::before { top: -51px; left: 127px; }
  .home-story-page .top-area-mobile-callout--kennan-chuo { bottom: 60px; left: 50%; transform: translateX(-50%); }
  .home-story-page .top-area-mobile-callout--kennan-chuo::after { top: 0; left: 84%; --leader-length: 98px; transform: rotate(-68deg); }
  .home-story-page .top-area-mobile-callout--kennan-chuo::before { top: -94px; left: 115px; }
  .home-story-page .top-area-mobile-callout--kennan-tobu { top: 190px; right: 0; }
  .home-story-page .top-area-mobile-callout--kennan-tobu::after { top: 100%; left: 50%; --leader-length: 46px; transform: rotate(90deg); }
  .home-story-page .top-area-mobile-callout--kennan-tobu::before { top: 77px; left: 44px; }

  .home-story-page .area-list {
    display: block;
    margin-top: 8px;
  }

  .home-story-page .area-list a {
    min-height: 64px;
  }

  .home-story-page .jobs-section {
    padding-block: 98px 110px;
  }

  .home-story-page .jobs-section::before {
    top: 36px;
    font-size: 76px;
  }

  .home-story-page .jobs-head {
    margin-bottom: 40px;
  }

  .home-story-page .pickup-card {
    grid-template-rows: 210px auto auto auto 1fr auto;
    flex-basis: min(82vw, 310px);
    width: min(82vw, 310px);
    min-height: 600px;
  }

  .home-story-page .pickup-card > img {
    height: 210px;
  }

  .home-story-page .job-carousel-button {
    width: 46px;
    height: 46px;
  }

  .home-story-page .guide-section::before {
    top: 20px;
    right: 6px;
    font-size: 64px;
  }

  .home-story-page .movie-panel {
    min-height: 570px;
    padding: 38px 22px 34px;
  }

  .home-story-page .movie-panel > h2 {
    font-size: 36px;
  }

  .home-story-page .movie-play {
    width: 76px;
    height: 76px;
  }

  .home-story-page .guide-panel {
    padding: 64px 20px 68px;
  }

  .home-story-page .guide-panel h2 {
    font-size: 31px;
  }

  .home-story-page .guide-panel > .green-button {
    width: min(100%, 240px);
    margin: 36px auto 0;
  }

  .home-story-page .info-section {
    padding: 94px 10px 104px;
  }

  .home-story-page .info-section::before {
    top: 32px;
    right: 0;
    font-size: 54px;
  }

  .home-story-page .news-panel {
    padding: 44px 18px 48px;
    border-radius: 0 28px 0 28px;
  }

  .home-story-page .news-row {
    grid-template-columns: 1fr 20px;
    gap: 4px 12px;
    min-height: 100px;
    padding: 14px 0;
  }

  .home-story-page .news-row time,
  .home-story-page .news-label {
    grid-row: 1;
  }

  .home-story-page .news-row time {
    grid-column: 1;
    align-self: center;
  }

  .home-story-page .news-label {
    grid-column: 1;
    justify-self: end;
    width: auto;
    min-width: 68px;
  }

  .home-story-page .news-row strong {
    grid-column: 1;
    grid-row: 2;
    padding-right: 4px;
    font-size: 13px;
  }

  .home-story-page .news-row::after {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
  }

  .home-story-page .instagram-panel {
    margin-top: 74px;
  }

  .home-story-page .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 8px;
  }

  .home-story-page .instagram-grid img,
  .home-story-page .instagram-grid img:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 1 / 1;
  }

  .home-story-page .instagram-grid img:nth-child(1),
  .home-story-page .instagram-grid img:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
  }

  .home-story-page .top-about-section,
  .home-story-page .top-about-inner {
    min-height: 650px;
  }

  .home-story-page .top-about-section::before {
    top: 42px;
    left: -20px;
    font-size: 190px;
    transform: none;
  }

  .home-story-page .top-about-inner {
    display: flex;
    width: calc(100% - 28px);
    flex-direction: column;
    justify-content: flex-end;
    padding: 52px 0 42px;
  }

  .home-story-page .top-about-inner > div {
    width: 100%;
    padding: 38px 24px;
    border-radius: 0 24px 0 24px;
  }

  .home-story-page .top-about-inner h2 {
    font-size: 34px;
  }

  .home-story-page .top-about-inner > a {
    width: calc(100% - 24px);
    margin: 14px auto 0;
  }

  .home-story-page .site-footer .footer-main {
    padding-top: 58px;
  }
}

@media (max-width: 370px) {
  .home-story-page .hero-copy h1 {
    font-size: 27px;
  }

  .home-story-page .hero-kicker {
    font-size: 16px;
  }

  .home-story-page .hero-script {
    font-size: 18px;
  }

  .home-story-page .hero-search,
  .home-story-page .trust-strip {
    width: calc(100% - 20px);
  }

  .home-story-page .logo-rail-head h2,
  .home-story-page .jobs-head h2,
  .home-story-page .board-head h2 {
    font-size: 27px;
  }

  .home-story-page .logo-rail-section::before {
    inset: 28px auto auto 14px;
    font-size: 46px;
  }

  .home-story-page .area-card {
    padding-inline: 14px;
  }

  .home-story-page .top-area-mobile-callout {
    font-size: 10px;
  }

  .home-story-page .top-area-mobile-callout--chuseimo::after { --leader-length: 115px; transform: rotate(81deg); }
  .home-story-page .top-area-mobile-callout--chuseimo::before { top: 145px; left: 55px; }
  .home-story-page .top-area-mobile-callout--kenpoku::after { --leader-length: 139px; transform: rotate(112deg); }
  .home-story-page .top-area-mobile-callout--kenpoku::before { top: 160px; left: -48px; }
  .home-story-page .top-area-mobile-callout--kennan-seibu::after { left: 88%; --leader-length: 54px; transform: rotate(-62deg); }
  .home-story-page .top-area-mobile-callout--kennan-seibu::before { top: -51px; left: 102px; }
  .home-story-page .top-area-mobile-callout--kennan-chuo::after { left: 84%; --leader-length: 104px; transform: rotate(-76deg); }
  .home-story-page .top-area-mobile-callout--kennan-chuo::before { top: -104px; left: 99px; }
  .home-story-page .top-area-mobile-callout--kennan-tobu::after { --leader-length: 36px; }
  .home-story-page .top-area-mobile-callout--kennan-tobu::before { top: 67px; left: 42px; }

  .home-story-page .pickup-card {
    flex-basis: 286px;
    width: 286px;
  }
}

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

  .top-motion-enabled .home-story-page .top-reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Canonical pickup records omit unanswered optional copy instead of reserving an empty row. */
.home-story-page .pickup-card--no-summary {
  grid-template-rows: 236px auto auto 1fr auto;
}

@media (max-width: 700px) {
  .home-story-page .pickup-card--no-summary {
    grid-template-rows: 210px auto auto 1fr auto;
  }

  .home-story-page .pickup-card {
    border-radius: 0 20px 0 20px;
  }
}

/* 2026-08-04 approved public search and shared job-card refinements. */
.home-story-page .hero-title-break {
  display: block;
}

.home-story-page .hero-search-area-note {
  min-height: 2.8em;
  margin: 8px 0 2px;
  color: #5d6d77;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.4;
}

.home-story-page .logo-marquee-item:is(a) {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.home-story-page .logo-marquee-item:is(a):focus-visible {
  outline: 3px solid #0d5f58;
  outline-offset: -3px;
}

.home-story-page .logo-marquee-item .company-text-logo {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: var(--story-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  overflow-wrap: anywhere;
}

.home-story-page .pickup-card {
  border-radius: 0 20px 0 20px;
}

@media (min-width: 901px) and (max-width: 1180px) {
  .home-story-page .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 350px);
    gap: 30px;
    padding-inline: 32px;
  }

  .home-story-page .hero-copy h1 {
    max-width: 600px;
    font-size: 44px;
  }

  .home-story-page .hero-kicker {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .home-story-page .hero-lead {
    max-width: 560px;
    margin-top: 18px;
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .home-story-page .pickup-card {
    border-radius: 0 14px 0 14px;
  }

  .home-story-page .instagram-grid.instagram-grid--embeds {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .home-story-page .instagram-embed-card {
    border-radius: 2px 18px 2px 18px;
  }

  .home-story-page .instagram-post-meta {
    min-height: 82px;
    padding: 14px 18px;
  }

  .home-story-page .instagram-load-more {
    margin-top: 22px;
    flex-direction: column;
    gap: 8px;
  }

  .home-story-page .instagram-load-more-button {
    width: min(100%, 320px);
  }
}

/* 2026-07-18 mobile map leaders and news metadata alignment. */
@media (max-width: 700px) {
  .home-story-page .top-area-mobile-callout--kennan-chuo::after {
    left: 88%;
    --leader-length: 102px;
    transform: rotate(-59deg);
  }

  .home-story-page .top-area-mobile-callout--kennan-chuo::before {
    top: -91px;
    left: 132px;
  }

  .home-story-page .top-area-mobile-callout--kennan-tobu::after {
    left: 32%;
    --leader-length: 26px;
    transform: rotate(90deg);
  }

  .home-story-page .top-area-mobile-callout--kennan-tobu::before {
    top: 60px;
    left: 32px;
  }

  .home-story-page .news-row {
    grid-template-columns: auto minmax(0, 1fr) 20px;
    gap: 7px 12px;
  }

  .home-story-page .news-row time {
    grid-column: 1;
    grid-row: 1;
  }

  .home-story-page .news-row .news-label {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
  }

  .home-story-page .news-row strong {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .home-story-page .news-row::after {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
}

/* Local concept: present the association movie as an editorial feature, not a bare embed. */
.home-story-page .guide-section {
  display: block;
  padding: clamp(72px, 8vw, 118px) clamp(20px, 4vw, 56px) clamp(82px, 9vw, 132px);
  background:
    radial-gradient(circle at 8% 8%, rgba(244, 203, 73, 0.22), transparent 29%),
    linear-gradient(180deg, #f4f1e8 0%, #e7ede2 100%);
}

.home-story-page .guide-section::before {
  top: 30px;
  right: clamp(20px, 4vw, 58px);
  content: "仕事紹介映像";
  color: transparent;
  font-size: clamp(68px, 8vw, 126px);
  font-weight: 700;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 1px rgba(24, 52, 77, 0.08);
}

.home-story-page .movie-feature {
  isolation: isolate;
  display: block;
  width: min(100%, 1320px);
  min-height: 0;
  max-height: none;
  margin: 0 auto;
  padding: clamp(42px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 58px 0 58px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 0%, rgba(53, 112, 112, 0.45), transparent 36%),
    radial-gradient(circle at 0% 100%, rgba(244, 203, 73, 0.12), transparent 30%),
    linear-gradient(145deg, #102737 0%, #17384a 52%, #0b202e 100%);
  box-shadow: 0 34px 80px rgba(20, 44, 58, 0.2);
}

.home-story-page .movie-feature::before {
  position: absolute;
  top: 0;
  right: clamp(28px, 7vw, 110px);
  z-index: -1;
  width: 1px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), transparent 72%);
}

.home-story-page .movie-feature-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr);
  align-items: end;
  gap: 36px clamp(44px, 7vw, 108px);
}

.home-story-page .movie-feature-title .movie-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #f8d86f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.home-story-page .movie-feature-title .movie-eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.home-story-page .movie-feature-title h2 {
  margin: 0;
  color: #fff;
  font-family: var(--site-font);
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.home-story-page .movie-feature-title h2 span {
  display: block;
}

.home-story-page .movie-feature-lead {
  max-width: 520px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 2;
}

.home-story-page .movie-feature-stage {
  position: relative;
  z-index: 2;
  aspect-ratio: 16 / 9;
  margin-top: clamp(38px, 5vw, 62px);
  border-radius: 2px 34px 2px 34px;
  background: #07141d;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.34);
}

.home-story-page .movie-feature-stage::before {
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(248, 216, 111, 0.48);
  border-radius: 2px 40px 2px 40px;
  content: "";
  pointer-events: none;
}

.home-story-page .movie-feature .movie-embed {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background: #07141d;
}

.home-story-page .movie-feature .movie-embed::after {
  display: block;
  background:
    linear-gradient(90deg, rgba(5, 20, 29, 0.56) 0%, transparent 54%),
    linear-gradient(0deg, rgba(5, 20, 29, 0.72) 0%, transparent 50%);
}

.home-story-page .movie-feature .movie-youtube img {
  object-fit: cover;
  filter: saturate(0.9) brightness(0.78) contrast(1.05);
  transform: scale(1.075);
}

.home-story-page .movie-feature .movie-youtube:hover img {
  filter: saturate(1) brightness(0.84) contrast(1.06);
  transform: scale(1.095);
}

.home-story-page .movie-feature .movie-play {
  width: clamp(86px, 8vw, 118px);
  height: clamp(86px, 8vw, 118px);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(244, 203, 73, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.home-story-page .movie-feature .movie-play::before {
  width: 20px;
  height: 28px;
  background: #102737;
}

.home-story-page .movie-feature .movie-play > span {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 120px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
  transform: translateX(-50%);
}

.home-story-page .movie-feature-stage-copy {
  position: absolute;
  bottom: clamp(24px, 4vw, 52px);
  left: clamp(24px, 4vw, 52px);
  z-index: 4;
  display: grid;
  gap: 7px;
  max-width: 42%;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.home-story-page .movie-feature-stage-copy span {
  color: #f8d86f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.home-story-page .movie-feature-stage-copy strong {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1.4;
}

.home-story-page .movie-feature-corner {
  position: absolute;
  top: clamp(20px, 3vw, 36px);
  right: clamp(20px, 3vw, 36px);
  z-index: 4;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: #fff;
  background: rgba(7, 20, 29, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.home-story-page .movie-feature-stage:has(iframe) .movie-feature-stage-copy,
.home-story-page .movie-feature-stage:has(iframe) .movie-feature-corner {
  opacity: 0;
}

.home-story-page .movie-feature .movie-embed.is-playing::after,
.home-story-page .movie-feature .movie-embed:has(iframe)::after {
  display: none;
}

.home-story-page .movie-feature-foot {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.home-story-page .movie-feature-chapters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.home-story-page .movie-feature-chapter {
  position: relative;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
  min-height: 78px;
  padding: 10px 12px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.home-story-page .movie-feature-chapter:first-child {
  border-left: 0;
}

.home-story-page .movie-feature-chapter:hover,
.home-story-page .movie-feature-chapter:focus-visible,
.home-story-page .movie-feature-chapter.is-current {
  background: rgba(248, 216, 111, 0.1);
}

.home-story-page .movie-feature-chapter:focus-visible {
  z-index: 1;
  outline: 2px solid #f8d86f;
  outline-offset: -2px;
}

.home-story-page .movie-feature-chapter-thumb {
  position: relative;
  display: block;
  width: 68px;
  height: 42px;
  overflow: hidden;
  border-radius: 1px 7px 1px 7px;
}

.home-story-page .movie-feature-chapter-thumb::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(255, 255, 255, 0.94);
  content: "";
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
  transform: translate(-35%, -50%);
}

.home-story-page .movie-feature-chapter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
  transition: filter 0.2s ease, transform 0.35s ease;
}

.home-story-page .movie-feature-chapter:hover img,
.home-story-page .movie-feature-chapter:focus-visible img,
.home-story-page .movie-feature-chapter.is-current img {
  filter: saturate(1);
  transform: scale(1.04);
}

.home-story-page .movie-feature-chapter-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.home-story-page .movie-feature-chapter-copy small {
  color: #f8d86f;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.home-story-page .movie-feature-chapter-copy strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
}

.home-story-page .guide-panel {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(0, 1.15fr);
  grid-template-areas:
    "kicker links"
    "title links"
    "copy links"
    "button links";
  gap: 0 clamp(46px, 7vw, 104px);
  width: min(100%, 1320px);
  margin: 30px auto 0;
  padding: clamp(42px, 5vw, 66px);
  border: 1px solid rgba(24, 52, 77, 0.1);
  border-radius: 0 40px 0 40px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: 0 20px 48px rgba(24, 52, 77, 0.08);
}

.home-story-page .guide-panel > .leaf {
  display: none;
}

.home-story-page .guide-panel > .section-kicker {
  grid-area: kicker;
}

.home-story-page .guide-panel > h2 {
  grid-area: title;
  font-size: clamp(30px, 3vw, 40px);
  letter-spacing: -0.025em;
  overflow-wrap: normal;
  white-space: nowrap;
  word-break: keep-all;
}

.home-story-page .guide-panel > p {
  grid-area: copy;
  font-size: 15px;
}

.home-story-page .guide-links {
  grid-area: links;
  align-self: stretch;
  margin: 0;
}

.home-story-page .guide-panel > .green-button {
  grid-area: button;
  justify-self: start;
  margin: 34px 0 0;
}

@media (max-width: 980px) {
  .home-story-page .movie-feature-head {
    grid-template-columns: 1fr;
  }

  .home-story-page .movie-feature-lead {
    max-width: 720px;
  }

  .home-story-page .guide-panel {
    display: block;
  }

  .home-story-page .guide-links {
    margin-top: 34px;
  }
}

@media (max-width: 1100px) {
  .home-story-page .movie-feature-chapters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-story-page .movie-feature-chapter:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-story-page .movie-feature-chapter:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .home-story-page .guide-section {
    padding: 58px 14px 74px;
  }

  .home-story-page .guide-section::before {
    top: 18px;
    right: 8px;
    font-size: 50px;
  }

  .home-story-page .movie-feature {
    padding: 34px 18px 26px;
    border-radius: 0 30px 0 30px;
  }

  .home-story-page .movie-feature-head {
    gap: 20px;
  }

  .home-story-page .movie-feature-title .movie-eyebrow {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.7;
  }

  .home-story-page .movie-feature-title .movie-eyebrow::before {
    flex: 0 0 24px;
    margin-top: 9px;
  }

  .home-story-page .movie-feature-title h2 {
    font-size: 38px;
  }

  .home-story-page .movie-feature-lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .home-story-page .movie-feature-stage {
    margin-top: 32px;
    border-radius: 1px 19px 1px 19px;
  }

  .home-story-page .movie-feature-stage::before {
    inset: -6px;
    border-radius: 1px 23px 1px 23px;
  }

  .home-story-page .movie-feature .movie-play {
    width: 70px;
    height: 70px;
  }

  .home-story-page .movie-feature .movie-play::before {
    width: 15px;
    height: 21px;
  }

  .home-story-page .movie-feature .movie-play > span {
    top: calc(100% + 8px);
    font-size: 10px;
  }

  .home-story-page .movie-feature-stage-copy {
    bottom: 16px;
    left: 16px;
    max-width: 62%;
  }

  .home-story-page .movie-feature-stage-copy span {
    display: none;
  }

  .home-story-page .movie-feature-stage-copy strong {
    font-size: 17px;
  }

  .home-story-page .movie-feature-corner {
    top: 12px;
    right: 12px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .home-story-page .movie-feature-foot {
    margin-top: 26px;
  }

  .home-story-page .movie-feature-chapters {
    grid-template-columns: 1fr;
  }

  .home-story-page .movie-feature-chapter {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 74px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .home-story-page .movie-feature-chapter:first-child {
    border-top: 0;
  }

  .home-story-page .movie-feature-chapter-thumb {
    width: 92px;
    height: 52px;
  }

  .home-story-page .guide-panel {
    margin-top: 18px;
    padding: 38px 22px 42px;
    border-radius: 0 25px 0 25px;
  }

  .home-story-page .guide-panel > h2 {
    font-size: clamp(23px, 7.4vw, 31px);
  }

  .home-story-page .guide-panel > p {
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-story-page .movie-feature .movie-youtube img,
  .home-story-page .movie-feature .movie-play,
  .home-story-page .movie-feature-stage-copy,
  .home-story-page .movie-feature-corner,
  .home-story-page .movie-feature-chapter,
  .home-story-page .movie-feature-chapter img {
    transition: none;
  }
}
