/* ============================================================
   株式会社more 採用LP — 共通デザインシステム
   ============================================================ */
:root {
  --ink: #16243d;
  --ink-2: #44546f;
  --ink-3: #7081a0;
  --bg: #fafbfd;
  --mist: #eef3fa;
  --pale: #e3eefb;
  --line: #dfe7f2;
  --navy: #0e2a5c;
  --blue: #1d59b8;
  --sky: #4694e4;
  --g1: #0e2a5c;
  --g2: #1d59b8;
  --g3: #54a2ec;
  --grad: linear-gradient(118deg, var(--g1) 0%, var(--g2) 55%, var(--g3) 100%);
  --grad-soft: linear-gradient(135deg, rgba(14,42,92,.05), rgba(84,162,236,.12));
  --cta: #1d59b8;
  --cta-hover: #16478f;
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --shadow-card: 0 10px 34px rgba(14, 42, 92, .09);
  --shadow-pop: 0 18px 48px rgba(14, 42, 92, .16);
  --sp: 1;
  --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Outfit", sans-serif;
  --font-hand: "Caveat", cursive;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* アンカー遷移時に固定ヘッダー（72px）へ隠れないよう停止位置を上げる */
[id] { scroll-margin-top: 92px; }
/* SP専用の改行 */
.br-sp { display: none; }
@media (max-width: 680px) { .br-sp { display: inline; } }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
.en { font-family: var(--font-en); }
.hand { font-family: var(--font-hand); }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: calc(104px * var(--sp)) 0; }
.section--tint { background: var(--mist); }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 251, 253, .78);
  border-bottom: 1px solid rgba(223, 231, 242, .6);
  transition: background .3s, box-shadow .3s;
}
.header.is-scrolled { background: rgba(250, 251, 253, .94); box-shadow: 0 4px 24px rgba(14,42,92,.06); }
.header__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 28px; height: 72px;
}
.header__brand { display: flex; align-items: baseline; gap: 10px; margin-right: auto; }
.header__brand img { height: 26px; width: auto; }
.header__brand small {
  font-family: var(--font-en); font-size: 10px; letter-spacing: .22em;
  color: var(--ink-3); text-transform: uppercase; font-weight: 600;
}
.gnav { display: flex; align-items: center; gap: 26px; }
.gnav a { font-size: 13.5px; font-weight: 700; color: var(--ink-2); transition: color .2s; white-space: nowrap; }
.gnav a:hover { color: var(--blue); }
/* PC横並びナビは余白・文字を詰めてヘッダー内に収める */
@media (min-width: 1241px) { .gnav { gap: 14px; } .gnav a { font-size: 12.5px; } }
.gnav__drop { position: relative; }
.gnav__drop-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); padding-top: 14px; display: none; }
.gnav__drop:hover .gnav__drop-menu, .gnav__drop:focus-within .gnav__drop-menu { display: block; }
.gnav__drop-menu > a { display: block; padding: 10px 20px; white-space: nowrap; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 8px 24px rgba(14,42,92,.08); }
.gnav__drop-menu > a:first-child { border-radius: 10px 10px 0 0; }
.gnav__drop-menu > a:last-child { border-radius: 0 0 10px 10px; border-bottom: none; }
.btn-entry {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: #fff; font-weight: 700; font-size: 13.5px;
  padding: 11px 22px; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 6px 18px rgba(29, 89, 184, .28);
  transition: transform .2s, box-shadow .2s;
}
.btn-entry:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(29,89,184,.36); }
.menu-toggle { display: none; }

/* mobile nav（PCナビが確実にヘッダー内へ収まる1241px以上でのみ横並び表示） */
@media (max-width: 1240px) {
  .gnav__drop-menu { position: static; transform: none; display: block; padding: 0; box-shadow: none; }
  .gnav__drop-menu > a { box-shadow: none; padding-left: 20px; }
  .gnav {
    position: fixed; inset: 72px 0 auto 0; z-index: 99;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(250,251,253,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px;
    display: none;
  }
  .gnav.is-open { display: flex; }
  .gnav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .menu-toggle {
    display: block; position: relative; width: 44px; height: 44px;
    background: none; border: none; padding: 0; cursor: pointer;
  }
  .menu-toggle span {
    position: absolute; left: 11px; width: 22px; height: 2px;
    background: var(--ink); border-radius: 2px;
    transform-origin: 50% 50%; transition: transform .25s ease, opacity .2s ease;
  }
  .menu-toggle span:nth-child(1) { top: 15px; }
  .menu-toggle span:nth-child(2) { top: 21px; }
  .menu-toggle span:nth-child(3) { top: 27px; }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .header .btn-entry { display: none; }
}

/* ---------- breadcrumb ---------- */
.crumb { display: flex; gap: 10px; font-size: 12px; color: var(--ink-3); padding: 92px 0 0; }
.crumb a:hover { color: var(--blue); }
.crumb li + li::before { content: "›"; margin-right: 10px; color: var(--line); }

/* ---------- section heading ---------- */
.sec-head { text-align: center; margin-bottom: calc(56px * var(--sp)); }
.sec-head h2 {
  font-size: clamp(24px, 3.4vw, 34px); font-weight: 700; letter-spacing: .06em;
  display: inline-flex; align-items: center; gap: 22px;
}
.sec-head h2::before, .sec-head h2::after {
  content: ""; width: 36px; height: 2px; background: var(--blue); opacity: .55; border-radius: 2px;
}
.sec-head .sec-en {
  display: block; margin-top: 10px; font-family: var(--font-en);
  font-size: 11px; letter-spacing: .34em; color: var(--ink-3);
  text-transform: uppercase; font-weight: 600;
}
.sec-head p.lede { max-width: 640px; margin: 18px auto 0; color: var(--ink-2); font-size: 15px; }
.sec-head--left { text-align: left; }
.sec-head--left h2 { gap: 0; }
.sec-head--left h2::before, .sec-head--left h2::after { display: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; border-radius: 999px; border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  text-align: center;
}
.btn--primary {
  background: var(--cta); color: #fff;
  padding: 17px 38px; font-size: 15.5px;
  box-shadow: 0 10px 26px rgba(29,89,184,.3);
}
.btn--primary:hover { background: var(--cta-hover); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(29,89,184,.38); }
.btn--grad { background: var(--grad); color: #fff; padding: 17px 38px; font-size: 15.5px; box-shadow: 0 10px 26px rgba(29,89,184,.3); }
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(29,89,184,.4); }
.btn--ghost {
  background: rgba(255,255,255,.85); color: var(--blue);
  border: 1.5px solid var(--pale); padding: 15px 34px; font-size: 14.5px;
}
.btn--ghost:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--navy); padding: 16px 36px; font-size: 15px; box-shadow: 0 10px 26px rgba(8,20,46,.25); }
.btn--white:hover { transform: translateY(-2px); }
.btn .arr { font-family: var(--font-en); transition: transform .2s; }
.btn:hover .arr { transform: translateX(4px); }
.textlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; color: var(--blue);
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
}
.textlink:hover { opacity: .75; }

/* ---------- hero (TOP) ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(150px * var(--sp)) 0 calc(96px * var(--sp));
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 560px at 88% -10%, rgba(84,162,236,.20), transparent 65%),
    radial-gradient(800px 480px at -8% 100%, rgba(29,89,184,.12), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; display: block; }
.hero__copy { max-width: 540px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__bg-main { position: absolute; left: 34%; width: 66%; top: 0; bottom: 0; overflow: hidden; }
.hero__bg-main img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; filter: brightness(1.04) saturate(.96); }
.hero__bg-fade { position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, #fff 30%, rgba(255,255,255,.86) 40%, rgba(255,255,255,.32) 53%, transparent 68%),
    linear-gradient(to bottom, rgba(255,255,255,.3), transparent 16%, transparent 84%, rgba(255,255,255,.35));
}
.hero__copy h1 {
  font-size: clamp(28px, 3.4vw, 46px); line-height: 1.55; font-weight: 700; letter-spacing: .04em;
}
.hero__copy h1 .ln { display: inline-block; white-space: nowrap; }
.hero__copy h1 .accent {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { margin-top: 26px; font-size: clamp(15px, 1.6vw, 17px); color: var(--ink-2); font-weight: 500; }
.hero__statement { margin-top: 18px; font-weight: 700; color: var(--navy); }
.hero__hand { margin-top: 30px; font-size: 30px; color: var(--sky); transform: rotate(-3deg); display: inline-block; font-family: var(--font-hand); }
.hero__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__photo { position: relative; }
.hero__photo img {
  width: 100%; height: auto; aspect-ratio: 5 / 3.4; object-fit: cover;
  border-radius: 36% 64% 55% 45% / 42% 38% 62% 58%;
  box-shadow: var(--shadow-pop);
}
.hero__photo-unused-legacy::after {
  content: ""; position: absolute; inset: auto -22px -26px auto;
  width: 130px; height: 130px; border-radius: 50%;
  background: var(--grad); opacity: .14;
}
@media (max-width: 880px) {
  .hero { padding: 88px 0 48px; }
  .hero__bg { position: relative; height: 340px; margin-bottom: 28px; overflow: hidden; }
  .hero__bg-main { position: static; left: auto; width: 100%; height: 100%; }
  .hero__bg-fade {
    background: linear-gradient(to bottom, transparent 0%, transparent 52%, rgba(255,255,255,.5) 72%, rgba(255,255,255,.92) 88%, #fff 100%);
  }
  .hero__copy { max-width: none; }
  .hero__copy h1 { margin-top: -34px; position: relative; z-index: 1; }
  .hero__cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero__cta .btn--grad { grid-column: 1 / -1; width: 100%; }
}

/* ---------- gate cards ---------- */
.gates { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 980px) { .gates { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gates { grid-template-columns: 1fr; } }
.gate {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  display: flex; flex-direction: column; min-height: 380px;
  color: #fff; box-shadow: var(--shadow-card);
  transition: transform .3s, box-shadow .3s;
}
.gate:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }
.gate__body { position: relative; z-index: 2; padding: 26px 24px 18px; flex: 1; }
.gate__num { font-family: var(--font-en); font-size: 13px; font-weight: 600; letter-spacing: .18em; opacity: .85; }
.gate__tag { display: block; font-size: 12.5px; font-weight: 700; margin-top: 6px; opacity: .92; }
.gate__copy { margin-top: 14px; font-size: 19px; font-weight: 700; line-height: 1.7; letter-spacing: .03em; }
.gate__photo { position: relative; z-index: 2; height: 150px; margin: 0 14px 14px; border-radius: var(--r-md); overflow: hidden; }
.gate__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.gate:hover .gate__photo img { transform: scale(1.06); }
.gate__arr {
  position: absolute; z-index: 3; right: 22px; bottom: 178px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.22); backdrop-filter: blur(6px);
  display: grid; place-items: center; font-family: var(--font-en); font-size: 15px;
  transition: background .2s, transform .2s;
}
.gate:hover .gate__arr { background: rgba(255,255,255,.38); transform: translateX(3px); }
.gate--1 { background: linear-gradient(160deg, #163a78, #2e6cc4); }
.gate--2 { background: linear-gradient(160deg, #156c79, #2da3a8); }
.gate--3 { background: linear-gradient(160deg, #4a3d92, #7a64c9); }
.gate--4 { background: linear-gradient(160deg, #0e2a5c, #3e8fe0); }

/* featured gate (訪問介護職) */
.gate-feature {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; margin-bottom: 22px;
  border-radius: var(--r-lg); overflow: hidden; color: #fff;
  background: linear-gradient(120deg, #7a4e12, #d99a2b 58%, #f0c869);
  box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s;
}
.gate-feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }
.gate-feature__body { padding: clamp(28px, 3.6vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.gate-feature__num { font-family: var(--font-en); font-size: 13px; font-weight: 600; letter-spacing: .18em; opacity: .85; }
.gate-feature__tag { display: inline-block; font-size: 12.5px; font-weight: 700; margin-top: 6px; }
.gate-feature h3 { margin-top: 12px; font-size: clamp(21px, 2.6vw, 30px); font-weight: 700; line-height: 1.6; letter-spacing: .03em; }
.gate-feature p { margin-top: 14px; font-size: 14px; opacity: .92; max-width: 460px; }
.gate-feature__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.gate-feature__chips span { font-size: 11.5px; font-weight: 700; background: rgba(255,255,255,.18); border-radius: 999px; padding: 5px 13px; }
.gate-feature__more { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; font-size: 14px; font-weight: 700; }
.gate-feature__more .arr { transition: transform .2s; }
.gate-feature:hover .gate-feature__more .arr { transform: translateX(4px); }
.gate-feature__photo { position: relative; min-height: 260px; }
.gate-feature__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 780px) { .gate-feature { grid-template-columns: 1fr; } .gate-feature__photo { min-height: 220px; order: -1; } }

/* ---------- 訪問介護LP ---------- */
.hc-hero { position: relative; overflow: hidden; padding-bottom: calc(72px * var(--sp)); }
.hc-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 480px at 88% -8%, rgba(84,162,236,.16), transparent 62%),
              radial-gradient(620px 420px at 0% 92%, rgba(29,89,184,.07), transparent 60%);
}
.hc-hero__inner { position: relative; display: grid; grid-template-columns: 1fr 1.02fr 300px; gap: 30px; align-items: center; padding-top: 34px; }
.hc-hero h1 { font-size: clamp(28px, 3.9vw, 44px); line-height: 1.5; font-weight: 700; letter-spacing: .03em; }
.hc-hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hc-hero__sub { margin-top: 18px; font-size: 15px; font-weight: 700; color: var(--ink-2); }
.hc-chips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; max-width: 420px; }
.hc-chip {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 12px; text-align: center; box-shadow: 0 4px 14px rgba(14,42,92,.05);
}
.hc-chip svg { width: 24px; height: 24px; color: var(--blue); margin: 0 auto 6px; display: block; }
.hc-chip span { font-size: 11.5px; font-weight: 700; line-height: 1.5; display: block; }
.hc-hero__cta { margin-top: 26px; display: grid; gap: 11px; max-width: 380px; }
.hc-hero__cta .btn { width: 100%; justify-content: space-between; padding-left: 26px; padding-right: 22px; }
.hc-hero__photo img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--shadow-pop); }
.hc-stats { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: 22px 20px; }
.hc-stats h2 { font-size: 15px; font-weight: 700; text-align: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.hc-stats ul { display: grid; gap: 2px; margin-top: 6px; }
.hc-stats li { display: flex; align-items: center; gap: 13px; padding: 11px 2px; border-bottom: 1px dashed var(--line); }
.hc-stats li:last-child { border-bottom: none; }
.hc-stats li svg { width: 26px; height: 26px; color: var(--blue); flex: none; }
.hc-stats__label { font-size: 11.5px; font-weight: 700; color: var(--ink-2); }
.hc-stats__val { font-family: var(--font-en); font-size: 25px; font-weight: 600; color: var(--navy); line-height: 1.15; }
.hc-stats__val small { font-size: .48em; font-family: var(--font-body); margin-left: 2px; }
.hc-stats__note { font-size: 10.5px; color: var(--ink-3); text-align: right; margin-top: 10px; }
@media (max-width: 1100px) { .hc-hero__inner { grid-template-columns: 1fr 1fr; } .hc-stats { grid-column: 1 / -1; } .hc-stats ul { grid-template-columns: repeat(3, 1fr); display: grid; } .hc-stats li { border-bottom: none; } }
@media (max-width: 720px) { .hc-hero__inner { grid-template-columns: 1fr; } .hc-hero__photo { order: -1; } .hc-stats ul { grid-template-columns: repeat(2, 1fr); } }

/* interview row cards */
.hc-int { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 1080px) { .hc-int { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px) { .hc-int { grid-template-columns: 1fr; } }
@media (max-width: 460px) {
  .hc-int-card { grid-template-columns: 1fr; }
  .hc-int-card img { width: 100%; height: 190px; }
}
.hc-int-card {
  display: grid; grid-template-columns: 116px 1fr; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px; box-shadow: var(--shadow-card); transition: transform .3s, box-shadow .3s;
}
.hc-int-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.hc-int-card img { width: 116px; height: 132px; object-fit: cover; border-radius: var(--r-sm); }
.hc-int-card__tag { font-size: 11px; font-weight: 700; color: var(--blue); background: var(--pale); border-radius: 999px; padding: 3px 11px; display: inline-block; white-space: nowrap; }
.hc-int-card__quote { margin-top: 10px; font-size: 15px; font-weight: 700; line-height: 1.7; }
.hc-int-card__meta { margin-top: 10px; font-size: 11.5px; color: var(--ink-3); }

/* type cards */
.hc-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .hc-types { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hc-types { grid-template-columns: 1fr; } }
.hc-type {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px 20px 24px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.hc-type:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }
.hc-type__head { display: flex; align-items: center; gap: 12px; }
.hc-type__head svg { width: 30px; height: 30px; color: var(--blue); flex: none; }
.hc-type__head h3 { font-size: 15.5px; font-weight: 700; line-height: 1.55; }
.hc-type img { margin-top: 16px; width: 100%; aspect-ratio: 4/2.6; object-fit: cover; border-radius: var(--r-sm); }
.hc-type p { margin-top: 14px; font-size: 12.5px; color: var(--ink-2); flex: 1; }
.hc-type .btn { margin-top: 18px; width: 100%; padding: 12px 18px; font-size: 13px; }

/* two-panel: timeline + team */
.hc-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .hc-duo { grid-template-columns: 1fr; } }
.hc-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-card); padding: clamp(24px, 3vw, 38px); }
.hc-panel > h2 { font-size: 20px; font-weight: 700; text-align: center; letter-spacing: .04em; }
.hc-flow { margin-top: 24px; display: grid; gap: 0; }
.hc-flow li { display: grid; grid-template-columns: 30px 62px 1fr; gap: 14px; align-items: start; padding: 13px 0; border-bottom: 1px dashed var(--line); }
.hc-flow li:last-child { border-bottom: none; }
.hc-flow li svg { width: 24px; height: 24px; color: var(--blue); }
.hc-flow__time { font-family: var(--font-en); font-size: 14px; font-weight: 600; color: var(--navy); padding-top: 1px; }
.hc-flow__t { font-size: 14px; font-weight: 700; }
.hc-flow__d { font-size: 12px; color: var(--ink-2); margin-top: 3px; }
.hc-flow-note { font-size: 11px; color: var(--ink-3); margin-top: 14px; }
.hc-team { position: relative; margin: 26px auto 0; width: 100%; max-width: 340px; aspect-ratio: 1; }
.hc-team__ring { position: absolute; inset: 12%; border: 1.5px dashed var(--pale); border-radius: 50%; }
.hc-team__node {
  position: absolute; width: 82px; height: 82px; border-radius: 50%;
  background: var(--mist); border: 1px solid var(--line);
  display: grid; place-content: center; text-align: center; gap: 2px; padding: 6px;
  left: 50%; top: 50%; translate: -50% -50%;
}
.hc-team__node svg { width: 20px; height: 20px; color: var(--blue); margin: 0 auto; }
.hc-team__node b { font-size: 10.5px; font-weight: 700; line-height: 1.35; }
.hc-team__node i { font-size: 9px; font-style: normal; color: var(--ink-3); line-height: 1.3; }
.hc-team__node--c { width: 96px; height: 96px; background: var(--grad); border: none; color: #fff; box-shadow: var(--shadow-card); }
.hc-team__node--c svg { color: #fff; }
.hc-team__node--c i { color: rgba(255,255,255,.8); }
.hc-team__node--n1 { margin-top: -38%; }
.hc-team__node--n2 { margin-left: 36%; margin-top: -12%; }
.hc-team__node--n3 { margin-left: 22%; margin-top: 30%; }
.hc-team__node--n4 { margin-left: -22%; margin-top: 30%; }
.hc-team__node--n5 { margin-left: -36%; margin-top: -12%; }
.hc-team-note { text-align: center; font-size: 13px; color: var(--ink-2); margin-top: 22px; }

/* jobs */
.hc-jobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .hc-jobs { grid-template-columns: 1fr; } }
.hc-job { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .3s; }
.hc-job:hover { transform: translateY(-4px); }
.hc-job__head { display: flex; align-items: center; gap: 12px; }
.hc-job__head svg { width: 30px; height: 30px; color: var(--blue); flex: none; }
.hc-job__head h3 { font-size: 16px; font-weight: 700; }
.hc-job p { margin-top: 12px; font-size: 13px; color: var(--ink-2); flex: 1; }
.hc-job .btn { margin-top: 18px; width: 100%; padding: 13px 18px; font-size: 13.5px; }

/* floating side CTA (desktop) */
.hc-side { position: fixed; right: 0; bottom: 92px; z-index: 88; display: grid; gap: 10px; }
.hc-side a {
  width: 76px; padding: 14px 8px; border-radius: 12px 0 0 12px;
  color: #fff; text-align: center; font-size: 11.5px; font-weight: 700; line-height: 1.5;
  box-shadow: -4px 6px 20px rgba(14,42,92,.22); transition: transform .2s;
}
.hc-side a svg { width: 22px; height: 22px; margin: 0 auto 6px; display: block; }
.hc-side a:hover { transform: translateX(-4px); }
.hc-side__req { background: var(--grad); }
.hc-side__apply { background: linear-gradient(160deg, #2fa48c, #5cc2a5); }
@media (max-width: 980px) { .hc-side { display: none; } }

/* ---------- stats ---------- */
.stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 980px) { .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px 16px 26px; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .3s;
}
.stat:hover { transform: translateY(-4px); }
.stat__icon { width: 44px; height: 44px; margin: 0 auto 12px; color: var(--blue); }
.stat__icon svg { width: 100%; height: 100%; }
.stat__label { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.stat__value { font-family: var(--font-en); font-size: clamp(34px, 4vw, 44px); font-weight: 600; color: var(--navy); line-height: 1.2; margin-top: 4px; }
.stat__value small { font-size: .45em; font-family: var(--font-body); font-weight: 700; margin-left: 2px; }
.stat__note { font-size: 11px; color: var(--ink-3); margin-top: 4px; }
.stats-note { text-align: center; font-size: 11.5px; color: var(--ink-3); margin-top: 18px; }

/* ---------- carousel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 26px; scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track > * { scroll-snap-align: start; flex: 0 0 min(300px, 78vw); }
.carousel__btn {
  position: absolute; top: 38%; z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  box-shadow: var(--shadow-card); color: var(--blue);
  font-family: var(--font-en); font-size: 18px;
  display: grid; place-items: center;
  transition: transform .2s, background .2s;
}
.carousel__btn:hover { background: #fff; transform: scale(1.08); }
.carousel__btn--prev { left: -14px; }
.carousel__btn--next { right: -14px; }
.person__more{margin-top:12px;display:inline-flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;color:var(--blue)}
.person__link:hover .person__more{text-decoration:underline}
.im-modal{position:fixed;inset:0;z-index:200;display:none;align-items:center;justify-content:center;padding:24px}
.im-modal.is-open{display:flex}
.im-modal__backdrop{position:absolute;inset:0;background:rgba(14,26,50,.55)}
.im-modal__panel{position:relative;background:#fff;width:100%;max-width:960px;max-height:88vh;border-radius:20px;box-shadow:0 30px 70px rgba(14,42,92,.28);overflow:hidden;display:flex;flex-direction:column}
.im-modal__close{position:absolute;top:14px;right:14px;z-index:2;width:38px;height:38px;border-radius:50%;border:1px solid var(--line);background:#fff;font-size:18px;line-height:1;cursor:pointer;color:var(--ink-2)}
.im-modal__close:hover{background:var(--mist)}
.im-modal__scroll{overflow-y:auto;padding:0 0 32px}
.im-modal__head{padding:30px 34px 20px}
.im-modal__tag{display:inline-block;font-size:11.5px;font-weight:700;border-radius:999px;padding:5px 13px;color:#fff}
.im-modal__tag--day{background:var(--blue)}
.im-modal__tag--home{background:#a8681c}
.im-modal__title{margin-top:12px;font-size:clamp(19px,2.6vw,25px);font-weight:700;line-height:1.5;color:var(--navy)}
.im-modal__profile{margin-top:10px;font-size:13px;color:var(--ink-2);line-height:1.7}
.im-modal__photo{width:100%;aspect-ratio:4/3;overflow:hidden;background:var(--mist)}
.im-modal__photo img{width:100%;height:100%;object-fit:cover;object-position:50% 0%;border:0}
.im-modal__body{padding:26px 34px 0;color:var(--ink);font-size:14.5px;line-height:1.9}
.im-modal__body h4{margin:26px 0 8px;font-size:15.5px;font-weight:700;color:var(--navy)}
.im-modal__body h4:first-child{margin-top:0}
.im-modal__body p{margin:0}
.im-modal__foot{padding:26px 34px 4px;display:flex;flex-wrap:wrap;gap:16px;align-items:center;border-top:1px solid var(--line);margin-top:26px}
.im-modal__link{font-size:13px;font-weight:700;color:var(--blue)}
@media (max-width:680px){.im-modal{padding:0}.im-modal__panel{max-width:none;max-height:100vh;height:100%;border-radius:0}.im-modal__head{padding:56px 20px 16px}.im-modal__body{padding:22px 20px 0}.im-modal__foot{padding:22px 20px 4px}}

/* ---------- person card ---------- */
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.person:hover { transform: translateY(-5px); box-shadow: var(--shadow-pop); }
.person__photo { aspect-ratio: 4 / 3; overflow: hidden; flex-shrink: 0; background: var(--mist); }
.person__photo img { width: 100%; height: 100%; object-fit: cover; border: 0; transition: transform .5s; }
.person:hover .person__photo img { transform: scale(1.05); }
.person__body { padding: 20px 22px 24px; }
.person__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.person__tags span {
  font-size: 11px; font-weight: 700; color: var(--blue);
  background: var(--pale); border-radius: 999px; padding: 3px 11px;
}
.person__quote { font-size: 15.5px; font-weight: 700; line-height: 1.75; }
.person__link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; border-radius: var(--r-lg); overflow: hidden; border: 0; background: none; padding: 0; font: inherit; text-align: inherit; cursor: pointer; }
.person__link .person__body { background: #fff; border: none; flex: 1; display: flex; flex-direction: column; }
.person__meta { margin-top: 10px; font-size: 12px; color: var(--ink-3); }
.person__en { margin-top: 8px; font-size: 12.5px; color: var(--ink-3); line-height: 1.6; }

/* ---------- feature (icon + text) grid ---------- */
.features { display: grid; gap: 18px; }
.features--3 { grid-template-columns: repeat(3, 1fr); }
.features--4 { grid-template-columns: repeat(4, 1fr); }
.features--5 { grid-template-columns: repeat(5, 1fr); }
.features--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) {
  .features--4, .features--5, .features--6, .features--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .features--5, .features--4 { grid-template-columns: repeat(2, 1fr); }
  .features--3, .features--6 { grid-template-columns: 1fr; }
}
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-card); transition: transform .3s;
}
.feature:hover { transform: translateY(-4px); }
.feature__icon { width: 40px; height: 40px; margin: 0 auto 14px; color: var(--blue); }
.feature__icon svg { width: 100%; height: 100%; }
.feature h3 { font-size: 15.5px; font-weight: 700; letter-spacing: .02em; }
.feature p { font-size: 13px; color: var(--ink-2); margin-top: 8px; line-height: 1.8; }
.feature p.en-note { color: var(--ink-3); font-size: 12px; margin-top: 6px; }

/* ---------- glass panel ---------- */
.glass {
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow-card);
}
body.no-glass .glass { background: #fff; backdrop-filter: none; -webkit-backdrop-filter: none; }

/* ---------- career path ---------- */
.career-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; }
.career-step { text-align: center; padding: 0 8px; }
.career-step__dot {
  width: 58px; height: 58px; margin: 0 auto 8px; border-radius: 50%;
  background: var(--pale); color: var(--blue);
  display: grid; place-items: center;
}
.career-step__dot svg { width: 26px; height: 26px; }
.career-step--hl .career-step__dot { background: var(--grad); color: #fff; }
.career-step p { font-size: 12.5px; font-weight: 700; }
.career-arr { font-family: var(--font-en); color: var(--sky); font-size: 17px; padding-bottom: 26px; }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; align-items: start; }
@media (max-width: 800px) { .faq { grid-template-columns: 1fr; } }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.faq-item button {
  width: 100%; display: flex; align-items: center; gap: 14px;
  background: none; border: none; text-align: left;
  padding: 18px 20px; font-size: 14.5px; font-weight: 700; color: var(--ink);
}
.faq-item button::before { content: "Q."; color: var(--blue); font-family: var(--font-en); font-weight: 600; }
.faq-item button .faq-x {
  margin-left: auto; flex: none; width: 22px; height: 22px; position: relative; color: var(--blue);
}
.faq-item button .faq-x::before, .faq-item button .faq-x::after {
  content: ""; position: absolute; inset: 50% auto auto 50%;
  width: 14px; height: 2px; background: currentColor; border-radius: 2px;
  translate: -50% -50%; transition: transform .3s;
}
.faq-item button .faq-x::after { transform: rotate(90deg); }
.faq-item.is-open button .faq-x::after { transform: rotate(0deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 20px 20px 49px; font-size: 13.5px; color: var(--ink-2); }

/* ---------- entry cards ---------- */
.entry-zone { position: relative; background: var(--grad); color: #fff; overflow: hidden; }
.entry-zone::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 420px at 12% 0%, rgba(255,255,255,.12), transparent 60%);
}
.entry-zone .sec-head h2 { color: #fff; }
.entry-zone .sec-head h2::before, .entry-zone .sec-head h2::after { background: #fff; }
.entry-zone .sec-head .sec-en { color: rgba(255,255,255,.65); }
.entry-cards { position: relative; display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 22px; align-items: stretch; }
@media (max-width: 900px) { .entry-cards { grid-template-columns: 1fr; } }
.entry-card {
  background: #fff; color: var(--ink); border-radius: var(--r-lg);
  padding: 34px 30px 30px; display: flex; flex-direction: column;
  box-shadow: 0 16px 44px rgba(8, 20, 46, .22);
  position: relative; transition: transform .3s;
}
.entry-card:hover { transform: translateY(-5px); }
.entry-card__num { font-family: var(--font-en); font-size: 12px; letter-spacing: .2em; color: var(--ink-3); font-weight: 600; }
.entry-card h3 { font-size: 20px; font-weight: 700; margin-top: 6px; }
.entry-card .entry-card__lead { font-size: 15px; font-weight: 700; color: var(--navy); margin-top: 14px; }
.entry-card p { font-size: 13.5px; color: var(--ink-2); margin-top: 10px; flex: 1; }
.entry-card .btn { margin-top: 22px; width: 100%; }
.entry-card ul.checks { margin-top: 14px; display: grid; gap: 8px; }
.entry-card ul.checks li { font-size: 13px; color: var(--ink-2); display: flex; gap: 9px; align-items: baseline; }
.entry-card ul.checks li::before { content: "✓"; color: var(--blue); font-weight: 700; flex: none; }
.entry-card--main { border: 2.5px solid var(--sky); }
.badge-osusume {
  position: absolute; top: -14px; left: 28px;
  background: #fff; color: var(--blue); border: 1.5px solid var(--sky);
  font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 999px;
  box-shadow: var(--shadow-card);
}

/* ---------- footer CTA ---------- */
.foot-cta { position: relative; padding: calc(90px * var(--sp)) 0; text-align: center; color: #fff; }
.foot-cta h2 { font-size: clamp(24px, 3.6vw, 36px); font-weight: 700; line-height: 1.7; letter-spacing: .05em; }
.foot-cta p { margin-top: 14px; font-size: 15px; opacity: .88; }
.foot-cta .btn { margin-top: 32px; }
.foot-cta .hand { display: block; font-size: 28px; color: rgba(255,255,255,.85); margin-bottom: 14px; transform: rotate(-2deg); }

/* ---------- footer ---------- */
.footer { background: #0b1f44; color: rgba(255,255,255,.78); padding: 54px 0 36px; font-size: 13px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: baseline; gap: 10px; }
.footer__brand img { height: 22px; filter: brightness(0) invert(1); opacity: .92; }
.footer__brand small { font-family: var(--font-en); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; }
.footer nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer nav a { color: #fff; }
.footer nav a:hover { color: #fff; opacity: .75; }
.footer__copy { width: 100%; text-align: center; font-size: 11px; color: rgba(255,255,255,.4); margin-top: 22px; font-family: var(--font-en); letter-spacing: .08em; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 10px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(250,251,253,.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn { padding: 13px clamp(4px, 2vw, 8px); font-size: clamp(10px, 3.4vw, 12.5px); min-height: 46px; white-space: nowrap; }
@media (max-width: 880px) { .sticky-cta { display: grid; grid-template-columns: auto auto auto; gap: clamp(5px, 2.6vw, 10px); padding: 12px clamp(9px, 4vw, 16px) calc(12px + env(safe-area-inset-bottom)); } }

/* ---------- 下層LP hero ---------- */
.lp-hero { position: relative; overflow: hidden; padding-bottom: calc(80px * var(--sp)); }
.lp-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(900px 480px at 92% 0%, rgba(84,162,236,.16), transparent 62%),
    radial-gradient(620px 420px at 0% 90%, rgba(29,89,184,.08), transparent 60%);
}
.lp-hero__inner { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: 50px; align-items: center; padding-top: 40px; }
.lp-hero__label { display: flex; align-items: center; gap: 14px; font-size: 13px; font-weight: 700; color: var(--blue); }
.lp-hero__label .num { font-family: var(--font-en); font-size: 26px; font-weight: 600; color: var(--sky); }
.lp-hero h1 { margin-top: 18px; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.55; font-weight: 700; letter-spacing: .04em; }
.lp-hero h1 .accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-hero__en { margin-top: 10px; font-family: var(--font-en); font-size: 15px; color: var(--sky); font-weight: 500; letter-spacing: .04em; }
.lp-hero__desc { margin-top: 22px; font-size: 15px; color: var(--ink-2); }
.lp-hero__cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.lp-hero__photo { position: relative; }
.lp-hero__photo img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 42% 58% 52% 48% / 46% 40% 60% 54%;
  box-shadow: var(--shadow-pop);
}
.lp-hero__badges { position: absolute; right: -10px; top: -8px; display: grid; gap: 12px; }
.lp-badge {
  width: 104px; height: 104px; border-radius: 50%;
  display: grid; place-content: center; text-align: center;
  font-size: 11px; font-weight: 700; line-height: 1.5; color: var(--navy);
  gap: 2px; padding: 8px;
}
.lp-badge strong { font-size: 13px; }
.lp-badge .en-s { font-family: var(--font-en); font-size: 9px; color: var(--sky); letter-spacing: .06em; font-weight: 600; }
.lp-badge .big { font-family: var(--font-en); font-size: 19px; color: var(--blue); font-weight: 600; }
/* PC：FV写真を大きめに（TOP・下層LP。訪問介護／募集要項は別クラスのため対象外） */
@media (min-width: 881px) {
  .lp-hero__inner { grid-template-columns: 1fr 1.3fr; gap: 44px; }
  .hero__bg-main { left: 29%; width: 71%; }
}
@media (max-width: 880px) {
  .lp-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .lp-hero__badges { position: static; display: flex; flex-wrap: wrap; justify-content: center; margin-top: -52px; }
  .lp-badge { width: 96px; height: 96px; }
}

/* ---------- LP CTA panel ---------- */
.lp-cta-panel {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.4fr; align-items: stretch;
  background: var(--grad); color: #fff; box-shadow: var(--shadow-pop);
}
@media (max-width: 800px) { .lp-cta-panel { grid-template-columns: 1fr; } }
.lp-cta-panel__photo { min-height: 240px; }
.lp-cta-panel__photo img { width: 100%; height: 100%; object-fit: cover; }
.lp-cta-panel__body { padding: clamp(30px, 4.5vw, 52px); }
.lp-cta-panel__kicker { font-size: 13px; font-weight: 700; opacity: .85; }
.lp-cta-panel h2 { font-size: clamp(21px, 2.8vw, 29px); font-weight: 700; line-height: 1.65; margin-top: 8px; }
.lp-cta-panel ul { margin-top: 18px; display: grid; gap: 8px; }
.lp-cta-panel li { font-size: 13.5px; display: flex; gap: 9px; align-items: baseline; opacity: .94; }
.lp-cta-panel li::before { content: "✓"; font-weight: 700; flex: none; }
.lp-cta-panel .btn { margin-top: 26px; }
.lp-cta-panel .sub-link { display: inline-block; margin-top: 16px; margin-left: 18px; font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 2px; }
.lp-cta-panel .sub-link:hover { opacity: .8; }

/* wide variant: photo as a full-width band on top (for wide/short source photos) */
.lp-cta-panel--wide { grid-template-columns: 1fr 1.25fr; }
.lp-cta-panel--wide .lp-cta-panel__photo { min-height: 100%; width: 100%; height: 100%; }
.lp-cta-panel--wide .lp-cta-panel__photo img { object-position: center 40%; }
@media (max-width: 800px) {
  .lp-cta-panel--wide { grid-template-columns: 1fr; }
  .lp-cta-panel--wide .lp-cta-panel__photo { min-height: 0; height: clamp(200px, 40vw, 280px); }
}

/* ---------- misc ---------- */
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span { font-size: 12px; font-weight: 700; color: var(--blue); background: var(--pale); border-radius: 999px; padding: 4px 14px; }
.note-en { font-family: var(--font-en); font-size: 12px; color: var(--ink-3); letter-spacing: .04em; }
.photo-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 640px) { .photo-trio { grid-template-columns: 1fr; } }
.photo-trio img { width: 100%; aspect-ratio: 4 / 3.4; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow-card); }

/* ---------- reveal animation ---------- */
@media (prefers-reduced-motion: no-preference) {
  .anim-ok .reveal { opacity: 0; transform: translateY(26px); }
  .reveal { transition: opacity .7s ease, transform .7s ease; }
  .anim-ok .reveal.is-in { opacity: 1; transform: none; }
  .reveal[data-delay="1"] { transition-delay: .1s; }
  .reveal[data-delay="2"] { transition-delay: .2s; }
  .reveal[data-delay="3"] { transition-delay: .3s; }
  .reveal[data-delay="4"] { transition-delay: .4s; }
}

/* ---------- skip link (a11y) ---------- */
.skip-link {
  position: absolute; left: 8px; top: 8px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 18px; border-radius: 8px;
  transform: translateY(-200%); transition: transform .2s; font-size: 13px; font-weight: 700;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid var(--sky); outline-offset: 2px; }

/* ---------- entry form ---------- */
.form-hero { position: relative; overflow: hidden; padding: 116px 0 36px; }
.form-hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(900px 460px at 90% -10%, rgba(84,162,236,.16), transparent 62%);
}
.form-hero__inner { position: relative; }
.form-hero__chip {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700;
  color: var(--blue); background: var(--pale); border-radius: 999px; padding: 6px 16px;
}
.form-hero h1 { margin-top: 16px; font-size: clamp(25px, 3.4vw, 36px); font-weight: 700; letter-spacing: .04em; }
.form-hero p { margin-top: 12px; color: var(--ink-2); font-size: 14.5px; max-width: 640px; }

.entry-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; padding-bottom: 96px; }
@media (max-width: 900px) { .entry-layout { grid-template-columns: 1fr; } }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-card); padding: clamp(24px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field > label { font-size: 13.5px; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.req { font-size: 10.5px; font-weight: 700; color: #fff; background: var(--blue); border-radius: 4px; padding: 2px 7px; letter-spacing: .04em; }
.opt { font-size: 10.5px; font-weight: 700; color: var(--ink-3); background: var(--mist); border-radius: 4px; padding: 2px 7px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: 13px 15px; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.7; }
.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none' stroke='%231d59b8' stroke-width='2'%3E%3Cpath d='M3 5l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(29,89,184,.12);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }

.seg { display: flex; flex-wrap: wrap; gap: 10px; }
.seg label {
  position: relative; flex: 1; min-width: 120px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--bg);
  padding: 13px 14px; font-size: 14px; font-weight: 700; color: var(--ink-2);
  cursor: pointer; text-align: center; transition: all .2s; display: block;
}
.seg input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg label:hover { border-color: var(--sky); }
.seg label:has(input:checked) { border-color: var(--blue); background: var(--pale); color: var(--navy); box-shadow: 0 0 0 3px rgba(29,89,184,.1); }
.seg label:has(input:focus-visible) { outline: 3px solid var(--sky); outline-offset: 2px; }

.seg label[hidden] { display: none; }
.field[hidden] { display: none; }
.seg--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; }
.seg--grid label { flex: none; min-width: 0; white-space: nowrap; }
@media (max-width: 720px) { .seg--grid { grid-template-columns: repeat(2, 1fr); } }
.field .err-msg { font-size: 12px; color: #c0392b; font-weight: 700; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #c0392b; background: #fdf3f2; }
.field.has-error .err-msg { display: block; }

.form-actions { margin-top: 30px; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.form-actions .btn { width: 100%; max-width: 420px; }
.form-privacy { font-size: 12px; color: var(--ink-3); text-align: center; }
.form-privacy a { color: var(--blue); text-decoration: underline; }

.form-alert {
  border-radius: var(--r-sm); padding: 14px 18px; font-size: 13.5px; font-weight: 700;
  margin-bottom: 24px; display: flex; gap: 10px; align-items: baseline;
}
.form-alert--err { background: #fdf3f2; color: #c0392b; border: 1px solid #f3c9c4; }

.form-aside { display: grid; gap: 18px; position: sticky; top: 92px; }
.aside-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-card); padding: 24px 22px;
}
.aside-card h3 { font-size: 15px; font-weight: 700; display: flex; align-items: flex-start; gap: 9px; line-height: 1.55; text-wrap: balance; }
.aside-card h3 .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex: none; margin-top: .45em; }
.aside-card ul { margin-top: 14px; display: grid; gap: 11px; }
.aside-card li { font-size: 13px; color: var(--ink-2); display: flex; gap: 9px; align-items: baseline; line-height: 1.6; }
.aside-card li::before { content: "✓"; color: var(--blue); font-weight: 700; flex: none; }
.aside-card--grad { background: var(--grad); color: #fff; border: none; }
.aside-card--grad h3 .dot { background: #fff; }
.aside-card--grad li { color: rgba(255,255,255,.92); }
.aside-card--grad li::before { color: #fff; }
.aside-steps { counter-reset: step; display: grid; gap: 12px; margin-top: 14px; }
.aside-steps li { counter-increment: step; display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--ink-2); }
.aside-steps li::before {
  content: counter(step); flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--pale); color: var(--blue); font-family: var(--font-en); font-weight: 600;
  display: grid; place-items: center; font-size: 13px;
}

/* ---------- thank you ---------- */
.thanks { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 140px 0 90px; }
.thanks__icon {
  width: 84px; height: 84px; margin: 0 auto 26px; border-radius: 50%;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-pop);
}
.thanks__icon svg { width: 40px; height: 40px; }
.thanks h1 { font-size: clamp(25px, 3.4vw, 36px); font-weight: 700; letter-spacing: .04em; }
.thanks p { margin-top: 16px; color: var(--ink-2); font-size: 15px; max-width: 560px; margin-left: auto; margin-right: auto; }
.thanks .btn { margin-top: 32px; }
.thanks__recap {
  margin: 30px auto 0; max-width: 440px; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 24px;
  box-shadow: var(--shadow-card);
}
.thanks__recap dl { display: grid; grid-template-columns: auto 1fr; gap: 10px 16px; font-size: 13.5px; }
.thanks__recap dt { color: var(--ink-3); font-weight: 700; }
.thanks__recap dd { color: var(--ink); font-weight: 700; }

/* ---------- confirm screen ---------- */
.confirm-wrap { max-width: 760px; padding-bottom: 96px; }
.confirm-list { margin: 0; display: grid; grid-template-columns: 168px 1fr; }
.confirm-list dt, .confirm-list dd { padding: 15px 0; border-bottom: 1px solid var(--line); margin: 0; }
.confirm-list dt { font-size: 13px; font-weight: 700; color: var(--ink-3); padding-right: 16px; }
.confirm-list dd { font-size: 15px; font-weight: 700; color: var(--ink); word-break: break-word; }
.confirm-list dt:first-of-type, .confirm-list dt:first-of-type + dd { border-top: 1px solid var(--line); }
@media (max-width: 560px) {
  .confirm-list { grid-template-columns: 1fr; }
  .confirm-list dt { padding: 14px 0 2px; border-bottom: none; }
  .confirm-list dd { padding: 0 0 14px; }
  .confirm-list dt:first-of-type + dd { border-top: none; }
}
.confirm-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.confirm-actions .btn { flex: 1; min-width: 200px; }
@media (max-width: 560px) { .confirm-actions { flex-direction: column-reverse; } }

.hc-svc{display:grid;grid-template-columns:repeat(5,1fr);gap:16px;margin-top:34px}
.hc-svc__card{margin:0;text-align:center}
.hc-svc__card img{display:block;width:100%;height:auto}
.hc-svc__card figcaption{padding:12px 8px 16px;font-size:13.5px;font-weight:700;color:var(--navy)}
@media (max-width:900px){.hc-svc{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}.hc-svc__card{flex:0 0 calc(33.333% - 8px);max-width:calc(33.333% - 8px)}}
@media (max-width:560px){.hc-svc{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.hc-svc__card{flex:none;max-width:none}}

.hc-svc__card img{aspect-ratio:1/1;object-fit:contain;object-position:center}

.hc-voices-bg{position:relative;isolation:isolate;overflow:hidden;background:none}
.hc-voices-bg::before{content:"";position:absolute;inset:0;z-index:0;background:url("../../photos/sky-sea-bg.webp") center 40%/cover no-repeat;background-attachment:fixed}
@media (hover:none){.hc-voices-bg::before{background-attachment:scroll}}
.hc-voices-bg::after{content:"";position:absolute;inset:0;z-index:0;background:rgba(255,255,255,.55)}
.hc-voices-bg>.wrap{position:relative;z-index:1}
.hc-jobs-bg{position:relative;isolation:isolate;overflow:hidden;background:none}
.hc-jobs-bg::before{content:"";position:absolute;inset:0;z-index:0;background:url("../../photos/sunset-sea-bg.webp") center 45%/cover no-repeat;background-attachment:fixed}
@media (hover:none){.hc-jobs-bg::before{background-attachment:scroll}}
.hc-jobs-bg::after{content:"";position:absolute;inset:0;z-index:0;background:rgba(255,255,255,.86)}
.hc-jobs-bg>.wrap{position:relative;z-index:1}

/* --- 顔が中央に来るようにトリミング位置を調整 --- */
.gate__photo img, .gate-feature__photo img { object-position: 50% 28%; }
.person__photo img { object-position: 50% 30%; }
.hero__photo img, .lp-hero__photo img, .hc-hero__photo img { object-position: 50% 30%; }
.hc-int-card img, .hc-type img, .pos-card__img, .photo-trio img { object-position: 50% 28%; }
.lp-cta-panel__photo img, .lp-cta-panel--wide .lp-cta-panel__photo img { object-position: 50% 36%; }

.header__brand { align-items: center; padding-right: 1em; }
.header__brand img { height: 44px; }
@media (max-width: 700px) { .header__brand img { height: 36px; } }

#numbers .stats { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { #numbers .stats { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { #numbers .stats { grid-template-columns: repeat(2, 1fr); } }

.career-flow { align-items: flex-start; }
.career-step { display: flex; flex-direction: column; align-items: center; }
.career-arr { padding-bottom: 0; margin-top: 20px; }

/* ===== 入社祝い金 帯バナー ===== */
.join-thanks{padding:24px 20px;text-align:center}
.join-thanks__inner{display:inline-block;max-width:420px;width:100%;text-align:right}
.join-thanks__official{display:block;margin:0 0 7px;text-align:center;font-size:12.5px;font-weight:700;letter-spacing:.02em;line-height:1.5;color:var(--ink-2)}
.join-thanks__official b{color:var(--blue);font-weight:700}
.jt-pop__official{display:block;margin:0 0 7px;text-align:center;font-size:11px;font-weight:700;letter-spacing:.02em;line-height:1.5;color:var(--ink-2)}
.jt-pop__official b{color:var(--blue);font-weight:700}
.join-thanks__limit{display:inline-block;margin-top:8px;padding:3px 12px;border-radius:999px;background:#e8443a;color:#fff;font-size:11px;font-weight:700;letter-spacing:.04em;line-height:1.5}
.join-thanks__link,.join-thanks__media{display:block;width:100%;overflow:hidden}
.join-thanks__link{transition:transform .2s ease}
.join-thanks__link:hover{transform:translateY(-2px)}
.join-thanks__link img,.join-thanks__media img{display:block;width:100%;height:auto}
@media (max-width:768px){.join-thanks{padding:18px 16px}.join-thanks__inner{max-width:340px}}
@media (prefers-reduced-motion:reduce){.join-thanks__link{transition:none}.join-thanks__link:hover{transform:none}}

/* ===== 入社祝い金 スライドインバナー ===== */
.jt-pop{position:fixed;left:50%;bottom:var(--jt-offset,0px);z-index:95;width:min(320px,calc(100% - 24px));padding:14px 12px 14px;background:#fff;border:1px solid var(--line);border-bottom:none;border-radius:14px 14px 0 0;box-shadow:0 -8px 30px rgba(0,0,0,.18);transform:translate(-50%,115%);transition:transform .42s cubic-bezier(.22,.61,.36,1),bottom .2s ease;text-align:center}
.jt-pop.is-open{transform:translate(-50%,0)}
.jt-pop__close{position:absolute;top:2px;right:2px;z-index:3;width:36px;height:36px;display:grid;place-items:center;border:none;background:none;font-size:20px;line-height:1;color:var(--ink-3);cursor:pointer}
.jt-pop__close:hover{color:var(--ink)}
.jt-pop__body{display:block;margin-top:14px;text-align:right}
.jt-pop__limit{display:inline-block;margin-top:7px;padding:2px 10px;border-radius:999px;background:#e8443a;color:#fff;font-size:10px;font-weight:700;letter-spacing:.04em;line-height:1.6}
.jt-pop__link{display:block;overflow:hidden}
.jt-pop__link img{display:block;width:100%;height:auto}
@media (prefers-reduced-motion:reduce){.jt-pop{transition:none}}

/* ---------- 外国人材 募集職種カード ---------- */
.g-job--merged{max-width:760px;margin:0 auto}
.g-job__desc{margin-top:14px}
.g-job__tags{margin-top:14px;justify-content:flex-start}
.g-req{margin-top:24px;padding-top:24px;border-top:1px solid var(--line)}
.g-req__title{font-size:15px;font-weight:700;letter-spacing:.04em;color:var(--navy)}
.g-req__summary{margin-top:12px;display:flex;flex-wrap:wrap;gap:7px;list-style:none}
.g-req__summary li{font-size:11.5px;font-weight:700;color:var(--ink-2);background:var(--mist);border:1px solid var(--line);border-radius:6px;padding:5px 11px}
.g-req__acc{margin-top:14px}
.g-req__acc summary{display:inline-flex;align-items:center;gap:8px;padding:4px 0;font-size:13px;font-weight:700;color:var(--blue);cursor:pointer;list-style:none;border-bottom:1.5px solid currentColor}
.g-req__acc summary::-webkit-details-marker{display:none}
.g-req__chev{width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;rotate:45deg;translate:0 -2px;transition:rotate .2s}
.g-req__acc[open] .g-req__chev{rotate:225deg;translate:0 2px}
.g-req__grid{display:grid;grid-template-columns:1fr 1fr;gap:26px;margin-top:20px}
.g-req__col h5{font-size:13px;font-weight:700;color:var(--navy);padding-bottom:9px;border-bottom:2px solid var(--pale)}
.g-req__note{margin-top:9px;font-size:11.5px;color:var(--ink-3)}
.g-req__list{margin-top:11px;display:grid;gap:9px;list-style:none}
.g-req__list li{font-size:12.5px;line-height:1.75;color:var(--ink-2);display:flex;gap:8px;align-items:baseline}
.g-req__list li::before{content:"✓";flex:none;color:var(--blue);font-weight:700}
.g-req__foot{margin-top:24px;padding-top:24px;border-top:1px solid var(--line);text-align:center}
.g-req__lead{font-size:13px;font-weight:700;color:var(--ink-2)}
.g-req__foot .btn{margin-top:14px}
@media (max-width:768px){.g-req__grid{grid-template-columns:1fr;gap:20px}.g-req__foot .btn{width:100%}}

/* ---------- 下層LP hero：SP版共通レイアウト（左＝メッセージ／右＝写真） ---------- */
@media (max-width:680px){
.crumb{padding:84px 0 0;font-size:11px;position:relative;z-index:2}
.lp-hero{padding-bottom:30px}
.lp-hero__inner{display:block;padding-top:0;gap:0}
.lp-hero__inner>div:first-child{position:relative;z-index:2;padding-top:14px}
.lp-hero__photo{position:static;margin-top:6px}
.lp-hero__photo img{position:absolute;top:0;right:-24px;z-index:0;width:64%;height:clamp(190px,28vh,220px);aspect-ratio:auto;border-radius:0;box-shadow:none!important;filter:none;object-fit:cover;-webkit-mask-image:linear-gradient(to right,transparent 0%,rgba(0,0,0,.10) 18%,rgba(0,0,0,.62) 42%,rgba(0,0,0,.94) 64%,#000 80%),linear-gradient(to bottom,rgba(0,0,0,.45) 0%,#000 16%,#000 46%,rgba(0,0,0,.3) 74%,transparent 96%);mask-image:linear-gradient(to right,transparent 0%,rgba(0,0,0,.10) 18%,rgba(0,0,0,.62) 42%,rgba(0,0,0,.94) 64%,#000 80%),linear-gradient(to bottom,rgba(0,0,0,.45) 0%,#000 16%,#000 46%,rgba(0,0,0,.3) 74%,transparent 96%);-webkit-mask-composite:source-in;mask-composite:intersect}
.lp-hero__inner::after{content:none}
.lp-hero__label{font-size:11px;gap:9px}
.lp-hero__label .num{font-size:21px}
.lp-hero h1{margin-top:8px;font-size:26px;line-height:1.45;max-width:62%;text-shadow:0 1px 6px rgba(255,255,255,.9)}
.lp-hero__inner>div:first-child>p:not(.lp-hero__label){max-width:none;text-align:left;text-shadow:0 1px 6px rgba(255,255,255,.92)}
.lp-hero__en{margin-top:10px;font-size:13px}
.lp-hero__desc{margin-top:10px;font-size:13px;line-height:1.8}
.lp-hero .hero__hand{display:none}
.lp-hero__cta{margin-top:18px;display:grid;grid-template-columns:1fr 1fr;gap:8px;max-width:none}
.lp-hero__cta .btn{width:100%;min-height:50px;font-size:13.5px;padding-left:14px;padding-right:14px;justify-content:center}
.lp-hero__cta .btn--grad{grid-column:1 / -1;font-size:14px}
.lp-hero__badges{margin-top:14px!important}
}
@media (max-width:680px) and (max-height:700px){
.crumb{padding-top:80px}
.lp-hero__photo img,.lp-hero__inner::after{height:clamp(174px,25vh,198px)}
.lp-hero h1{font-size:24px}
.lp-hero__cta{margin-top:14px}
}
@media (max-width:360px){
.lp-hero__photo img,.lp-hero__inner::after{width:56%}
.lp-hero h1{font-size:23px;max-width:72%}
}
