:root {
  --navy-950: #061827;
  --navy-900: #0a2235;
  --navy-800: #10344c;
  --navy-700: #19516b;
  --gold-600: #b98232;
  --gold-500: #d19b4d;
  --gold-300: #efd09c;
  --gold-100: #f9eddc;
  --teal-600: #2f7c7a;
  --teal-100: #dcebea;
  --coral-500: #e37359;
  --ink: #172532;
  --muted: #60717d;
  --line: #dce4e8;
  --paper: #fffdf8;
  --cream: #f7f1e7;
  --white: #fff;
  --shadow: 0 20px 60px rgb(6 24 39 / 10%);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 42px;
  --content: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 126px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.prototype-bar {
  position: relative;
  z-index: 110;
  min-height: 36px;
  padding: 8px 20px;
  color: var(--navy-950);
  background: var(--gold-300);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: center;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--white);
  background: rgb(6 24 39 / 96%);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgb(6 24 39 / 14%);
}

.header-inner {
  display: flex;
  width: var(--content);
  min-height: 82px;
  margin: 0 auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 174px;
  height: auto;
}

.global-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.global-nav a {
  position: relative;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}

.global-nav a:not(.nav-entry)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.global-nav a:hover::after,
.global-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-entry {
  display: inline-flex;
  min-height: 48px;
  padding: 0 24px !important;
  border-radius: 999px;
  align-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  transition: transform .2s ease, background .2s ease;
}

.nav-entry:hover {
  background: #e2b26d;
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform .2s ease, opacity .2s ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  padding: 0;
  border: 0;
  background: rgb(6 24 39 / 46%);
  cursor: default;
}

.menu-backdrop.is-open {
  display: block;
}

.container {
  width: var(--content);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: clip;
}

.section--cream {
  background: var(--cream);
}

.section--navy {
  color: var(--white);
  background: var(--navy-950);
}

.section--teal {
  background: #edf6f4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section--navy .eyebrow {
  color: var(--gold-300);
}

.section-heading {
  max-width: 760px;
  margin: 14px 0 22px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.28;
  letter-spacing: -.045em;
}

.section-heading--small {
  font-size: clamp(28px, 3.2vw, 44px);
}

.section-lead {
  max-width: 740px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section--navy .section-lead {
  color: #bdcbd3;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 118px);
  background: #fbf7ef;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  padding: 76px max(44px, calc((100vw - 1160px) / 2)) 70px;
  flex-direction: column;
  justify-content: center;
}

.hero-copy::before {
  position: absolute;
  z-index: -1;
  top: -140px;
  left: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgb(209 155 77 / 25%);
  border-radius: 50%;
  content: "";
}

.hero-kicker {
  margin: 0 0 24px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(43px, 5.25vw, 78px);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -.065em;
}

.hero h1.hero-title--long {
  font-size: clamp(40px, 4.6vw, 68px);
}

.hero h1 em {
  position: relative;
  color: var(--teal-600);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 8px;
  border-radius: 9px;
  background: var(--gold-300);
  content: "";
  opacity: .7;
}

.hero-text {
  max-width: 560px;
  margin: 30px 0 0;
  color: #405260;
  font-size: 17px;
}

.hero-actions,
.button-row {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button::after {
  content: "→";
  font-size: 18px;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 12px 28px rgb(6 24 39 / 20%);
}

.button--gold {
  color: var(--navy-950);
  background: var(--gold-500);
}

.button--outline {
  border-color: var(--navy-800);
  color: var(--navy-900);
  background: transparent;
}

.section--navy .button--outline {
  border-color: rgb(255 255 255 / 32%);
  color: var(--white);
}

.hero-points {
  display: flex;
  margin: 36px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.hero-points li {
  padding: 8px 13px;
  border: 1px solid #d8e0e3;
  border-radius: 999px;
  color: var(--navy-800);
  background: rgb(255 255 255 / 72%);
  font-size: 12px;
  font-weight: 700;
}

.draft {
  display: inline-flex;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  color: #7d4b00;
  background: #ffdf9f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
  vertical-align: .15em;
  white-space: nowrap;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  background: var(--cream);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbf7ef 0, transparent 18%);
  content: "";
  pointer-events: none;
}

.hero-career-card {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 7%;
  display: grid;
  width: 164px;
  height: 164px;
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 54%);
  border-radius: 50%;
  place-content: center;
  color: var(--white);
  background: rgb(6 24 39 / 91%);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-career-card strong {
  display: block;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: 1;
}

.hero-career-card span {
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.intro-grid {
  display: grid;
  margin-top: 64px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 38px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 15px 45px rgb(6 24 39 / 6%);
  overflow: hidden;
}

.feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 150px;
  height: 150px;
  border: 26px solid var(--teal-100);
  border-radius: 50%;
  content: "";
}

.feature-card:nth-child(2)::after {
  border-color: #f7dfbb;
}

.feature-card:nth-child(3)::after {
  border-color: #f3d7cf;
}

.feature-number {
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
}

.feature-card h3 {
  margin: 36px 0 15px;
  color: var(--navy-900);
  font-size: 23px;
  line-height: 1.45;
}

.feature-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.jobs-layout {
  display: grid;
  margin-top: 60px;
  grid-template-columns: 1fr;
  gap: 28px;
}

.jobs-layout--single {
  grid-template-columns: 1fr;
}

.job-feature {
  position: relative;
  display: flex;
  min-height: 540px;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(90deg, rgb(6 24 39 / 95%) 0%, rgb(6 24 39 / 80%) 42%, rgb(6 24 39 / 8%) 78%),
    url("/hero-illustration-v6.webp") 72% center / cover no-repeat;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.job-feature::before {
  position: absolute;
  top: 32px;
  left: 32px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--gold-300);
  content: "メインの受け入れ職種";
  font-size: 11px;
  font-weight: 800;
}

.job-feature-order {
  margin-bottom: 18px;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
}

.job-feature h3 {
  max-width: 520px;
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.28;
}

.job-feature p {
  max-width: 520px;
  margin: 0 0 26px;
  color: #d6e0e5;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
}

.text-link::after {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "→";
  place-items: center;
  transition: transform .2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.supermarket-block {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgb(255 255 255 / 62%);
}

.supermarket-heading {
  display: grid;
  margin-bottom: 26px;
  align-items: start;
  grid-template-columns: 112px 1fr;
  gap: 24px;
}

.job-step {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--navy-900);
  background: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.supermarket-heading h3,
.career-role-strip h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.supermarket-heading p,
.career-role-strip p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
}

.supermarket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.supermarket-card {
  position: relative;
  display: flex;
  min-height: 390px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy-900);
  background: var(--white);
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.supermarket-card::after {
  position: absolute;
  right: -56px;
  bottom: -72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--gold-100);
  content: "";
  opacity: .7;
}

.supermarket-card--teal::after {
  background: var(--teal-100);
}

.supermarket-card:hover {
  border-color: var(--gold-500);
  box-shadow: 0 12px 30px rgb(6 24 39 / 8%);
  transform: translateY(-5px);
}

.supermarket-card-number {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  color: var(--gold-500);
  font-family: Georgia, serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
}

.supermarket-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.supermarket-card-copy > small {
  margin-bottom: 9px;
  color: var(--teal-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.supermarket-card-copy > strong {
  margin-bottom: 15px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.38;
}

.supermarket-card-copy > span:not(.role-tags) {
  color: var(--muted);
  font-size: 14px;
}

.role-tags {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 7px;
}

.role-tags em {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--navy-800);
  background: var(--cream);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.card-link {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 26px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 800;
}

.jobs-note {
  display: flex;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  gap: 8px;
}

.jobs-note span {
  color: var(--gold-600);
  font-weight: 800;
}

.career-role-strip {
  display: grid;
  margin-top: 28px;
  padding: 38px 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.career-role-strip .job-step {
  margin-bottom: 16px;
}

.career-role-strip h3 {
  color: var(--white);
}

.career-role-strip p {
  color: #b9c8d0;
  font-size: 13px;
}

.career-role-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgb(255 255 255 / 13%);
}

.career-role-links a {
  display: flex;
  min-height: 68px;
  padding: 16px 18px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  background: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  transition: color .2s ease, background .2s ease;
}

.career-role-links a:hover {
  color: var(--gold-300);
  background: var(--navy-900);
}

.career-role-links span {
  color: var(--gold-300);
}

.training-layout {
  display: grid;
  margin-top: 64px;
  grid-template-columns: .76fr 1.24fr;
  gap: 56px;
  align-items: start;
}

.training-aside {
  position: sticky;
  top: 130px;
  padding: 38px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal-600);
}

.training-aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-300);
  font-size: 54px;
  line-height: 1;
}

.training-aside h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.training-aside p {
  margin: 0;
  color: #dcebea;
  font-size: 14px;
}

.timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 10px;
  bottom: 20px;
  left: 28px;
  width: 2px;
  background: #cad8dd;
  content: "";
}

.timeline li {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 0 0 38px 82px;
  grid-template-columns: 140px 1fr;
  gap: 24px;
}

.timeline-marker {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: grid;
  width: 58px;
  height: 58px;
  border: 7px solid var(--cream);
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  font-family: Georgia, serif;
  font-weight: 700;
}

.timeline-time {
  padding-top: 10px;
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 800;
}

.timeline-content {
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.timeline-content h3 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 20px;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.career-map {
  position: relative;
  display: grid;
  margin-top: 64px;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  align-items: center;
}

.career-trunk {
  display: grid;
  gap: 14px;
}

.career-step {
  position: relative;
  padding: 18px 20px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy-800);
  text-align: center;
}

.career-step:not(:last-child)::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  color: var(--gold-300);
  content: "↓";
  transform: translateX(-50%);
}

.career-step small {
  display: block;
  color: var(--gold-300);
}

.career-step[id],
.career-card[id] {
  scroll-margin-top: 150px;
}

.career-branches {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.career-card {
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 6%);
}

.career-card span {
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 28px;
}

.career-card h3 {
  margin: 14px 0 6px;
  font-size: 16px;
}

.career-card p {
  margin: 0;
  color: #b6c7d0;
  font-size: 12px;
}

.career-employment-note {
  margin: 28px 0 0;
  padding: 18px 22px;
  border-left: 3px solid var(--gold-300);
  color: #d6e1e7;
  background: rgb(255 255 255 / 6%);
  font-size: 13px;
  line-height: 1.8;
}

.career-employment-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-300);
  font-size: 12px;
}

.career-facts {
  display: grid;
  margin-top: 38px;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.career-fact {
  padding: 24px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 6%);
}

.career-fact small {
  display: block;
  color: #b6c7d0;
  font-size: 12px;
}

.career-fact strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
}

.career-fact strong span {
  margin-left: 3px;
  color: var(--gold-300);
  font-size: .45em;
}

.numbers {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.number-card {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.number-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.number-card strong {
  display: block;
  margin: 26px 0 12px;
  color: var(--navy-900);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.number-card strong span {
  margin-left: 3px;
  font-family: inherit;
  font-size: .4em;
}

.number-card small {
  color: var(--muted);
  font-size: 11px;
}

.number-note {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.people-grid {
  display: grid;
  margin-top: 60px;
  grid-template-columns: 1fr;
  gap: 28px;
}

.person-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: start;
  background: var(--white);
  box-shadow: 0 14px 40px rgb(6 24 39 / 6%);
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}

.person-photo {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1642 / 958;
  object-fit: cover;
  object-position: center 34%;
}

.person-photo--s {
  object-position: 54% 34%;
}

.person-photo--h {
  object-position: 10% 34%;
}

.person-photo--y {
  object-position: 55% 34%;
}

.person-body {
  padding: 38px 40px 40px;
}

.person-role {
  margin: 0 0 8px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 800;
}

.person-body h3 {
  margin: 0 0 20px;
  color: var(--navy-900);
  font-size: 20px;
  line-height: 1.55;
}

.person-meta {
  display: flex;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

.person-story {
  display: grid;
  margin-top: 26px;
  gap: 22px;
}

.person-story section {
  position: relative;
  padding-left: 20px;
}

.person-story section::before {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--gold-500);
  content: "";
}

.person-story h4 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.person-story p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.people-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.benefits-layout {
  display: grid;
  margin-top: 58px;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.benefit-panel {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--white);
}

.benefit-panel h3 {
  margin: 0 0 26px;
  color: var(--navy-900);
  font-size: 22px;
}

.benefit-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  list-style: none;
}

.benefit-list li {
  display: flex;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  gap: 10px;
  color: #425460;
  font-size: 13px;
  font-weight: 700;
}

.benefit-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--teal-600);
  content: "✓";
  font-size: 11px;
}

.conditions {
  margin: 0;
}

.conditions > div {
  display: grid;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 132px 1fr;
  gap: 18px;
}

.conditions dt {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.conditions dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  max-width: 900px;
  margin: 54px auto 0;
}

.selection-flow-grid {
  display: grid;
  margin-top: 58px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.selection-flow-grid--single {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}

.selection-flow-card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgb(6 24 39 / 6%);
}

.selection-flow-type {
  color: var(--teal-600);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.selection-flow-card--hourly .selection-flow-type {
  color: var(--gold-600);
}

.selection-flow-card > h3 {
  margin: 9px 0 28px;
  color: var(--navy-900);
  font-size: 24px;
}

.selection-flow-steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.selection-flow-steps li {
  position: relative;
  display: grid;
  min-height: 76px;
  padding: 0 0 22px;
  grid-template-columns: 46px 1fr;
  gap: 14px;
}

.selection-flow-steps li:not(:last-child)::before {
  position: absolute;
  top: 34px;
  bottom: 0;
  left: 16px;
  width: 1px;
  background: var(--line);
  content: "";
}

.selection-flow-steps li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  background: var(--teal-600);
  font-family: Georgia, serif;
  font-size: 11px;
}

.selection-flow-card--hourly .selection-flow-steps li > span {
  color: var(--navy-950);
  background: var(--gold-300);
}

.selection-flow-steps strong,
.selection-flow-steps small {
  display: block;
}

.selection-flow-steps strong {
  padding-top: 4px;
  color: var(--navy-900);
  font-size: 14px;
}

.selection-flow-steps small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.selection-flow-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  padding: 24px 8px;
  border: 0;
  align-items: center;
  color: var(--navy-900);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  grid-template-columns: 42px 1fr 28px;
  text-align: left;
}

.faq-question .q {
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 24px;
}

.faq-question .toggle {
  font-size: 22px;
  transition: transform .2s ease;
}

.faq-question[aria-expanded="true"] .toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 50px 24px;
  color: var(--muted);
  font-size: 14px;
}

.faq-answer[hidden] {
  display: none;
}

.cta {
  position: relative;
  padding: 92px 0;
  color: var(--white);
  background: var(--teal-600);
  overflow: hidden;
}

.cta::before,
.cta::after {
  position: absolute;
  border: 45px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
  content: "";
}

.cta::before {
  top: -100px;
  left: -80px;
  width: 280px;
  height: 280px;
}

.cta::after {
  right: -100px;
  bottom: -150px;
  width: 360px;
  height: 360px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 50px;
}

.cta h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.3;
}

.cta p {
  margin: 0;
  color: #d9ecea;
}

.site-footer {
  padding: 62px 0 110px;
  color: #a9b9c2;
  background: var(--navy-950);
}

.footer-inner {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 30px;
}

.footer-logo {
  display: block;
  width: 180px;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 8px;
}

.footer-logo-link:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
}

.footer-note {
  max-width: 620px;
  margin-top: 22px;
  color: #748b98;
  font-size: 11px;
}

.copyright {
  font-size: 11px;
}

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  height: 58px;
  border-radius: 17px;
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 10px 36px rgb(6 24 39 / 32%);
  overflow: hidden;
}

.mobile-actions a {
  display: grid;
  flex: 1;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
}

.mobile-actions a + a {
  color: var(--navy-950);
  background: var(--gold-500);
}

.page-hero {
  position: relative;
  padding: 98px 0 76px;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.page-hero::after {
  position: absolute;
  top: -110px;
  right: -20px;
  width: 470px;
  height: 470px;
  border: 85px solid rgb(209 155 77 / 12%);
  border-radius: 50%;
  content: "";
}

.breadcrumbs {
  display: flex;
  margin-bottom: 48px;
  gap: 10px;
  color: #8fa5b2;
  font-size: 11px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.page-hero h1 {
  margin: 12px 0 20px;
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.2;
  letter-spacing: -.05em;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: #bccbd3;
}

.job-summary {
  display: grid;
  margin-top: -38px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.summary-item {
  padding: 14px 20px;
  border-right: 1px solid var(--line);
}

.summary-item:last-child {
  border: 0;
}

.summary-item small {
  display: block;
  color: var(--muted);
}

.summary-item strong {
  color: var(--navy-900);
  font-size: 16px;
}

.work-grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.store-work {
  margin-top: 52px;
}

.store-work > h3,
.store-shifts > h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: clamp(22px, 2.4vw, 32px);
}

.store-work > p,
.store-shifts > p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.store-shifts {
  margin-top: 64px;
}

.store-responsibility {
  display: grid;
  margin-top: 30px;
  padding: 28px 30px;
  border: 1px solid rgb(47 124 122 / 24%);
  border-radius: var(--radius-sm);
  align-items: start;
  background: rgb(47 124 122 / 8%);
  grid-template-columns: 150px 1fr;
  gap: 26px;
}

.store-responsibility > span {
  padding-top: 5px;
  color: var(--teal-600);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.store-responsibility h4 {
  margin: 0 0 8px;
  color: var(--navy-900);
  font-size: 20px;
}

.store-responsibility p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.store-shifts .job-step {
  display: inline-block;
  margin-bottom: 14px;
}

.work-card {
  min-height: 180px;
  padding: 24px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.work-card span {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  border-radius: 13px;
  place-items: center;
  color: var(--navy-900);
  background: var(--teal-100);
  font-family: Georgia, serif;
}

.work-card h3,
.work-card h4 {
  margin: 0 0 8px;
  font-size: 15px;
}

.work-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.day-schedule {
  display: grid;
  margin-top: 56px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.day-schedule--shifts {
  grid-template-columns: repeat(3, 1fr);
}

.day-item {
  position: relative;
  padding-top: 42px;
}

.day-item h4 {
  margin: 7px 0 0;
  color: var(--navy-900);
  font-size: 16px;
}

.day-item::before {
  position: absolute;
  top: 11px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--line);
  content: "";
}

.day-item::after {
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 1px var(--gold-500);
  content: "";
}

.day-item time {
  color: var(--gold-600);
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.day-item h3 {
  margin: 8px 0 5px;
  font-size: 14px;
}

.day-item p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.entry-shell {
  display: grid;
  padding: 70px 0 110px;
  grid-template-columns: .7fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.entry-guide {
  position: sticky;
  top: 124px;
}

.entry-guide h1 {
  margin: 12px 0 18px;
  color: var(--navy-900);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.25;
}

.entry-guide p {
  color: var(--muted);
}

.entry-process {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.entry-process strong {
  color: var(--navy-900);
  font-size: 14px;
}

.entry-process p {
  margin: 8px 0 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.entry-process small {
  color: var(--muted);
  font-size: 10px;
}

.demo-alert {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #e7bd75;
  border-radius: var(--radius-sm);
  color: #734600;
  background: #fff2d8;
  font-size: 12px;
  font-weight: 700;
}

.entry-notice {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid #b8d7d5;
  border-radius: var(--radius-sm);
  color: #1d5f5c;
  background: #edf8f7;
  font-size: 12px;
  font-weight: 700;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.entry-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-section + .form-section {
  margin-top: 38px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.form-section h2 {
  margin: 0 0 24px;
  color: var(--navy-900);
  font-size: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.required {
  margin-left: 7px;
  color: var(--coral-500);
  font-size: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cbd6db;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfc;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--teal-600);
}

.submit-button {
  display: inline-flex;
  width: 100%;
  min-height: 62px;
  margin-top: 28px;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--white);
  background: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
}

.submit-button::after {
  content: "→";
  font-size: 20px;
}

.submit-button:disabled {
  cursor: wait;
  opacity: .7;
}

.form-result {
  display: none;
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  background: #edf2f4;
}

.form-result.is-visible {
  display: block;
}

.form-result.is-success {
  color: #205d47;
  background: #e4f5ed;
}

.form-result.is-error {
  color: #8a2d25;
  background: #fff0ed;
}

.demo-result {
  display: none;
  margin-top: 22px;
  padding: 24px;
  border-radius: var(--radius-sm);
  color: #205d47;
  background: #e4f5ed;
}

.demo-result.is-visible {
  display: block;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 48px;
  color: var(--navy-900);
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.legal-updated {
  margin-top: 36px;
  font-size: 12px;
}

/* Recruitment portal */
.portal-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgb(47 124 122 / 30%), transparent 34%),
    radial-gradient(circle at 84% 86%, rgb(209 155 77 / 20%), transparent 32%),
    var(--navy-950);
}

.portal-header {
  display: flex;
  width: min(1320px, calc(100% - 64px));
  min-height: 112px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
}

.portal-header .brand img {
  width: 190px;
}

.portal-header-entry {
  padding: 12px 22px;
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.portal-main {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 54px 0 88px;
}

.portal-intro {
  display: grid;
  margin-bottom: 54px;
  grid-template-columns: minmax(420px, 1fr) minmax(300px, .65fr);
  gap: 60px;
  align-items: end;
}

.portal-kicker {
  grid-column: 1 / -1;
  margin: 0 0 -38px;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.portal-intro h1 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(50px, 6.4vw, 92px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.06em;
}

.portal-intro > p:last-child {
  margin: 0 0 8px;
  color: #b9c9d2;
  font-size: 15px;
}

.portal-philosophy {
  display: grid;
  margin: 0 0 30px;
  padding: 24px 28px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 18px;
  align-items: center;
  background: rgb(255 255 255 / 5%);
  grid-template-columns: 150px minmax(280px, .8fr) minmax(300px, 1.2fr);
  gap: 28px;
}

.portal-philosophy > span {
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
}

.portal-philosophy strong {
  color: var(--white);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  white-space: nowrap;
}

.portal-philosophy strong b {
  margin: 0 9px;
  color: var(--gold-300);
  font-weight: 400;
}

.portal-philosophy p {
  margin: 0;
  color: #aebfc8;
  font-size: 12px;
  line-height: 1.85;
}

.workplace-choice {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(380px, auto);
  gap: 18px;
}

.choice-card {
  --choice-overlay: linear-gradient(115deg, rgb(4 24 37 / 96%) 0%, rgb(4 24 37 / 88%) 48%, rgb(4 24 37 / 34%) 100%);
  position: relative;
  display: flex;
  min-height: 330px;
  padding: 34px;
  border: 0;
  border-radius: 24px;
  flex-direction: column;
  color: var(--white);
  background-color: var(--navy-950);
  background-position: 68% center;
  background-size: cover;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 14%), 0 14px 38px rgb(0 0 0 / 15%);
  transition: transform .25s ease, box-shadow .25s ease;
}

.choice-card::before {
  position: absolute;
  inset: 0;
  background: var(--choice-overlay);
  content: "";
  z-index: 0;
  pointer-events: none;
}

.choice-card::after {
  display: none;
}

.choice-card:hover {
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 20%), 0 24px 70px rgb(0 0 0 / 24%);
  transform: translateY(-8px);
}

.choice-card--convenience {
  --choice-accent: #f4c46e;
  --choice-overlay: linear-gradient(105deg, rgb(5 25 38 / 98%) 0%, rgb(5 25 38 / 91%) 43%, rgb(5 25 38 / 28%) 76%, rgb(5 25 38 / 14%) 100%);
  min-height: 380px;
  padding: 40px;
  background-image: url("/hero-illustration-v6.webp");
  background-position: 66% center;
}

.choice-card--day {
  --choice-accent: #9ee1d5;
  --choice-overlay: linear-gradient(118deg, rgb(5 31 39 / 97%) 0%, rgb(5 31 39 / 88%) 55%, rgb(5 31 39 / 35%) 100%);
  background-image: url("/hero-supermarket-day-v1.webp");
  background-position: 66% center;
}

.choice-card--night {
  --choice-accent: #b8d8ed;
  --choice-overlay: linear-gradient(118deg, rgb(4 22 39 / 98%) 0%, rgb(4 22 39 / 89%) 56%, rgb(4 22 39 / 38%) 100%);
  background-image: url("/hero-supermarket-night-v1.webp");
  background-position: 67% center;
}

.choice-card--day,
.choice-card--night {
  min-height: 380px;
  padding: 28px 30px;
}

.choice-card-number {
  position: absolute;
  top: 25px;
  right: 30px;
  color: rgb(255 255 255 / 42%);
  font-family: Georgia, serif;
  font-size: 42px;
  z-index: 1;
}

.choice-card-type {
  position: relative;
  z-index: 1;
  color: var(--choice-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
}

.choice-card strong {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  color: var(--white);
  text-shadow: 0 3px 20px rgb(0 0 0 / 30%);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.2;
}

.choice-card strong.choice-card-title--long {
  font-size: clamp(27px, 2.4vw, 35px);
  line-height: 1.35;
}

.choice-card--convenience strong.choice-card-title--long {
  max-width: 540px;
  margin-top: 52px;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.12;
}

.choice-card--convenience .choice-card-copy {
  max-width: 420px;
  font-size: 15px;
}

.choice-card--convenience .choice-card-link {
  font-size: 15px;
}

.choice-card--convenience .choice-card-link b {
  width: 54px;
  height: 54px;
}

.choice-card--day strong,
.choice-card--night strong {
  margin-top: 24px;
  font-size: clamp(25px, 2.2vw, 32px);
}

.choice-card--day .choice-card-role,
.choice-card--night .choice-card-role {
  margin-top: 4px;
}

.choice-card--day .choice-card-copy,
.choice-card--night .choice-card-copy {
  margin-top: 8px;
}

.choice-card-role {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  color: var(--choice-accent);
  font-size: 13px;
  font-weight: 900;
}

.choice-card-copy {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin-top: 16px;
  color: #d7e2e8;
  font-size: 13px;
}

.choice-card-link {
  position: relative;
  z-index: 1;
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  color: var(--choice-accent);
  font-size: 13px;
  font-weight: 900;
}

.choice-card-link b {
  display: grid;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  place-items: center;
  color: var(--navy-950);
  background: var(--choice-accent);
}

.portal-footer {
  display: flex;
  width: min(1320px, calc(100% - 64px));
  min-height: 78px;
  margin: 0 auto;
  border-top: 1px solid rgb(255 255 255 / 12%);
  align-items: center;
  justify-content: space-between;
  color: #8196a2;
  font-size: 11px;
}

/* Simple business pages */
.business-page {
  --business-accent: var(--teal-600);
  --business-tint: var(--teal-100);
}

.business-page--night {
  --business-accent: var(--navy-700);
  --business-tint: #dce6ec;
}

.business-hero {
  position: relative;
  padding: 94px 0 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--business-accent) 72%, transparent), transparent 30%),
    var(--navy-950);
  overflow: hidden;
}

.business-hero::after {
  position: absolute;
  top: -190px;
  right: -110px;
  width: 520px;
  height: 520px;
  border: 82px solid rgb(255 255 255 / 5%);
  border-radius: 50%;
  content: "";
}

.business-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 54px;
  align-items: center;
}

.business-hero-side {
  display: grid;
  gap: 14px;
}

.business-hero-visual {
  margin: 0;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 22px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  box-shadow: 0 24px 64px rgb(0 0 0 / 28%);
}

.business-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.business-label {
  margin: 0 0 18px;
  color: var(--gold-300);
  font-family: Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
}

.business-name {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--business-tint);
  font-size: 12px;
  font-weight: 900;
}

.business-hero h1 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(46px, 5.8vw, 76px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.05em;
}

.business-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: #c0d0d8;
  font-size: 15px;
}

.business-hero-actions {
  display: flex;
  margin-top: 34px;
  gap: 12px;
}

.business-hero .button--primary {
  color: var(--navy-950);
  background: var(--business-tint);
}

.business-hero .button--outline {
  border-color: rgb(255 255 255 / 42%);
  color: var(--white);
}

.business-keyfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.business-keyfacts div {
  padding: 16px 14px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 16px;
  background: rgb(255 255 255 / 7%);
  backdrop-filter: blur(8px);
}

.business-keyfacts small {
  display: block;
  margin-bottom: 7px;
  color: #9fb3be;
  font-size: 11px;
}

.business-keyfacts strong {
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(18px, 1.65vw, 23px);
  line-height: 1.1;
}

.business-keyfacts em {
  margin-left: 3px;
  font-family: inherit;
  font-size: .52em;
  font-style: normal;
}

.simple-work-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.simple-work-grid article {
  min-height: 225px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.simple-work-grid article > span {
  color: var(--business-accent);
  font-family: Georgia, serif;
  font-size: 30px;
}

.simple-work-grid h3 {
  margin: 34px 0 8px;
  color: var(--navy-900);
  font-size: 18px;
}

.simple-work-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.business-note {
  margin-top: 18px;
  padding: 18px 22px;
  border-left: 4px solid var(--business-accent);
  color: var(--navy-900);
  background: var(--business-tint);
  font-size: 13px;
  font-weight: 800;
}

.conditions-shell {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: start;
}

.conditions-heading {
  position: sticky;
  top: 130px;
}

.conditions-heading p {
  color: var(--muted);
  font-size: 13px;
}

.business-conditions {
  margin: 0;
  border-top: 1px solid #cad6dc;
}

.business-conditions > div {
  display: grid;
  padding: 23px 0;
  border-bottom: 1px solid #cad6dc;
  grid-template-columns: 130px 1fr;
  gap: 24px;
}

.business-conditions dt {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 900;
}

.business-conditions dd {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.business-conditions dd strong {
  color: var(--navy-900);
  font-size: 18px;
}

.limited-offer {
  grid-column: 2;
  margin: -44px 0 0;
  padding: 18px 20px;
  border: 1px solid #e7bd75;
  border-radius: 12px;
  color: #734600;
  background: #fff2d8;
  font-size: 12px;
}

.limited-offer span {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 900;
}

.business-fit {
  padding: 82px 0;
  color: var(--white);
  background: var(--business-accent);
}

.business-fit-inner {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.business-fit .eyebrow {
  color: var(--gold-300);
}

.business-fit h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.3;
}

.business-fit ul {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}

.business-fit li {
  padding: 17px 19px;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 12px;
  background: rgb(255 255 255 / 9%);
  font-size: 13px;
  font-weight: 800;
}

.business-fit li::before {
  margin-right: 9px;
  color: var(--gold-300);
  content: "✓";
}

.business-cta {
  padding: 82px 0;
  color: var(--white);
  background: var(--navy-950);
}

.business-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.business-cta small {
  color: var(--gold-300);
  font-family: Georgia, serif;
  letter-spacing: .16em;
}

.business-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(29px, 3.5vw, 46px);
  line-height: 1.3;
}

@media (max-width: 900px) {
  .portal-intro,
  .business-hero-inner,
  .conditions-shell,
  .business-fit-inner {
    grid-template-columns: 1fr;
  }

  .portal-kicker {
    margin-bottom: -40px;
  }

  .portal-philosophy {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .workplace-choice {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .choice-card--convenience {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
    padding: 32px;
  }

  .choice-card--day,
  .choice-card--night {
    min-height: 340px;
  }

  .choice-card--convenience strong.choice-card-title--long {
    margin-top: 42px;
    font-size: clamp(32px, 4.8vw, 40px);
  }

  .choice-card--day strong,
  .choice-card--night strong {
    font-size: clamp(24px, 4vw, 30px);
  }

  .conditions-heading {
    position: static;
  }

  .limited-offer {
    grid-column: auto;
    margin-top: -46px;
  }
}

@media (max-width: 720px) {
  .workplace-choice {
    grid-template-columns: 1fr;
  }

  .choice-card--convenience {
    grid-column: auto;
  }

  .choice-card--day,
  .choice-card--night {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .portal-header,
  .portal-main,
  .portal-footer {
    width: calc(100% - 32px);
  }

  .portal-header {
    min-height: 86px;
  }

  .portal-header .brand img {
    width: 148px;
  }

  .portal-header-entry {
    padding: 9px 13px;
    font-size: 11px;
  }

  .portal-main {
    padding: 38px 0 60px;
  }

  .portal-intro {
    margin-bottom: 38px;
    gap: 24px;
  }

  .portal-kicker {
    margin-bottom: 0;
  }

  .portal-intro h1 {
    font-size: 44px;
  }

  .workplace-choice,
  .simple-work-grid,
  .business-fit ul {
    grid-template-columns: 1fr;
  }

  .choice-card--convenience {
    grid-column: auto;
    min-height: 330px;
    padding: 30px;
  }

  .choice-card {
    min-height: 260px;
    padding: 28px;
  }

  .choice-card strong {
    margin-top: 32px;
  }

  .choice-card--convenience strong.choice-card-title--long {
    margin-top: 42px;
    font-size: 40px;
  }

  .portal-footer {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .business-hero {
    padding: 66px 0 62px;
  }

  .business-hero-inner {
    gap: 46px;
  }

  .business-hero-visual {
    border-radius: 16px;
    aspect-ratio: 4 / 3;
  }

  .business-hero h1 {
    font-size: 48px;
  }

  .business-hero-actions {
    flex-direction: column;
  }

  .business-hero-actions .button {
    width: 100%;
  }

  .business-keyfacts {
    grid-template-columns: 1fr;
  }

  .business-keyfacts div {
    display: grid;
    padding: 18px;
    align-items: center;
    grid-template-columns: 92px 1fr;
  }

  .business-keyfacts small {
    margin-bottom: 0;
  }

  .business-keyfacts strong {
    font-size: 21px;
  }

  .simple-work-grid article {
    min-height: 190px;
  }

  .business-conditions > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .business-fit-inner {
    gap: 32px;
  }

  .business-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .business-cta .button {
    width: 100%;
  }
}

@media (max-width: 1040px) {
  .global-nav {
    gap: 14px;
  }

  .global-nav a {
    font-size: 11px;
  }

  .nav-entry {
    padding: 0 18px !important;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 70px 6vw 50px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-visual::after {
    background: linear-gradient(180deg, #fbf7ef 0, transparent 18%);
  }

  .numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-facts {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  :root {
    --content: min(100% - 28px, 680px);
  }

  .prototype-bar {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 10px;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 148px;
  }

  .menu-button {
    display: block;
  }

  .global-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    max-height: calc(100dvh - 70px);
    padding: 10px 20px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-950);
    box-shadow: 0 20px 38px rgb(6 24 39 / 28%);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 11px 4px;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    font-size: 14px;
  }

  .nav-entry {
    margin-top: 10px;
    justify-content: center;
  }

  .section {
    padding: 82px 0;
  }

  .intro-grid,
  .people-grid,
  .benefits-layout {
    grid-template-columns: 1fr;
  }

  .selection-flow-grid {
    grid-template-columns: 1fr;
  }

  .store-responsibility {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .person-card {
    grid-template-columns: 1fr;
  }

  .person-photo {
    height: auto;
    min-height: 0;
  }

  .jobs-layout {
    grid-template-columns: 1fr;
  }

  .job-feature {
    min-height: 460px;
    padding: 32px;
  }

  .career-role-strip {
    grid-template-columns: 1fr;
  }

  .training-layout {
    grid-template-columns: 1fr;
  }

  .training-aside {
    position: static;
  }

  .career-map {
    grid-template-columns: 1fr;
  }

  .career-branches {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .mobile-actions {
    display: flex;
  }

  .job-summary {
    grid-template-columns: 1fr 1fr;
  }

  .summary-item:nth-child(2) {
    border-right: 0;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .day-schedule {
    grid-template-columns: 1fr 1fr;
  }

  .entry-shell {
    grid-template-columns: 1fr;
  }

  .entry-guide {
    position: static;
  }
}

@media (max-width: 540px) {
  html {
    scroll-padding-top: 110px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 58px 20px 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 12.5vw, 58px);
  }

  .hero h1.hero-title--long {
    font-size: clamp(38px, 11vw, 50px);
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-career-card {
    right: 18px;
    bottom: 18px;
    width: 128px;
    height: 128px;
  }

  .hero-career-card strong {
    font-size: 38px;
  }

  .section-heading {
    font-size: 34px;
  }

  .feature-card {
    min-height: 290px;
  }

  .career-branches,
  .career-facts,
  .numbers,
  .job-summary,
  .work-grid,
  .day-schedule,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .summary-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline li {
    padding-left: 68px;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .timeline-time {
    padding-top: 0;
  }

  .timeline-content {
    padding: 20px;
  }

  .benefit-list {
    grid-template-columns: 1fr;
  }

  .conditions > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .job-feature {
    min-height: 430px;
    padding: 28px;
    background:
      linear-gradient(180deg, rgb(6 24 39 / 22%) 0%, rgb(6 24 39 / 94%) 77%),
      url("/hero-illustration-v6.webp") 62% center / cover no-repeat;
    justify-content: flex-end;
  }

  .job-feature::before {
    top: 20px;
    left: 20px;
  }

  .job-feature-order {
    display: none;
  }

  .job-feature h3 {
    font-size: 32px;
  }

  .job-feature p {
    font-size: 14px;
  }

  .supermarket-block {
    padding: 28px 20px;
  }

  .supermarket-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .supermarket-grid {
    grid-template-columns: 1fr;
  }

  .supermarket-card {
    min-height: 350px;
    padding: 26px;
  }

  .career-role-strip {
    padding: 30px 22px;
    gap: 28px;
  }

  .career-role-links {
    grid-template-columns: 1fr;
  }

  .person-photo {
    height: auto;
  }

  .person-body {
    padding: 28px 24px 30px;
  }

  .person-story section {
    padding-left: 17px;
  }

  .people-note {
    text-align: left;
  }

  .page-hero {
    padding: 70px 0 58px;
  }

  .job-summary {
    margin-top: -24px;
  }

  .entry-form {
    padding: 26px 20px;
  }

  .field--full {
    grid-column: auto;
  }
}

/* Application management */
.admin-body {
  min-height: 100vh;
  color: var(--ink);
  background: #f1f5f5;
}

.admin-header {
  display: flex;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  align-items: center;
  gap: 22px;
  background: var(--white);
}

.admin-header img {
  display: block;
  width: 118px;
  height: auto;
}

.admin-header > div {
  display: grid;
  padding-left: 22px;
  border-left: 1px solid var(--line);
  gap: 2px;
}

.admin-header span {
  color: var(--teal-600);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.admin-header strong {
  color: var(--navy-950);
  font-size: 16px;
}

.admin-main {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.admin-intro {
  display: flex;
  margin-bottom: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.admin-intro h1 {
  margin: 4px 0 8px;
  color: var(--navy-950);
  font-size: clamp(30px, 4vw, 48px);
}

.admin-intro p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.admin-refresh,
.application-response button {
  min-height: 44px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--navy-950);
  cursor: pointer;
  font-weight: 800;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(180px, .7fr) 1fr;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  align-items: end;
  gap: 18px;
  background: var(--white);
}

.admin-toolbar label,
.application-response label {
  display: grid;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  gap: 7px;
}

.admin-toolbar input,
.admin-toolbar select,
.application-response select,
.application-response textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cbd6db;
  border-radius: 9px;
  color: var(--ink);
  background: #fbfcfc;
}

.admin-user {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 20px 0;
  gap: 12px;
}

.admin-summary > div {
  display: flex;
  padding: 17px 19px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.admin-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-summary strong {
  color: var(--navy-950);
  font-size: 24px;
}

.admin-list {
  display: grid;
  gap: 18px;
}

.application-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: 0 8px 24px rgb(12 38 50 / 5%);
}

.application-card__head,
.application-card__head > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.application-card__head {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.application-id {
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
}

.application-card time {
  color: var(--muted);
  font-size: 12px;
}

.notification-badge {
  padding: 6px 10px;
  border-radius: 999px;
  color: #81560a;
  background: #fff2d8;
  font-size: 10px;
  font-weight: 800;
}

.notification-badge--sent {
  color: #205d47;
  background: #e4f5ed;
}

.application-card__grid {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) 1.5fr;
  padding: 22px 0;
  gap: 30px;
}

.application-label {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.application-person h2 {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: 22px;
}

.application-person h2 small {
  font-size: 12px;
}

.application-person a {
  display: block;
  width: fit-content;
  margin-top: 5px;
  color: var(--teal-600);
  font-size: 13px;
  font-weight: 700;
}

.application-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  gap: 16px 24px;
}

.application-details div {
  min-width: 0;
}

.application-details dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.application-details dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 700;
}

.application-message {
  padding: 16px 18px;
  border-radius: 10px;
  background: #f5f8f8;
}

.application-message strong {
  color: var(--navy-900);
  font-size: 11px;
}

.application-message p {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 13px;
  white-space: pre-wrap;
}

.application-response {
  display: grid;
  grid-template-columns: 180px minmax(260px, 1fr) auto auto;
  margin-top: 20px;
  align-items: end;
  gap: 14px;
}

.application-response textarea {
  min-height: 70px;
  resize: vertical;
}

.application-response button:disabled {
  cursor: wait;
  opacity: .6;
}

.save-result {
  min-width: 90px;
  padding-bottom: 13px;
  color: var(--teal-600);
  font-size: 12px;
  font-weight: 700;
}

.admin-auth,
.admin-error,
.admin-empty,
.admin-loading {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.admin-auth h2 {
  margin-top: 0;
  color: var(--navy-950);
}

.admin-auth .button {
  margin-top: 12px;
}

@media (max-width: 820px) {
  .admin-main {
    width: min(100% - 24px, 1240px);
    padding-top: 34px;
  }

  .admin-intro {
    display: grid;
    align-items: start;
  }

  .admin-refresh {
    width: fit-content;
  }

  .admin-toolbar,
  .application-card__grid,
  .application-response {
    grid-template-columns: 1fr;
  }

  .admin-user {
    margin: 0;
    text-align: left;
  }

  .admin-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-card {
    padding: 20px;
  }

  .application-card__head,
  .application-card__head > div {
    align-items: flex-start;
  }

  .application-details {
    grid-template-columns: 1fr;
  }

  .application-response button {
    width: 100%;
  }

  .save-result {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
