:root {
  --navy: #0d2f4f;
  --navy-2: #174465;
  --text: #18283a;
  --muted: #6a7887;
  --green: #3f8f4f;
  --green-2: #91bf7b;
  --soft-green: #edf6e8;
  --cream: #fffaf0;
  --yellow: #ffc928;
  --yellow-2: #f6ad0b;
  --line: #dfe8dc;
  --panel: rgba(255, 255, 255, 0.94);
  --shadow: 0 18px 42px rgba(44, 67, 35, 0.12);
  --soft-shadow: 0 10px 24px rgba(44, 67, 35, 0.08);
  --content: min(100% - 64px, 1280px);
  --font-ui: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-hand: "Klee One", "Yomogi", cursive;
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 0 16%, rgba(255, 201, 40, 0.18), transparent 24%),
    radial-gradient(circle at 100% 30%, rgba(255, 201, 40, 0.11), transparent 24%),
    radial-gradient(circle at 100% 72%, rgba(137, 185, 122, 0.09), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 48%, #fffdf7 100%);
  font-family: var(--font-body);
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 64px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(11, 43, 74, 0.08);
  box-shadow: 0 8px 24px rgba(13, 42, 67, 0.05);
  backdrop-filter: blur(14px);
}

.brand {
  min-width: 244px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand--wordmark {
  min-width: 278px;
  gap: 0;
}

.brand-logo-img {
  width: min(100%, 278px);
  height: auto;
}

.brand--footer .brand-logo-img {
  width: min(100%, 330px);
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    conic-gradient(from 12deg, var(--yellow) 0 38deg, transparent 38deg 58deg, var(--yellow) 58deg 96deg, transparent 96deg 118deg, var(--yellow) 118deg 156deg, transparent 156deg 180deg, var(--yellow) 180deg 218deg, transparent 218deg 238deg, var(--yellow) 238deg 276deg, transparent 276deg 300deg, var(--yellow) 300deg 338deg, transparent 338deg 360deg);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: #fff;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.16;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.brand-copy small {
  color: #51606c;
  font-size: 11px;
  font-weight: 600;
}

.global-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: #1e3043;
  font-size: 13px;
  font-weight: 600;
}

.global-nav a {
  white-space: nowrap;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.favorite-link {
  min-height: 46px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(11, 43, 74, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}

.favorite-link span {
  width: 19px;
  height: 17px;
  display: block;
  border: 2px solid #263d52;
  border-top: 0;
  transform: rotate(-45deg);
  border-radius: 0 0 8px 8px;
}

.header-cta,
.green-button,
.hero-search button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  white-space: nowrap;
}

.header-cta {
  padding: 0 20px;
  background: linear-gradient(180deg, #ffd24a, var(--yellow));
  color: #142b3e;
  font-size: 13px;
  box-shadow: 0 8px 18px rgba(248, 189, 39, 0.24);
}

.hero-section {
  position: relative;
  z-index: 2;
  min-height: 548px;
  padding: 64px 0 0;
  overflow: visible;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 24% 44%, rgba(255, 255, 255, 0.42) 0 20%, rgba(255, 255, 255, 0.12) 48%, transparent 70%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.52) 38%, rgba(255, 255, 255, 0.16) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 70%, #fffaf0 100%);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-inner {
  width: var(--content);
  margin: 0 auto;
  min-height: 432px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 268px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  position: relative;
}

.guide-panel::after,
.site-footer::before {
  content: "";
  position: absolute;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 42%, var(--green-2) 44% 49%, transparent 51%);
  opacity: 0.34;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(650px, 100%);
  padding-top: 0;
  padding-left: 48px;
  transform: translateY(-38px);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: -28px -42px -28px 18px;
  z-index: -1;
  border-radius: 34px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 64%, rgba(255, 255, 255, 0) 100%);
  filter: blur(18px);
}

.hero-copy::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 72px;
  left: -6px;
  top: -28px;
  pointer-events: none;
  opacity: 0.82;
  background:
    radial-gradient(ellipse 16px 8px at 16px 18px, rgba(138, 187, 122, 0.72) 0 68%, transparent 70%),
    radial-gradient(ellipse 17px 8px at 36px 11px, rgba(138, 187, 122, 0.62) 0 68%, transparent 70%),
    radial-gradient(ellipse 15px 8px at 58px 18px, rgba(138, 187, 122, 0.55) 0 68%, transparent 70%),
    radial-gradient(ellipse 15px 8px at 76px 31px, rgba(138, 187, 122, 0.45) 0 68%, transparent 70%),
    linear-gradient(115deg, transparent 10%, rgba(138, 187, 122, 0.55) 11% 13%, transparent 14%);
  transform: rotate(-16deg);
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-hand);
  font-size: 39px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow:
    0.18px 0 currentColor,
    0 0.18px currentColor;
}

.hero-script {
  width: max-content;
  margin: 14px 0 14px 2px;
  padding-bottom: 4px;
  color: #142339;
  font-family: var(--font-hand);
  font-size: 24px;
  line-height: 1.2;
  border-bottom: 4px solid rgba(248, 189, 39, 0.82);
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 525px;
  margin: 0;
  color: #314253;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
}

.hero-search {
  width: 292px;
  justify-self: end;
  margin-top: -16px;
  padding: 26px;
  display: grid;
  gap: 14px;
  border-radius: 24px;
  border: 1px solid rgba(11, 43, 74, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-search h2 {
  margin: 0 0 5px;
  color: #1e2e3d;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.hero-search label {
  position: relative;
  display: grid;
  gap: 0;
}

.hero-search label::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 2px solid var(--green);
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-search label:nth-of-type(1)::before {
  border-radius: 50% 50% 50% 0;
  transform: translateY(-55%) rotate(-45deg);
}

.hero-search label:nth-of-type(2)::before {
  border-radius: 5px 5px 3px 3px;
}

.hero-search label:nth-of-type(3)::before {
  border-radius: 50%;
}

.hero-search label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero-search select {
  width: 100%;
  min-height: 42px;
  padding: 0 38px 0 40px;
  border: 1px solid #e0e9de;
  border-radius: 8px;
  background: #fff;
  color: #23364a;
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #2e6340 50%),
    linear-gradient(135deg, #2e6340 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 19px,
    calc(100% - 15px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.hero-search button {
  margin-top: 4px;
  width: 100%;
  min-height: 50px;
  cursor: pointer;
  background: linear-gradient(180deg, #ffd84f 0%, var(--yellow) 100%);
  color: #18283a;
  box-shadow: 0 12px 22px rgba(248, 189, 39, 0.28);
}

.trust-strip {
  position: absolute;
  left: 50%;
  bottom: -44px;
  z-index: 2;
  width: min(100% - 68px, 1080px);
  min-height: 88px;
  margin: 0;
  padding: 16px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(33, 55, 37, 0.12);
  transform: translateX(-50%);
}

.trust-strip div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  border-right: 1px solid #e6ebdf;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #fff8dc;
  border: 1px solid #f4df9d;
  position: relative;
}

.trust-icon::before,
.trust-icon::after {
  content: "";
  position: absolute;
}

.trust-icon--doc::before {
  width: 20px;
  height: 25px;
  left: 14px;
  top: 12px;
  border: 3px solid #5f98bd;
  border-radius: 4px;
}

.trust-icon--people::before,
.trust-icon--people::after {
  width: 12px;
  height: 12px;
  top: 12px;
  border-radius: 50%;
  background: #75a86b;
}

.trust-icon--people::before {
  left: 12px;
}

.trust-icon--people::after {
  right: 12px;
}

.trust-icon--life::before {
  width: 24px;
  height: 24px;
  left: 13px;
  top: 13px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
}

.trust-strip strong {
  color: #1e2f3d;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.65;
}

.area-section,
.jobs-section,
.logo-rail-section,
.guide-section,
.info-section {
  position: relative;
  isolation: isolate;
  width: var(--content);
  margin: 0 auto;
}

.area-section {
  padding: 18px 0 2px;
}

.area-section::before,
.jobs-section::before,
.logo-rail-section::before,
.guide-section::before,
.info-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  pointer-events: none;
}

.area-section::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92) 0%, rgba(255, 253, 247, 0.82) 58%, rgba(255, 248, 222, 0.54) 100%);
}

.jobs-section::before,
.info-section::before {
  background: rgba(255, 253, 247, 0.82);
}

.logo-rail-section::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 248, 222, 0.66) 50%, rgba(247, 251, 239, 0.7) 100%);
}

.guide-section::before {
  background:
    linear-gradient(180deg, rgba(255, 248, 222, 0.54) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.section-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.area-card {
  min-height: 500px;
  padding: 26px 0 20px;
  display: grid;
  grid-template-columns: 230px 1fr 262px;
  gap: 46px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.area-card::before {
  display: none;
}

.area-copy,
.saitama-map,
.area-list {
  position: relative;
  z-index: 1;
}

.leaf {
  width: 24px;
  height: 30px;
  display: inline-block;
  margin-bottom: 8px;
  position: relative;
}

.leaf::before,
.leaf::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 20px;
  border-radius: 12px 0 12px 0;
  background: #88b979;
}

.leaf::before {
  left: 4px;
  top: 1px;
  transform: rotate(-30deg);
}

.leaf::after {
  left: 10px;
  top: 8px;
  transform: rotate(28deg);
}

.area-copy h2,
.jobs-head h2,
.logo-rail-head h2,
.movie-panel h2,
.guide-panel h2,
.news-panel h2,
.instagram-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.32;
}

.area-copy p,
.movie-panel p,
.guide-panel p {
  margin: 14px 0 28px;
  color: #405364;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.green-button {
  min-height: 38px;
  padding: 0 20px;
  width: fit-content;
  background: var(--yellow);
  color: var(--navy);
  font-size: 13px;
  box-shadow: 0 12px 22px rgba(246, 173, 11, 0.2);
}

.saitama-map {
  min-height: 400px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.saitama-map::before {
  content: "埼玉県";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 0;
  color: rgba(23, 68, 101, 0.09);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
  transform: translate(-50%, -50%);
}

.saitama-map::after {
  content: "";
  position: absolute;
  inset: 12px 4px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(circle at 18% 34%, #7ca77f 0 3px, transparent 4px),
    radial-gradient(circle at 73% 28%, #7ca77f 0 3px, transparent 4px),
    radial-gradient(circle at 64% 78%, #7ca77f 0 3px, transparent 4px),
    linear-gradient(25deg, transparent 0 41%, rgba(105, 139, 151, 0.18) 41.2% 42%, transparent 42.2% 100%),
    linear-gradient(155deg, transparent 0 47%, rgba(105, 139, 151, 0.16) 47.2% 48%, transparent 48.2% 100%);
}

.map-badge {
  position: absolute;
  left: 50%;
  top: 16px;
  z-index: 3;
  min-height: 30px;
  min-width: 132px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2f6d43;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(33, 55, 37, 0.1);
  transform: translateX(-50%);
}

.saitama-map svg {
  width: min(100%, 650px);
  height: auto;
  aspect-ratio: 650 / 380;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 22px rgba(44, 77, 50, 0.14));
}

.map-region {
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 5;
  transition: filter 160ms ease;
}

.map-label-svg {
  cursor: pointer;
}

.map-label-svg rect {
  fill: rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 7px 13px rgba(33, 55, 37, 0.16));
}

.map-label-svg text {
  fill: #203244;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  text-anchor: middle;
  dominant-baseline: middle;
  pointer-events: none;
}

.map-city {
  color: #18324b;
  pointer-events: none;
  opacity: 0.9;
}

.map-city circle {
  fill: #ffffff;
  stroke: #d8a72b;
  stroke-width: 3;
  filter: drop-shadow(0 4px 8px rgba(63, 65, 46, 0.2));
}

.map-city text {
  fill: currentColor;
  font-family: var(--font-ui);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  paint-order: stroke;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 4px;
  stroke-linejoin: round;
}

.region-north,
.region-kenpoku {
  fill: #dce8a9;
}

.region-west,
.region-kennan-seibu {
  fill: #cbe4b4;
}

.region-saitama,
.region-central,
.region-kennan-chuo {
  fill: #f6d16f;
}

.region-east,
.region-kennan-tobu {
  fill: #f3b3a9;
}

.region-south,
.region-chichibu {
  fill: #c9c1eb;
}

.region-chuseimo {
  fill: #b9d9dd;
}

.area-list {
  align-self: center;
  min-height: 304px;
  padding: 30px 28px;
  border: 1px solid #e4ecdf;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 28px rgba(40, 72, 47, 0.08);
}

.area-list h3 {
  margin: 0 0 14px;
  color: #2a603b;
  font-size: 15px;
  font-weight: 700;
}

.area-list a {
  min-height: 48px;
  padding: 8px 22px 8px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  border-bottom: 1px solid #edf1e8;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.area-list a::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  color: #bd7d00;
}

.area-list a span {
  display: block;
  max-width: 100%;
  color: #637487;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.jobs-section {
  padding: 24px 0 58px;
}

.jobs-head {
  margin-bottom: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.jobs-head .leaf {
  margin-bottom: 10px;
}

.jobs-head h2 {
  margin: 0;
}

.jobs-head p {
  margin: 12px 0 0;
  color: #405364;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.jobs-head > a {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dfe8dc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: #2c6d41;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.job-carousel {
  position: relative;
  --carousel-gutter: 72px;
  --carousel-arrow-inset: 20px;
}

.job-carousel::before,
.job-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 4;
  width: var(--carousel-gutter);
  height: 100%;
  pointer-events: none;
}

.job-carousel::before {
  left: calc((100vw - 100%) / -2);
  background: linear-gradient(90deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0));
}

.job-carousel::after {
  right: calc((100vw - 100%) / -2);
  width: calc(var(--carousel-gutter) + 24px);
  background: linear-gradient(270deg, rgba(255, 253, 247, 0.96), rgba(255, 253, 247, 0));
}

.job-carousel-viewport {
  margin: 0 calc(50% - 50vw);
  padding: 6px calc(50vw - 50% + var(--carousel-gutter)) 26px;
  overflow-x: auto;
  scroll-padding-inline: calc(50vw - 50% + var(--carousel-gutter));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

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

.job-carousel-track {
  width: max-content;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(360px, 30vw, 410px);
  gap: 22px;
}

.job-carousel-track::after {
  content: "";
  width: 1px;
}

.pickup-card {
  scroll-snap-align: start;
  min-height: 258px;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(148px, 38%) 1fr;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 8px 18px;
  align-items: start;
  border: 1px solid #e3eadc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(44, 67, 35, 0.08);
}

.pickup-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  grid-row: 1 / 6;
  border-radius: 7px;
}

.pickup-badge {
  width: fit-content;
  min-height: 24px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff2c4;
  color: #9a6c00;
  font-size: 11px;
  font-weight: 700;
}

.pickup-badge--new {
  background: #ffe6c8;
  color: #9b4d00;
}

.pickup-badge--updated {
  background: #e4f2d8;
  color: #2d6f3f;
}

.pickup-card strong {
  margin-top: 2px;
  color: #243648;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.pickup-role {
  color: #2f6d43;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.pickup-summary {
  margin: 0;
  color: #9a6c00;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.pickup-meta {
  margin: 6px 0 0;
  display: grid;
  border-top: 1px solid #e8efe2;
}

.pickup-meta div {
  min-height: 34px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #e8efe2;
}

.pickup-meta dt {
  color: #6f8170;
  font-size: 11px;
  font-weight: 700;
}

.pickup-meta dd {
  margin: 0;
  color: #283d4f;
  font-size: 13px;
  font-weight: 700;
}

.pickup-cta {
  min-height: 34px;
  width: fit-content;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(246, 173, 11, 0.18);
}

.job-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border: 1px solid rgba(210, 224, 201, 0.9);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(44, 67, 35, 0.14);
  transform: translateY(-50%);
}

.job-carousel-button:hover,
.job-carousel-button:focus-visible {
  border-color: rgba(246, 190, 39, 0.72);
  background: #fff8df;
}

.job-carousel-button:focus-visible {
  outline: 3px solid rgba(246, 190, 39, 0.28);
  outline-offset: 3px;
}

.job-carousel-button:disabled {
  opacity: 0.38;
  cursor: default;
}

.job-carousel-button.is-hidden {
  display: none !important;
}

.job-carousel-button::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 17px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #2f6d43;
  border-right: 2px solid #2f6d43;
}

.job-carousel-button--prev {
  left: calc((100vw - 100%) / -2 + var(--carousel-arrow-inset));
}

.job-carousel-button--prev::before {
  transform: rotate(-135deg);
}

.job-carousel-button--next {
  right: calc((100vw - 100%) / -2 + var(--carousel-arrow-inset));
}

.job-carousel-button--next::before {
  left: 15px;
  transform: rotate(45deg);
}

.logo-rail-section {
  padding: 58px 0 22px;
  overflow: hidden;
}

.logo-rail-head {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.logo-rail-head .leaf {
  margin-bottom: 10px;
}

.logo-rail-head h2 {
  margin: 0;
}

.logo-rail-head p {
  margin: 10px 0 0;
  color: #405364;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.logo-rail-head > a {
  min-height: 40px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dfe8dc;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: #2c6d41;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.logo-marquee {
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.logo-marquee + .logo-marquee {
  margin-top: 10px;
}

.logo-marquee-track {
  width: max-content;
  display: flex;
  animation: logo-marquee 96s linear infinite;
}

.logo-marquee--bottom .logo-marquee-track {
  animation-duration: 112s;
  animation-delay: -36s;
  animation-direction: reverse;
}

.logo-marquee:hover .logo-marquee-track,
.logo-marquee:focus-within .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-set {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.logo-marquee-item {
  width: 182px;
  height: 66px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(211, 224, 205, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(53, 75, 44, 0.07);
}

.logo-marquee-item img {
  max-width: 142px;
  max-height: 40px;
  object-fit: contain;
}

.logo-marquee-item:focus-visible {
  outline: 3px solid rgba(52, 125, 70, 0.28);
  outline-offset: 4px;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.movie-panel,
.guide-panel,
.news-panel,
.instagram-panel {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.board-head {
  min-height: 42px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid #e9efe5;
}

.board-head h2 {
  font-size: 19px;
  white-space: nowrap;
}

.board-head a {
  padding-top: 5px;
  color: #327a47;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.job-row {
  min-height: 96px;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid #edf1e8;
}

.job-row:last-child {
  border-bottom: 0;
}

.job-row img {
  width: 72px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.job-row strong {
  display: block;
  color: #243648;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.38;
}

.job-row p {
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.job-row span {
  min-height: 18px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ecf3fb;
  color: #315d89;
  font-size: 10px;
  font-weight: 700;
}

.job-row small {
  color: #738293;
  font-size: 11px;
  font-weight: 600;
}

.guide-section {
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1.36fr 0.64fr;
  gap: 50px;
  align-items: stretch;
}

.movie-panel,
.guide-panel {
  min-height: 520px;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.movie-thumb {
  position: relative;
  margin: 28px 0 24px;
  height: 382px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 22px 46px rgba(29, 54, 35, 0.15);
}

.movie-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 32, 54, 0.18), transparent);
}

.movie-thumb button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
  box-shadow: 0 16px 28px rgba(8, 32, 52, 0.22);
}

.movie-thumb button::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--green);
}

.guide-panel {
  background: transparent;
}

.guide-panel::after {
  width: 150px;
  height: 88px;
  right: -28px;
  top: 0;
  transform: rotate(25deg);
}

.guide-links {
  margin: 28px 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}

.guide-links a {
  min-height: 58px;
  padding: 11px 14px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid #edf0e6;
  border-radius: 8px;
  background: #fff;
  color: #243648;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 8px 18px rgba(33, 55, 37, 0.06);
}

.guide-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid #f0d27b;
  border-radius: 10px;
  background: #fff5d5;
  color: #8b6500;
  font-size: 11px;
  font-weight: 900;
  position: relative;
}

.guide-icon::before {
  content: "";
  position: static;
  border: 0;
}

.icon-car::before {
  content: "基礎";
}

.icon-clock::before {
  content: "流れ";
}

.icon-beginner::before {
  content: "初";
}

.icon-money::before {
  content: "収入";
}

.icon-question::before {
  content: "Q&A";
}

.info-section {
  padding: 58px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.news-panel,
.instagram-panel {
  min-height: 410px;
  padding: 0;
}

.news-row {
  min-height: 64px;
  display: grid;
  grid-template-columns: 92px 80px 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid #edf1e8;
}

.news-row:last-child {
  border-bottom: 0;
}

.news-row time {
  color: #4f6478;
  font-size: 13px;
  font-weight: 700;
}

.news-row span {
  min-height: 24px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff2c4;
  color: #8b6500;
  font-size: 11px;
  font-weight: 700;
}

.news-row .news-label--jobs {
  background: #e5f3d9;
  color: #2d6f3f;
}

.news-row .news-label--guide {
  background: #e8f0ff;
  color: #315d89;
}

.news-row strong {
  color: #293a4c;
  font-size: 14px;
  font-weight: 700;
}

.instagram-grid {
  padding-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.instagram-grid img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(33, 55, 37, 0.08);
}

.site-footer {
  position: relative;
  margin-top: 68px;
  padding: 48px 0 24px;
  background:
    linear-gradient(180deg, #f7fbf3 0%, #ffffff 100%);
  border-top: 1px solid #e3eadc;
}

.site-footer::before {
  width: 100%;
  height: 70px;
  left: 0;
  bottom: 0;
  opacity: 0.18;
}

.footer-main {
  width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.72fr 0.88fr;
  gap: 42px;
}

.brand--footer {
  min-width: 0;
}

.footer-main p,
.footer-main address,
.footer-main a {
  color: #3f5060;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.62;
  font-style: normal;
}

.footer-main p {
  margin: 8px 0;
}

.footer-main address {
  margin: 0;
}

.footer-phone {
  display: inline-block;
  margin-top: 6px;
  color: var(--navy) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}

.footer-map-link {
  width: fit-content;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.45;
}

.footer-map-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 47, 79, 0.18);
  border-radius: 999px;
  font-size: 9px;
  line-height: 1;
}

.footer-map-link + .footer-phone {
  display: block;
  margin-top: 4px;
}

.footer-main nav {
  display: grid;
  align-content: start;
  gap: 5px;
}

.footer-main h3 {
  margin: 0 0 8px;
  color: #2f6d43;
  font-size: 14px;
  font-weight: 700;
}

.footer-bottom {
  width: var(--content);
  min-height: 42px;
  margin: 12px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #71808f;
  font-size: 12px;
  font-weight: 700;
}

.footer-bottom a {
  position: absolute;
  right: 0;
  top: 5px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 20px rgba(50, 122, 71, 0.2);
}

.footer-bottom a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}

@media (max-width: 1040px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    min-width: 224px;
  }

  .global-nav {
    gap: 16px;
    font-size: 12px;
  }

  .favorite-link {
    display: none;
  }

  .header-cta {
    min-width: 116px;
  }

  .area-card {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 34px;
  }

  .saitama-map {
    min-height: 360px;
  }

  .area-list {
    grid-column: 1 / -1;
    min-height: 0;
    padding: 22px 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px 16px;
    align-self: stretch;
  }

  .area-list h3 {
    grid-column: 1 / -1;
    margin-bottom: 2px;
  }

  .area-list a {
    min-height: 54px;
    padding: 9px 26px 9px 12px;
    border: 1px solid #edf1e8;
    border-radius: 12px;
    background: #fff;
  }

  .area-list a::after {
    right: 12px;
  }
}

@media (max-width: 1160px) {
  .global-nav {
    justify-content: flex-end;
    gap: 14px;
  }

  .global-nav a:nth-child(n + 3) {
    display: none;
  }

  .favorite-link {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .trust-strip {
    width: min(100% - 36px, 1080px);
    padding: 16px 20px;
  }

  .trust-strip div {
    gap: 10px;
    padding: 0 12px;
  }

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

@media (max-width: 760px) {
  :root {
    --content: min(100% - 28px, 720px);
  }

  .site-header {
    height: auto;
    min-height: 88px;
    padding: 14px;
    flex-wrap: wrap;
    gap: 14px;
  }

  .brand {
    min-width: 0;
  }

  .global-nav {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
    overflow: visible;
    gap: 8px;
    padding-bottom: 0;
  }

  .global-nav a {
    min-height: 34px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e4ebdd;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .global-nav a:nth-child(n + 4) {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .favorite-link {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.34) 54%, rgba(255, 250, 240, 0.42) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08));
  }

  .hero-bg img {
    object-position: 76% center;
  }

  .hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    width: auto;
    max-width: none;
    transform: none;
  }

  .hero-copy h1 {
    font-size: 42px;
    white-space: normal;
  }

  .hero-script {
    width: auto;
    font-size: 24px;
  }

  .hero-search {
    width: min(100%, 420px);
    max-width: 420px;
  }

  .trust-strip {
    position: relative;
    left: auto;
    bottom: auto;
    width: var(--content);
    margin: 18px auto 0;
    grid-template-columns: 1fr;
    border-radius: 18px;
    transform: none;
    padding: 18px;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid #e6ebdf;
    padding: 8px;
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .area-card,
  .guide-section,
  .info-section,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .area-section {
    padding: 18px 0 0;
  }

  .jobs-section,
  .logo-rail-section,
  .guide-section,
  .info-section {
    padding: 46px 0;
  }

  .logo-rail-section {
    padding: 46px 0 22px;
  }

  .jobs-section {
    padding: 20px 0 46px;
  }

  .area-card {
    min-height: auto;
    padding: 18px 0 12px;
    gap: 30px;
  }

  .area-list {
    display: block;
    padding: 30px 28px;
  }

  .area-list a {
    min-height: 48px;
    padding: 8px 24px 8px 0;
    border: 0;
    border-bottom: 1px solid #edf1e8;
    border-radius: 0;
    background: transparent;
  }

  .area-list a span {
    white-space: normal;
    text-align: center;
  }

  .guide-section,
  .info-section {
    gap: 36px;
  }

  .guide-section {
    grid-template-columns: 1fr;
  }

  .jobs-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .logo-rail-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .job-carousel::before,
  .job-carousel::after {
    display: none;
  }

  .job-carousel-viewport {
    margin: 0 -14px;
    padding: 6px 14px 24px;
    scroll-padding-inline: 14px;
  }

  .job-carousel-track {
    grid-auto-columns: minmax(278px, calc(100vw - 54px));
    gap: 16px;
  }

  .job-carousel-button {
    display: none;
  }

  .pickup-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pickup-card img {
    min-height: 0;
    height: 142px;
    grid-row: auto;
  }

  .pickup-meta div {
    grid-template-columns: 66px 1fr;
  }

  .logo-marquee-item {
    width: 150px;
    height: 68px;
    padding: 10px 14px;
  }

  .logo-marquee-item img {
    max-width: 120px;
    max-height: 40px;
  }

  .movie-panel,
  .guide-panel,
  .news-panel,
  .instagram-panel {
    min-height: auto;
  }

  .saitama-map {
    min-height: 260px;
    overflow: visible;
  }

  .guide-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-copy strong {
    font-size: 16px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.85;
  }

  .hero-search {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .area-copy h2,
  .jobs-head h2,
  .logo-rail-head h2,
  .movie-panel h2,
  .guide-panel h2,
  .news-panel h2,
  .instagram-panel h2 {
    font-size: 28px;
  }

  .saitama-map {
    min-height: 360px;
    margin-top: 18px;
    overflow: hidden;
  }

  .saitama-map svg {
    width: min(128vw, 520px);
    max-width: none;
    transform: translateX(-2%);
  }

  .map-label-svg text {
    font-size: 15px;
  }

  .map-city text {
    font-size: 12px;
  }

  .map-badge {
    top: 14px;
  }

  .news-row {
    grid-template-columns: 86px auto;
    gap: 6px 10px;
    padding: 12px 0;
  }

  .news-row span {
    width: fit-content;
  }

  .news-row strong {
    grid-column: 1 / -1;
  }

  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track {
    animation: none;
  }
}

/* 2026-05-06 portal consistency pass */
.favorite-link .favorite-heart {
  width: 19px;
  height: 17px;
  display: block;
  border: 2px solid #263d52;
  border-top: 0;
  transform: rotate(-45deg);
  border-radius: 0 0 8px 8px;
}

.favorite-link .favorite-label,
.favorite-link .favorite-count {
  width: auto;
  height: auto;
  display: inline-flex;
  border: 0;
  transform: none;
  border-radius: 0;
}

.favorite-count {
  min-width: 20px;
  min-height: 20px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px !important;
  background: var(--yellow);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
}

.jobs-head > a,
.green-button {
  border-color: rgba(255, 201, 40, 0.46);
  background: linear-gradient(180deg, #ffd95f, var(--yellow));
  color: var(--navy);
  box-shadow: 0 10px 18px rgba(246, 173, 11, 0.14);
}

.job-carousel-track {
  grid-auto-columns: clamp(278px, 24vw, 334px);
  align-items: stretch;
}

.pickup-card {
  min-height: 494px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e4eadc;
  background: #fff;
}

.pickup-card img {
  width: 100%;
  height: 172px;
  min-height: 172px;
  grid-row: auto;
  border-radius: 0;
}

.pickup-card .pickup-badge,
.pickup-card .pickup-role,
.pickup-card strong,
.pickup-card .pickup-summary,
.pickup-card .pickup-meta,
.pickup-card .pickup-actions {
  margin-left: 18px;
  margin-right: 18px;
}

.pickup-card .pickup-badge {
  margin-top: 18px;
}

.pickup-card strong {
  min-height: calc(1.45em * 2);
  margin-top: 8px;
  display: block;
}

.pickup-summary {
  min-height: calc(1.5em * 2);
}

.pickup-meta {
  margin-top: 10px;
}

.pickup-meta div {
  min-height: 40px;
  grid-template-columns: 70px minmax(0, 1fr);
}

.pickup-actions {
  margin-top: auto;
  padding: 16px 0 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.favorite-toggle,
.pickup-cta {
  min-height: 38px;
  width: 100%;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.favorite-toggle {
  border: 1px solid #dfe8dc;
  background: #fff;
  color: var(--navy);
}

.favorite-toggle.is-active {
  border-color: rgba(63, 143, 79, 0.28);
  background: #edf6e8;
  color: #2f6d43;
}

.pickup-cta {
  background: linear-gradient(180deg, #ffd95f, var(--yellow));
  box-shadow: 0 10px 18px rgba(246, 173, 11, 0.16);
}

.movie-embed {
  position: relative;
  margin: 28px 0 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #0d2f4f;
  box-shadow: 0 22px 46px rgba(29, 54, 35, 0.15);
}

.movie-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.movie-youtube {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #0d2f4f;
}

.movie-youtube::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 38, 45, 0.32), rgba(10, 38, 45, 0.04)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(10, 38, 45, 0.2));
  pointer-events: none;
}

.movie-youtube img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.movie-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(10, 38, 45, 0.28);
}

.movie-play::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #f0ad18;
}

.guide-links a {
  grid-template-columns: 48px 1fr;
}

.guide-icon {
  color: #9a6c00;
}

.guide-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-icon::before,
.icon-car::before,
.icon-clock::before,
.icon-beginner::before,
.icon-money::before,
.icon-question::before {
  content: none;
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 16px;
  }

  .brand {
    min-width: 220px;
  }

  .global-nav {
    justify-content: flex-end;
    gap: 14px;
  }

  .global-nav a:nth-child(n + 4) {
    display: none;
  }

  .header-cta {
    min-width: 112px;
    padding: 0 16px;
  }

  .favorite-label {
    display: none !important;
  }

  .job-carousel-track {
    grid-auto-columns: minmax(284px, 72vw);
  }

  .pickup-card {
    min-height: 486px;
  }
}

@media (max-width: 560px) {
  .favorite-link {
    min-height: 40px;
    padding: 0 10px;
  }

  .saitama-map {
    overflow: visible;
  }

  .saitama-map svg {
    width: min(100%, 520px);
    max-width: 100%;
    transform: none;
  }

  .map-label-svg text {
    font-size: 13px;
  }

  .job-carousel-button {
    display: none;
  }

  .pickup-card {
    min-height: 468px;
  }

  .pickup-card img {
    height: 150px;
    min-height: 150px;
  }
}

/* 2026-05-07 refinement pass: warm portal tone, clearer job/media modules */
:root {
  --green: #9aa56b;
  --green-2: #c9d3aa;
  --soft-green: #fbf5df;
  --line: #eadfbf;
  --shadow: 0 18px 42px rgba(126, 91, 28, 0.12);
  --soft-shadow: 0 10px 24px rgba(126, 91, 28, 0.08);
}

body {
  background:
    radial-gradient(circle at 4% 16%, rgba(255, 201, 40, 0.16), transparent 22%),
    radial-gradient(circle at 100% 34%, rgba(255, 201, 40, 0.1), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fffaf0 42%, #ffffff 100%);
}

.hero-script {
  transform: none;
}

.hero-search label::before {
  border-color: #d89a28;
}

.hero-search select {
  border-color: #eadfbf;
  background-image:
    linear-gradient(45deg, transparent 50%, #835f12 50%),
    linear-gradient(135deg, #835f12 50%, transparent 50%);
}

.trust-strip {
  bottom: -38px;
  min-height: 100px;
  padding: 18px 42px;
  border: 1px solid rgba(232, 212, 155, 0.86);
  box-shadow: 0 18px 44px rgba(126, 91, 28, 0.12);
}

.trust-strip div {
  padding: 0 24px;
  border-right-color: #efe4c5;
}

.trust-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff3c9;
  border-color: rgba(240, 188, 85, 0.56);
  color: #b97800;
}

.trust-icon::before,
.trust-icon::after {
  content: none;
}

.trust-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-icon svg * {
  fill: none;
  stroke: currentColor;
}

.logo-rail-section {
  padding-top: 72px;
}

.logo-rail-section::before,
.area-section::before,
.jobs-section::before,
.info-section::before,
.guide-section::before {
  background: transparent;
}

.leaf::before,
.leaf::after {
  background: #d7a52a;
  opacity: 0.45;
}

.logo-rail-head > a,
.board-head a {
  color: #9b6b00;
}

.logo-marquee-item {
  pointer-events: none;
}

.map-divider {
  fill: none;
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 12 8;
  filter: drop-shadow(0 2px 3px rgba(93, 70, 24, 0.18));
}

.green-button {
  background: linear-gradient(180deg, #ffd95f, var(--yellow));
  color: var(--navy);
}

.pickup-actions {
  width: auto;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pickup-actions .pickup-cta {
  width: min(100%, 196px);
}

.pickup-actions .pickup-cta {
  margin-inline: auto;
}

.favorite-toggle.is-active {
  border-color: rgba(240, 188, 85, 0.5);
  background: #fff4cf;
  color: #8b6500;
}

.movie-panel {
  padding: 18px 0 0;
}

.movie-embed {
  overflow: visible;
  border-radius: 14px;
  box-shadow:
    0 24px 54px rgba(18, 43, 64, 0.22),
    0 0 0 10px #fff,
    0 0 0 11px rgba(240, 188, 85, 0.32);
}

.movie-embed::before {
  content: "";
  position: absolute;
  inset: -22px -20px auto auto;
  width: 96px;
  height: 48px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 201, 40, 0.32);
  filter: blur(2px);
}

.guide-links a {
  min-height: 64px;
  border-color: #ecdcae;
  background: linear-gradient(180deg, #fffdf7, #fff9e8);
}

.guide-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #fff1bf;
  color: #ad7a00;
}

.news-row .news-label--jobs,
.news-row .news-label--guide {
  background: #fff2c4;
  color: #8b6500;
}

.site-footer {
  background:
    linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
  border-top-color: #eadfbf;
}

.site-footer::before {
  display: none;
}

.footer-main h3 {
  color: #9b6b00;
}

.footer-bottom a {
  background: linear-gradient(180deg, #ffd95f, var(--yellow));
  box-shadow: 0 10px 20px rgba(184, 126, 0, 0.18);
}

.footer-bottom a::before {
  border-color: var(--navy);
}

.map-badge,
.pickup-role {
  color: #9b6b00;
}

.pickup-badge--updated {
  background: #fff2c4;
  color: #8b6500;
}

.job-carousel-button::before {
  border-color: #9b6b00;
}

.guide-float {
  position: fixed;
  top: 50%;
  right: 22px;
  z-index: 60;
  width: 104px;
  min-height: 52px;
  padding: 6px 8px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(184, 126, 0, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff9df, #ffd65a);
  color: var(--navy);
  box-shadow: 0 18px 38px rgba(126, 91, 28, 0.22);
  transform: translateY(-50%);
}

.guide-float-icon {
  width: 24px;
  height: 24px;
  position: relative;
  border: 1px solid rgba(25, 55, 90, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.guide-float-icon::before,
.guide-float-icon::after {
  content: "";
  position: absolute;
}

.guide-float-icon::before {
  left: 7px;
  top: 6px;
  width: 10px;
  height: 12px;
  border: 1.5px solid var(--navy);
  border-radius: 2px;
}

.guide-float-icon::after {
  left: 10px;
  top: 10px;
  width: 4px;
  height: 1.5px;
  background: var(--navy);
  box-shadow: 0 3px 0 var(--navy), 0 6px 0 var(--navy);
}

.guide-float-label {
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
}

/* 2026-05-07 narrow viewport polish */
.hero-title-break {
  display: none;
}

.hero-script-break {
  display: none;
}

.hero-copy::before {
  opacity: 0.58;
  background:
    radial-gradient(ellipse 16px 8px at 16px 18px, rgba(215, 165, 42, 0.56) 0 68%, transparent 70%),
    radial-gradient(ellipse 17px 8px at 36px 11px, rgba(215, 165, 42, 0.48) 0 68%, transparent 70%),
    radial-gradient(ellipse 15px 8px at 58px 18px, rgba(215, 165, 42, 0.42) 0 68%, transparent 70%),
    radial-gradient(ellipse 15px 8px at 76px 31px, rgba(215, 165, 42, 0.34) 0 68%, transparent 70%),
    linear-gradient(115deg, transparent 10%, rgba(215, 165, 42, 0.42) 11% 13%, transparent 14%);
}

@media (max-width: 760px) {
  .hero-copy h1 {
    font-size: clamp(34px, 8.7vw, 42px);
    line-height: 1.26;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .hero-title-break {
    display: block;
  }

  .hero-script-break {
    display: block;
  }

  .hero-script {
    font-size: clamp(22px, 5.8vw, 28px);
    line-height: 1.65;
  }

  .guide-float {
    top: auto;
    right: 14px;
    bottom: 18px;
    transform: none;
  }
}

/* 2026-05-07 top news labels: keep category colors consistent */
.news-row .news-label.news-label--notice {
  background: #eaf4ff;
  border: 1px solid rgba(21, 80, 129, 0.16);
  color: #155081;
}

.news-row .news-label.news-label--jobs {
  background: #fff2c4;
  border: 1px solid rgba(216, 154, 40, 0.24);
  color: #8b6500;
}

.news-row .news-label.news-label--guide {
  background: #f0ecff;
  border: 1px solid rgba(79, 63, 134, 0.16);
  color: #4f3f86;
}

/* 2026-05-07 header favorite icon: use the same recognizable heart mark */
.favorite-link .favorite-heart,
.favorite-heart {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  transform: none;
}

.favorite-link .favorite-heart::before,
.favorite-heart::before {
  content: "♡";
  color: #0b2b4a;
  font-family: Arial, "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.favorite-link.is-current .favorite-heart::before {
  content: "♥";
  color: #d89a28;
}

/* 2026-06-15 mobile menu: keep the public-base visual while preventing SP nav overflow */
body.portal-menu-open {
  overflow: hidden;
}

.portal-menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(13, 47, 79, 0.16);
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.portal-menu-button span,
.portal-menu-button::before,
.portal-menu-button::after {
  content: "";
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
}

.portal-menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.portal-menu-button[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.portal-menu-button[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

body.portal-menu-open .portal-menu-button {
  opacity: 0;
  pointer-events: none;
}

.portal-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  background: rgba(13, 47, 79, 0.42);
  backdrop-filter: blur(2px);
}

.portal-mobile-menu.is-open {
  display: block;
}

.portal-mobile-menu-panel {
  position: absolute;
  top: 76px;
  right: 14px;
  left: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.portal-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.portal-mobile-menu-title {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.portal-mobile-menu-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
}

.portal-mobile-menu-links {
  display: grid;
  gap: 0;
  margin: 8px 0 16px;
}

.portal-mobile-menu-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(13, 47, 79, 0.1);
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.portal-mobile-menu-links a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.45;
}

.portal-mobile-menu-actions {
  display: grid;
  gap: 10px;
}

.portal-mobile-menu-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}

.portal-mobile-menu-actions .is-primary {
  background: var(--yellow);
  color: var(--navy);
}

.portal-mobile-menu-actions .is-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

@media (max-width: 900px) {
  .global-nav {
    display: none !important;
  }

  .header-actions {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .header-actions .header-cta,
  .favorite-link {
    display: none !important;
  }

  .portal-menu-button {
    display: inline-flex;
    flex: 0 0 auto;
  }
}

/* 2026-06-17: 仮ロゴを本番ロゴ差し替え前のロックアップとして見せる枠 */
.brand--wordmark {
  box-sizing: border-box;
  min-height: 48px;
  padding: 5px 10px 5px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(13, 47, 79, 0.18);
  border-left: 4px solid var(--yellow);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(13, 47, 79, 0.06);
}

.brand--wordmark .brand-logo-img {
  display: block;
}

.site-header .brand--wordmark {
  width: 286px;
  min-width: 286px;
}

.site-header .brand--wordmark .brand-logo-img {
  width: 250px;
}

.site-footer .brand--footer.brand--wordmark {
  width: min(100%, 360px);
  min-height: 56px;
  padding: 7px 12px 7px 10px;
  margin-bottom: 14px;
}

.site-footer .brand--footer.brand--wordmark .brand-logo-img {
  width: min(100%, 330px);
}

@media (max-width: 760px) {
  .site-header {
    align-items: center;
    min-height: 64px;
    padding: 8px 14px;
    flex-wrap: nowrap;
  }

  .site-header .brand--wordmark {
    width: 232px;
    min-width: 0;
    flex: 0 0 232px;
    min-height: 44px;
    padding: 5px 8px 5px 7px;
  }

  .site-header .brand--wordmark .brand-logo-img {
    width: 210px;
  }
}

/* 2026-06-17 placeholder cleanup: logo, video, and SNS areas are framed as pending official assets. */
.brand--wordmark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.78) !important;
  border-left: 1px solid rgba(17, 24, 39, 0.78) !important;
  border-radius: 2px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.brand--wordmark::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 0;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(17, 24, 39, 0.04);
  pointer-events: none;
}

.brand--wordmark::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 5px;
  z-index: 2;
  padding: 1px 5px;
  border: 1px solid rgba(17, 24, 39, 0.14);
  background: rgba(246, 248, 250, 0.9);
  color: #4b5563;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.brand--wordmark .brand-logo-img {
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.movie-embed {
  border: 1px solid rgba(17, 24, 39, 0.78);
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
}

.movie-embed::before {
  display: none;
}

.movie-embed::after {
  content: "協会公式動画が入ります";
  position: absolute;
  inset: 10px;
  z-index: 4;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(246, 248, 250, 0.76);
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.movie-youtube img {
  filter: grayscale(0.95);
  opacity: 0.32;
}

.movie-play {
  opacity: 0.24;
}

.movie-embed--published {
  overflow: hidden;
  border: 1px solid rgba(23, 52, 78, 0.16);
  border-radius: 8px;
  background: #0d2f4f;
  box-shadow: 0 14px 34px rgba(23, 52, 78, 0.14);
}

.movie-embed--published::after {
  content: none;
  display: none;
}

.movie-embed--published .movie-youtube img {
  filter: none;
  opacity: 1;
}

.movie-embed--published .movie-play {
  opacity: 1;
}

.instagram-grid {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(17, 24, 39, 0.78);
  border-radius: 4px;
  background: #fff;
}

.instagram-grid::before {
  content: none;
  display: none;
}

.instagram-grid::after {
  content: none;
  display: none;
}

.instagram-grid img {
  filter: none;
  opacity: 1;
  box-shadow: none;
}

@media (max-width: 760px) {
  .brand--wordmark::after {
    right: 6px;
    bottom: 4px;
    font-size: 8px;
  }

  .movie-embed::after,
  .instagram-grid::after {
    font-size: 12px;
  }
}

/* 2026-06-17 logo placeholder layer: match video/SNS pending-asset treatment and give the header breathing room. */
.site-header {
  height: auto;
  min-height: 80px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand--wordmark {
  min-height: 68px;
  padding: 12px 18px;
  border: 1px solid rgba(17, 24, 39, 0.78) !important;
  border-radius: 4px !important;
  background: #fff !important;
}

.brand--wordmark::before {
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: rgba(246, 248, 250, 0.74);
}

.brand--wordmark::after {
  inset: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}

.brand--wordmark .brand-logo-img {
  filter: grayscale(1);
  opacity: 0.24;
}

.site-header .brand--wordmark {
  width: 316px;
  min-width: 316px;
  min-height: 62px;
  padding: 10px 16px;
}

.site-header .brand--wordmark .brand-logo-img {
  width: 272px;
}

.site-footer .brand--footer.brand--wordmark {
  width: min(100%, 382px);
  min-height: 78px;
  padding: 14px 18px;
  margin-bottom: 18px;
}

.site-footer .brand--footer.brand--wordmark .brand-logo-img {
  width: min(100%, 340px);
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 8px 12px;
  }

  .site-header .brand--wordmark {
    width: 238px;
    min-width: 0;
    flex: 0 0 238px;
    min-height: 54px;
    padding: 8px 10px;
  }

  .site-header .brand--wordmark .brand-logo-img {
    width: 214px;
  }

  .brand--wordmark::before,
  .brand--wordmark::after {
    inset: 6px;
  }

  .brand--wordmark::after {
    right: 6px;
    bottom: 6px;
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .site-footer .brand--footer.brand--wordmark {
    min-height: 72px;
    padding: 12px 14px;
  }
}

/* 2026-06-17 top guide polish: make the guide look like an official reading path, not a tile set. */
.guide-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.movie-panel,
.guide-panel {
  border: 1px solid rgba(37, 50, 65, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(37, 50, 65, 0.05);
}

.guide-panel {
  padding: 30px;
}

.guide-panel::after {
  opacity: 0.2;
}

.guide-panel h2 {
  letter-spacing: 0;
}

.guide-links {
  margin: 22px 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(37, 50, 65, 0.1);
}

.guide-links a {
  min-height: 58px;
  padding: 13px 0;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border: 0;
  border-bottom: 1px solid rgba(37, 50, 65, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #17365a;
  font-weight: 900;
}

.guide-links a:hover {
  color: #8a6200;
  transform: none;
}

.guide-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(216, 154, 40, 0.34);
  border-radius: 999px;
  background: #fff8dc;
}

.guide-icon svg {
  width: 18px;
  height: 18px;
  stroke: #17365a;
}

.guide-panel .green-button {
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(216, 154, 40, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--portal-yellow-2), var(--portal-yellow));
  color: #17365a;
  box-shadow: 0 12px 22px rgba(184, 126, 0, 0.12);
}

@media (max-width: 980px) {
  .guide-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .guide-panel {
    padding: 22px;
  }

  .guide-links a {
    min-height: 54px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
  }

  .guide-icon {
    width: 34px;
    height: 34px;
  }
}

/* 2026-06-17 top guide spacing: keep the video and guide panels from feeling edge-cramped. */
.guide-section .movie-panel,
.guide-section .guide-panel {
  padding: 36px;
}

.guide-section {
  scroll-margin-top: 96px;
}

.guide-section .movie-panel h2,
.guide-section .guide-panel h2 {
  line-height: 1.38;
  letter-spacing: 0;
  word-break: keep-all;
}

.guide-section .movie-panel h2 span {
  display: inline;
}

.guide-section .movie-panel h2 span + span::before {
  content: " ";
}

.guide-section .movie-panel p,
.guide-section .guide-panel p {
  max-width: 42em;
  margin: 14px 0 0;
}

.guide-section .movie-embed {
  margin-top: 28px;
}

.guide-section .guide-links {
  margin: 28px 0;
}

@media (max-width: 980px) {
  .guide-section .movie-panel,
  .guide-section .guide-panel {
    padding: 30px;
  }
}

@media (max-width: 760px) {
  .guide-section .movie-panel,
  .guide-section .guide-panel {
    padding: 24px 20px;
  }

  .guide-section .movie-panel h2,
  .guide-section .guide-panel h2 {
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.34;
  }

  .guide-section .movie-panel h2 span {
    display: block;
  }

  .guide-section .movie-panel h2 span + span::before {
    content: "";
  }

  .guide-section .movie-panel p,
  .guide-section .guide-panel p {
    font-size: 13px;
    line-height: 1.75;
  }

  .guide-section .movie-embed {
    margin-top: 22px;
  }
}

/* 2026-06-17 SP portal polish: make the top page search-first and keep carousel/header controls familiar. */
html {
  scroll-padding-top: 72px;
}

.site-shell {
  overflow-x: clip;
  overflow-y: visible;
}

.logo-rail-head > a,
.jobs-head > a,
.board-head a {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--navy);
  font-weight: 800;
}

.logo-rail-head > a::after,
.jobs-head > a::after,
.board-head a::after {
  content: "›";
  margin-left: 0.45em;
  color: #b97800;
  font-weight: 900;
}

.portal-menu-button {
  border-color: rgba(13, 47, 79, 0.2);
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

@media (max-width: 760px) {
  :root {
    --content: min(100% - 24px, 720px);
  }

  body {
    font-size: 14px;
    line-height: 1.75;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 60px;
    padding: 6px 10px;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .site-header .brand--wordmark {
    width: 216px;
    min-width: 0;
    flex: 1 1 auto;
    min-height: 46px;
    padding: 7px 9px;
  }

  .site-header .brand--wordmark .brand-logo-img {
    width: 196px;
  }

  .brand--wordmark::before,
  .brand--wordmark::after {
    inset: 5px;
  }

  .brand--wordmark::after {
    font-size: 8px;
    letter-spacing: 0.02em;
  }

  .portal-menu-button {
    width: 42px;
    height: 42px;
    border-radius: 8px;
  }

  .portal-menu-button span,
  .portal-menu-button::before,
  .portal-menu-button::after {
    width: 18px;
    height: 2px;
  }

  .hero-section {
    padding-top: 22px;
  }

  .hero-inner {
    gap: 16px;
    align-items: start;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero-copy::before,
  .hero-copy::after {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.5vw, 36px);
    line-height: 1.24;
  }

  .hero-script {
    margin: 8px 0 0;
    padding-bottom: 2px;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.45;
    border-bottom-width: 3px;
  }

  .hero-lead {
    display: none;
  }

  .hero-search {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding: 14px;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 12px 26px rgba(37, 50, 65, 0.1);
  }

  .hero-search h2 {
    margin-bottom: 0;
    font-size: 14px;
    white-space: normal;
  }

  .hero-search select {
    min-height: 40px;
    padding-left: 36px;
    font-size: 13px;
    border-radius: 8px;
  }

  .hero-search button {
    min-height: 44px;
    border-radius: 8px;
    font-size: 14px;
  }

  .trust-strip {
    width: var(--content);
    min-height: 0;
    margin-top: 14px;
    padding: 10px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border-radius: 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .trust-strip div {
    flex: 0 0 78%;
    min-height: 58px;
    padding: 8px 10px;
    border-right: 1px solid #e6ebdf;
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .trust-icon {
    width: 34px;
    height: 34px;
  }

  .trust-strip strong {
    font-size: 12px;
    line-height: 1.5;
  }

  .logo-rail-head,
  .jobs-head,
  .board-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
  }

  .logo-rail-head > div,
  .jobs-head > div {
    min-width: 0;
  }

  .logo-rail-head > a,
  .jobs-head > a,
  .board-head a {
    min-height: 0;
    padding: 0;
    flex: 0 0 auto;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .logo-rail-head h2,
  .jobs-head h2,
  .area-copy h2,
  .movie-panel h2,
  .guide-panel h2,
  .news-panel h2,
  .instagram-panel h2 {
    font-size: clamp(22px, 6.4vw, 28px);
    line-height: 1.3;
  }

  .jobs-section,
  .logo-rail-section,
  .guide-section,
  .info-section {
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .job-carousel-viewport {
    padding-right: 58px;
  }

  .job-carousel-button {
    display: inline-grid;
    top: 46%;
    width: 38px;
    height: 38px;
    box-shadow: 0 10px 22px rgba(37, 50, 65, 0.12);
  }

  .job-carousel-button--prev {
    display: none;
  }

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

/* 2026-06-17 SP scroll scope fix: keep sideways motion only where it is truly expected. */
.job-carousel-button {
  display: grid;
  place-items: center;
  line-height: 1;
}

.job-carousel-button::before {
  position: static;
  left: auto;
  top: auto;
  box-sizing: border-box;
  width: 11px;
  height: 11px;
  border: 0;
  border-top: 2px solid #2f6d43;
  border-right: 2px solid #2f6d43;
  transform: rotate(45deg);
}

.job-carousel-button--prev::before {
  transform: rotate(-135deg);
}

.job-carousel-button--next::before {
  left: auto;
  transform: rotate(45deg);
}

@media (max-width: 760px) {
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    scroll-snap-type: none;
  }

  .trust-strip div {
    flex: initial;
    width: 100%;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e6ebdf;
    scroll-snap-align: none;
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .job-carousel-viewport {
    padding-right: 52px;
  }

  .job-carousel-button {
    top: 50%;
    transform: translateY(-50%);
  }

  .job-carousel-button--next {
    right: 8px;
  }
}

/* 2026-06-17 TOP FV breathing room: let the hero photo work as a real visual, and move the three trust points below the first view content. */
.hero-section {
  min-height: 690px;
  padding: 86px 0 58px;
}

.hero-bg::before {
  background:
    radial-gradient(ellipse at 26% 43%, rgba(255, 255, 255, 0.42) 0 18%, rgba(255, 255, 255, 0.08) 48%, transparent 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.74) 0%, rgba(255, 255, 255, 0.5) 36%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(255, 250, 240, 0.78) 100%);
}

.hero-bg img {
  object-position: 70% center;
}

.hero-inner {
  min-height: 490px;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
}

.hero-copy {
  max-width: min(620px, 100%);
  padding-left: 28px;
  transform: none;
}

.hero-copy::after {
  inset: -30px -20px -32px -28px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 255, 255, 0.58) 62%, rgba(255, 255, 255, 0) 100%);
  filter: blur(16px);
}

.hero-copy h1 {
  font-size: clamp(42px, 4.2vw, 56px);
  line-height: 1.22;
}

.hero-script {
  margin-top: 18px;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 560px;
}

.hero-search {
  width: 340px;
  margin-top: 0;
  padding: 28px;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(13, 42, 67, 0.14);
}

.trust-strip {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(100% - 72px, 1080px);
  margin: 34px auto 0;
  transform: none;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(13, 42, 67, 0.08);
}

@media (max-width: 980px) {
  .hero-section {
    min-height: 0;
    padding: 56px 0 44px;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 250, 240, 0.64) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.04));
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    max-width: 640px;
    padding-left: 0;
  }

  .hero-search {
    justify-self: start;
    width: min(100%, 460px);
    max-width: 460px;
  }

  .trust-strip {
    width: var(--content);
    margin-top: 28px;
  }
}

@media (max-width: 760px) {
  .hero-section {
    padding: 30px 0 32px;
  }

  .hero-bg img {
    object-position: 72% center;
  }

  .hero-inner {
    gap: 22px;
  }

  .hero-copy h1 {
    font-size: clamp(32px, 8.6vw, 40px);
    line-height: 1.25;
  }

  .hero-script {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .hero-search {
    padding: 16px;
    border-radius: 12px;
  }

  .trust-strip {
    margin-top: 20px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
  }

  .trust-strip div {
    min-height: 56px;
    padding: 10px 8px;
  }
}

/* 2026-06-22 tone audit fixes: FV keeps warmth; lower sections avoid placeholder/AI-ish decoration. */
.brand--wordmark::before,
.brand--wordmark::after {
  content: none !important;
  display: none !important;
}

.brand--wordmark .brand-logo-img {
  filter: none !important;
  opacity: 1 !important;
}

.brand--wordmark {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

.logo-rail-head .leaf,
.area-copy .leaf,
.jobs-head .leaf,
.movie-panel > .leaf,
.guide-panel > .leaf {
  display: none;
}

.logo-rail-head,
.jobs-head {
  align-items: end;
}

/* 2026-07-12 TOP FV video: calm loop, responsive crop, and localized readability veil. */
.hero-bg {
  background: #dfe7df url("/assets/video/fv-loop-v3-poster.jpg") center / cover no-repeat;
}

.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.hero-bg::before {
  background:
    radial-gradient(ellipse at 25% 43%, rgba(255, 255, 255, 0.32) 0 18%, rgba(255, 255, 255, 0.05) 50%, transparent 72%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.4) 36%, rgba(255, 255, 255, 0.06) 60%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, rgba(255, 250, 240, 0.84) 100%);
}

@media (max-width: 980px) {
  .hero-video {
    object-position: 58% center;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 62%, rgba(255, 250, 240, 0.9) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.12) 64%, rgba(255, 255, 255, 0) 100%);
  }
}

@media (max-width: 760px) {
  .hero-section {
    background: #fffaf0;
  }

  .hero-bg {
    height: 390px;
    bottom: auto;
  }

  .hero-video {
    object-position: 58% center;
  }

  .hero-bg::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 60%, rgba(255, 250, 240, 0.94) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0.09) 60%, rgba(255, 255, 255, 0) 100%);
  }

  .hero-inner {
    gap: 152px;
  }

  .hero-copy::after {
    display: block;
    inset: -16px -18px -14px -12px;
    border-radius: 18px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.34) 68%, rgba(255, 255, 255, 0) 100%);
    filter: blur(11px);
  }
}
