@charset "UTF-8";
/* ============================================================
   株式会社柄谷工務店 採用サイト（中途採用）
   参照サイトのデザイン言語（濃色ベース／極太アウトライン見出し／
   巨大連番／縦組みコピー／チップ見出し／READ MORE カード／
   番号タイル／大型ピル型CTA／エネルギーグラフィック）を、
   柄谷ブランドカラーへマッピングしたもの。
   ============================================================ */

:root {
  /* 参照サイトの黒＋濃緑を、柄谷のネイビーへ置き換えた濃色スケール */
  --bk: #04101f;
  --bk2: #071b33;
  --bk3: #0a2547;
  --navy: #003f98;
  --navy-d: #002f70;

  --accent: #ffcf00;
  --accent-l: #ffe566;
  --accent-d: #f0a800;
  --sky: #81cde4;

  --white: #ffffff;
  --ink: #0b1a33;
  --on-dark: #e6eef8;
  --on-dark-mute: #a9bdd6;
  --line-dark: rgba(129, 205, 228, .28);
  --line-light: #dbe5f0;

  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;

  --container: 1080px;
  --gutter: 18px;
  --header-h: 60px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 8px);
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: var(--on-dark);
  background: var(--bk);
  overflow-x: hidden;
  font-feature-settings: "palt" 1;
}
h1, h2, h3, h4, p, ul, ol, li, dl, dt, dd, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--sky); text-decoration: none; transition: color .25s, opacity .25s; }
b, strong { font-weight: 700; }
em { font-style: normal; }
small { font-size: .8em; }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.u-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip-path: inset(50%); white-space: nowrap;
}
.skip-link {
  position: absolute; top: -60px; left: 12px; z-index: 300;
  padding: 10px 16px;
  color: var(--ink); background: var(--accent);
  font-weight: 700; border-radius: 0 0 8px 8px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }
.table-wrap { overflow-x: auto; }

/* ============================================================
   共通パーツ
   ============================================================ */

/* --- ピル型CTA（参照サイトのエントリーボタン） --- */
.pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  width: 100%;
  max-width: 420px;
  padding: 18px 26px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(180deg, var(--accent-l), var(--accent) 55%, var(--accent-d));
  border: 2px solid #fff5c2;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(255, 207, 0, .3), inset 0 2px 0 rgba(255, 255, 255, .7);
  transition: transform .2s, box-shadow .2s, filter .2s;
}
.pill:hover {
  color: var(--ink);
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 207, 0, .42), inset 0 2px 0 rgba(255, 255, 255, .7);
}
.pill__label { font-size: 1.0625rem; letter-spacing: .02em; }
.pill__chev { font-size: 1.125rem; line-height: 1; opacity: .85; }
.pill--lg { padding: 22px 30px; }
.pill--lg .pill__label { font-size: 1.25rem; }
.pill--md { padding: 16px 24px; }
.pill--sm {
  width: auto; max-width: none;
  padding: 10px 18px;
  border-width: 1px;
  box-shadow: 0 4px 14px rgba(255, 207, 0, .28);
}
.pill--sm .pill__label { font-size: .8125rem; }
.pill--sm .pill__chev { font-size: .875rem; }

/* --- チップ見出し（参照サイトの白フチ小見出し） --- */
.chip {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 8px 20px;
  color: var(--white);
  font-family: var(--font-ja);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .55);
}
.chip--dark { color: var(--navy); border-color: rgba(0, 63, 152, .4); }

/* --- セクション見出し --- */
.sec-h { display: block; margin-bottom: 32px; text-align: center; }
.sec-h__en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 13vw, 4.5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .03em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sky);
  opacity: .5;
}
.sec-h__ja {
  display: block;
  margin-top: -.14em;
  font-size: clamp(1.375rem, 6.2vw, 2.125rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--white);
}
.sec-h--dark .sec-h__en { -webkit-text-stroke: 1.5px var(--navy); opacity: .35; }
.sec-h--dark .sec-h__ja { color: var(--navy); }
.sec-h--sub { margin-top: 56px; }

/* --- 極太アウトライン文字（参照サイトの「正社員募集」表現） --- */
.outline {
  color: var(--accent);
  -webkit-text-stroke: 2px var(--bk);
  paint-order: stroke fill;
}
.outline-lg {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 2px var(--sky);
}
.mark {
  position: relative;
  background: linear-gradient(transparent 58%, rgba(255, 207, 0, .85) 58%, rgba(255, 207, 0, .85) 88%, transparent 88%);
}

/* --- エネルギーグラフィック（参照サイトの炎に相当） --- */
.burn { position: relative; padding: 44px 0 24px; text-align: center; }
.burn__spark {
  position: absolute;
  left: 50%; bottom: 0;
  z-index: 0;
  width: min(420px, 100%);
  transform: translateX(-50%);
  opacity: .68;
  filter: blur(.5px);
  pointer-events: none;
}
.burn__copy { position: relative; z-index: 1; }
.burn__line {
  display: block;
  font-size: clamp(1.375rem, 6.4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(4, 16, 31, .8);
}
.burn__line em { color: var(--accent); }
.burn__line--sm { font-size: clamp(1rem, 4.4vw, 1.375rem); }

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(4, 16, 31, .72);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(129, 205, 228, .16);
  transition: background .3s;
}
.header.is-scrolled { background: rgba(4, 16, 31, .94); }
.header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.header__logo { position: relative; z-index: 220; display: block; line-height: 0; }
.header__logo img { width: clamp(132px, 34vw, 200px); }
.header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header__cta { display: none; }

.hamburger {
  position: relative;
  z-index: 220;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  width: 46px; height: 46px;
}
.hamburger__bars { position: relative; display: block; width: 24px; height: 14px; }
.hamburger__bars span {
  position: absolute; left: 0;
  display: block; width: 100%; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger__bars span:nth-child(1) { top: 0; }
.hamburger__bars span:nth-child(2) { top: 6px; }
.hamburger__bars span:nth-child(3) { top: 12px; }
.hamburger__text {
  font-family: var(--font-en);
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
}
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ドロワー */
.gnav {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  padding: calc(var(--header-h) + 20px) var(--gutter) 36px;
  overflow-y: auto;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(0, 63, 152, .55), transparent 70%),
    var(--bk);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
.gnav.is-open { opacity: 1; visibility: visible; transform: none; }
body.is-nav-open { overflow: hidden; }
.gnav__list li + li { border-top: 1px solid var(--line-dark); }
.gnav__list a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px;
  color: var(--white);
  font-size: 1.0625rem;
  font-weight: 900;
}
.gnav__en {
  min-width: 5.5em;
  font-family: var(--font-en);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--sky);
}
.gnav__foot { text-align: center; }
.gnav__foot .pill { margin-inline: auto; }
.gnav__tel { margin-top: 16px; font-size: .875rem; color: var(--on-dark-mute); }
.gnav__tel a { color: var(--accent); font-weight: 900; }

/* ============================================================
   FV
   ============================================================ */
.fv {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: calc(var(--header-h) + 40px) 0 44px;
  overflow: hidden;
  background: var(--bk);
}
.fv__media { position: absolute; inset: 0; }
.fv__media img { width: 100%; height: 100%; object-fit: cover; }
.fv__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 16, 31, .96) 6%, rgba(4, 16, 31, .55) 42%, rgba(4, 16, 31, .3) 70%, rgba(4, 16, 31, .7) 100%),
    radial-gradient(70% 45% at 50% 62%, rgba(0, 63, 152, .38), transparent 70%);
}
.fv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}
/* 縦組みコピー（参照サイト踏襲） */
.fv__vert {
  position: absolute;
  top: calc(var(--header-h) + 24px);
  left: var(--gutter);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .22em;
  font-size: clamp(.875rem, 3.6vw, 1.125rem);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(4, 16, 31, .9);
}
.fv__vert span { display: block; }
.fv__vert-num {
  /* 縦中横：数字だけは横に並べたまま1マスに収める */
  font-family: var(--font-en);
  font-size: 1.5em;
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--accent);
}

.fv__catch {
  font-size: clamp(2.25rem, 12.4vw, 5rem);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: .01em;
  color: var(--white);
  text-shadow: 0 4px 26px rgba(4, 16, 31, .85);
}
.fv__catch-row { display: block; }
.fv__lead {
  margin-top: 14px;
  font-size: clamp(.9375rem, 4.2vw, 1.25rem);
  font-weight: 900;
  letter-spacing: .04em;
  color: var(--sky);
  text-shadow: 0 2px 14px rgba(4, 16, 31, .9);
}
.fv__cta { margin-top: 26px; }
.fv__cta .pill { margin-inline: auto; }
.fv__assure {
  margin-top: 10px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(4, 16, 31, .9);
}
.fv__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
}
.fv__tags li {
  padding: 5px 12px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(4, 16, 31, .35);
}

/* ============================================================
   ABOUT / 正社員募集
   ============================================================ */
.about {
  position: relative;
  padding: 56px 0 64px;
  text-align: center;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(0, 63, 152, .5), transparent 65%),
    var(--bk);
}
.about__title { margin-bottom: 8px; }
.about__title .outline-lg {
  font-size: clamp(1.75rem, 9vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .06em;
}
.about__title-big {
  display: block;
  margin-top: -.06em;
  font-size: clamp(3rem, 17vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: .02em;
  color: var(--white);
  text-shadow: 0 0 28px rgba(129, 205, 228, .35);
}
.about__text {
  max-width: 40em;
  margin: 28px auto 0;
  text-align: left;
  color: var(--on-dark);
}
.about__text b { color: var(--accent); }

/* ============================================================
   DATA
   ============================================================ */
.data { padding: 56px 0 64px; background: var(--bk2); }
.data__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.data__list li {
  padding: 18px 12px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 63, 152, .4), rgba(4, 16, 31, .5));
  border: 1px solid var(--line-dark);
}
.data__num {
  display: block;
  font-size: .9375rem;
  font-weight: 900;
  color: var(--sky);
}
.data__val {
  font-family: var(--font-en);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--accent);
}
.data__cap {
  display: block;
  margin-top: 6px;
  font-size: .8125rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
}
.data__cap small {
  display: block;
  font-weight: 500;
  color: var(--on-dark-mute);
}

/* ============================================================
   REASON 01-03
   ============================================================ */
.reason { padding: 60px 0 64px; background: var(--bk); }
.rblock {
  position: relative;
  padding-top: 26px;
  margin-top: 44px;
}
.rblock:first-of-type { margin-top: 8px; }
.rblock__no {
  position: absolute;
  top: 0; left: -4px;
  font-family: var(--font-en);
  font-size: clamp(5rem, 26vw, 9rem);
  font-weight: 700;
  line-height: .8;
  color: transparent;
  -webkit-text-stroke: 2px var(--sky);
  opacity: .55;
  pointer-events: none;
}
.rblock__body { position: relative; padding-top: clamp(46px, 15vw, 70px); }
.rblock__title {
  font-size: clamp(1.25rem, 5.6vw, 1.75rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--white);
}
.rblock__title em {
  color: var(--accent);
  background: linear-gradient(transparent 62%, rgba(0, 63, 152, .7) 62%);
}
.rblock__text { margin-top: 14px; color: var(--on-dark); }
.rblock__media {
  position: relative;
  margin-top: 20px;
  padding: 6px;
  background: linear-gradient(135deg, var(--sky), var(--navy));
}
.rblock__media img {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}
.rblock__media::after {
  content: "";
  position: absolute;
  right: -6px; bottom: -6px;
  width: 46px; height: 46px;
  border-right: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

/* ============================================================
   MESSAGE
   ============================================================ */
.message {
  padding: 60px 0 64px;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(0, 63, 152, .45), transparent 70%),
    var(--bk2);
}
.message__card {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, var(--sky), var(--navy));
}
.message__card-media { position: relative; }
.message__card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
.message__card-catch {
  position: absolute;
  top: 24px; left: 20px;
  right: 20px;
  z-index: 2;
  font-size: clamp(1.125rem, 5.2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.5;
  text-align: left;
}
.message__card-catch span {
  display: inline;
  padding: 2px 10px;
  color: var(--ink);
  background: var(--accent);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.message__card-label {
  position: absolute;
  right: 18px; bottom: 14px;
  z-index: 2;
  font-size: clamp(1.5rem, 7vw, 2.25rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .3);
  letter-spacing: .1em;
}
.message__body {
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.1;
  text-align: center;
}
.message__body p + p { margin-top: 1em; }
.message__body em { color: var(--accent); }
.message__sign {
  margin-top: 28px !important;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  text-align: right;
}
.message__sign small {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  color: var(--on-dark-mute);
}

/* ============================================================
   JOBS（白帯）
   ============================================================ */
.jobs {
  padding: 60px 0 68px;
  color: var(--ink);
  background: var(--white);
}
.jobs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.jcard {
  height: 100%;
  background: var(--bk2);
  border: 1px solid rgba(0, 63, 152, .25);
}
.jcard__head {
  position: relative;
  display: block;
  padding: 0 14px 16px;
  cursor: pointer;
  list-style: none;
}
.jcard__media { display: block; margin: 0 -14px 12px; }
.jcard__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.jcard__badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 3px 10px;
  font-size: .6875rem;
  font-weight: 900;
  color: var(--ink);
  background: var(--accent);
}
.jcard__title {
  display: block;
  font-size: clamp(.9375rem, 4.2vw, 1.125rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--white);
}
.jcard__salary {
  display: block;
  margin-top: 4px;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--accent);
}
.jcard__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 7px 16px;
  font-family: var(--font-en);
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
  background: linear-gradient(180deg, var(--accent-l), var(--accent-d));
  border-radius: 999px;
}
.jcard__more b { font-size: .625rem; }
.jcard[open] .jcard__more { background: linear-gradient(180deg, #fff, #cfe3f2); }
.jcard[open] .jcard__more b { transform: rotate(90deg); display: inline-block; }
.jcard__detail {
  padding: 0 14px 16px;
  font-size: .875rem;
  color: var(--on-dark);
  border-top: 1px solid var(--line-dark);
  padding-top: 14px;
}
.jcard__detail dl { margin-top: 12px; }
.jcard__detail dl div {
  display: flex;
  gap: 8px;
  padding: 6px 0;
  border-top: 1px dashed var(--line-dark);
}
.jcard__detail dt { min-width: 5.5em; font-weight: 700; color: var(--sky); }
.jobs__note {
  margin-top: 16px;
  font-size: .8125rem;
  color: #5a6b85;
  text-align: center;
}

/* 募集要項テーブル */
.req {
  margin-top: 36px;
  font-size: .875rem;
  color: var(--ink);
  border-top: 2px solid var(--navy);
}
.req caption {
  padding-bottom: 10px;
  font-size: .75rem;
  font-weight: 700;
  color: #5a6b85;
  text-align: left;
}
.req th, .req td {
  display: block;
  width: auto;
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}
.req th {
  font-weight: 900;
  color: var(--navy);
  background: #f2f7fb;
}
.req td { padding-bottom: 18px; border-bottom: 1px solid var(--line-light); }
.req td small { color: #5a6b85; }
.req__salary { margin-top: 10px; }
.req__salary li {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
  padding: 7px 0;
  border-top: 1px dashed var(--line-light);
}
.req__salary li span { min-width: 9em; font-weight: 700; }
.req__salary li b { color: var(--navy); }

/* 選考フロー */
.flow { display: grid; gap: 10px; }
.flow li {
  position: relative;
  padding: 18px 18px 18px 66px;
  background: #f2f7fb;
  border-left: 4px solid var(--navy);
}
.flow__no {
  position: absolute;
  top: 12px; left: 14px;
  font-family: var(--font-en);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy);
  opacity: .35;
}
.flow h4 {
  font-size: 1rem;
  font-weight: 900;
  color: var(--navy);
}
.flow li p:last-child { margin-top: 4px; font-size: .875rem; color: var(--ink); }

/* ============================================================
   POINTS
   ============================================================ */
.points {
  position: relative;
  padding: 60px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(70% 40% at 100% 0%, rgba(0, 63, 152, .5), transparent 70%),
    var(--bk);
}
/* 参照サイトの縦組みウォーターマーク */
.points__watermark {
  position: absolute;
  top: 40px; left: -6px;
  z-index: 0;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: clamp(2.75rem, 13vw, 5rem);
  font-weight: 700;
  letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--sky);
  opacity: .18;
  pointer-events: none;
}
.points .container { position: relative; z-index: 1; }
.points__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
/* 16枚は3列で1枚余るため、最後の1枚を行いっぱいに置いて欠けを見せない */
.points__grid li:last-child { grid-column: 1 / -1; flex-direction: row; gap: 10px; }
.points__grid li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 14px 6px;
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 63, 152, .65), rgba(0, 47, 112, .45));
  border: 1px solid var(--line-dark);
}
.points__grid b {
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}
.points__grid span {
  font-size: .75rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
}
.points__lead-title {
  margin-top: 40px;
  font-size: clamp(1.25rem, 5.6vw, 1.875rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}
.points__lead-title em { color: var(--accent); }
.points__lead {
  max-width: 40em;
  margin: 16px auto 0;
  color: var(--on-dark);
}
.points__media {
  margin-top: 24px;
  padding: 6px;
  background: linear-gradient(135deg, var(--sky), var(--navy));
}
.points__media img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 5;
  object-fit: cover;
}

/* ============================================================
   STRENGTH
   ============================================================ */
.strength {
  padding: 60px 0 64px;
  background:
    radial-gradient(80% 50% at 0% 20%, rgba(0, 63, 152, .45), transparent 70%),
    var(--bk2);
}
.strength__title {
  margin-bottom: 8px;
  font-size: clamp(1.375rem, 6.6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.4;
  color: var(--white);
  text-align: center;
}
.strength__title em { color: var(--accent); }

.pblock { margin-top: 36px; }
.pblock__label {
  padding-bottom: 6px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--sky);
  border-bottom: 1px solid var(--line-dark);
}
.pblock--rev .pblock__label { text-align: right; }
.pblock__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin-top: 14px;
  font-size: clamp(1.125rem, 5.2vw, 1.5rem);
  font-weight: 900;
  line-height: 1.5;
  color: var(--white);
}
.pblock__no {
  padding: 4px 12px;
  font-family: var(--font-en);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink);
  background: var(--accent);
}
.pblock__text { margin-top: 12px; color: var(--on-dark); }
.pblock__media {
  margin-top: 18px;
  padding: 6px;
  background: linear-gradient(135deg, var(--sky), var(--navy));
}
.pblock__media img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 5;
  object-fit: cover;
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  position: relative;
  padding: 60px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(80% 60% at 50% 100%, rgba(0, 63, 152, .6), transparent 70%),
    var(--bk);
}
.cta__burn { position: relative; padding: 40px 0 12px; text-align: center; }
.cta__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 10vw, 3.5rem);
  font-weight: 900;
  line-height: 1.3;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(4, 16, 31, .8);
}
.cta__title em { color: var(--accent); }
.cta__text {
  font-size: clamp(.9375rem, 4.2vw, 1.125rem);
  font-weight: 700;
  color: var(--on-dark);
  text-align: center;
}
.cta__box {
  position: relative;
  margin-top: 28px;
  padding: 28px 20px 24px;
  text-align: center;
  background: rgba(4, 16, 31, .55);
  border: 1px solid var(--line-dark);
}
.cta__box-lead { font-size: .875rem; color: var(--on-dark); }
.cta__box .pill { margin: 20px auto 0; }
.cta__sub { margin-top: 10px; font-size: .8125rem; font-weight: 700; color: var(--sky); }
.cta__assure { margin-top: 4px; font-size: .8125rem; font-weight: 700; color: var(--white); }
.cta__tel {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.cta__tel small { display: block; font-size: .6875rem; color: var(--sky); }
.cta__tel a {
  font-family: var(--font-en);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--white);
}
.cta__tel a:hover { color: var(--accent); }
.cta__mascot { position: relative; width: 150px; margin: 18px auto 0; }
.cta__balloon {
  position: absolute;
  top: -6px; left: 50%;
  padding: 8px 14px;
  font-size: .8125rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  transform: translateX(-50%);
}
.cta__balloon::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -7px;
  margin-left: -6px;
  border: 6px solid transparent;
  border-top-color: var(--white);
  border-bottom-width: 0;
}

/* ============================================================
   COMPANY
   ============================================================ */
.company { padding: 60px 0 64px; background: var(--bk2); }
.req--dark {
  color: var(--on-dark);
  border-top-color: var(--sky);
}
.req--dark caption { color: var(--on-dark-mute); }
.req--dark th, .req--dark td { border-bottom-color: var(--line-dark); }
.req--dark th { color: var(--sky); background: rgba(0, 63, 152, .35); }
.req--dark td small { color: var(--on-dark-mute); }
.company__link { margin-top: 20px; font-size: .875rem; font-weight: 700; text-align: center; }
.company__link a { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 44px 0 0; background: var(--bk); border-top: 1px solid var(--line-dark); }
.footer .container { text-align: center; }
.footer__logo { width: 200px; }
.footer__addr { margin-top: 16px; font-size: .8125rem; color: var(--on-dark-mute); }
.footer__tel { margin-top: 12px; }
.footer__tel a {
  display: block;
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer__tel a:hover { color: var(--accent); }
.footer__tel small {
  display: block;
  margin-bottom: 8px;
  font-size: .6875rem;
  color: var(--sky);
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-top: 24px;
}
.footer__nav a { font-size: .8125rem; font-weight: 700; color: var(--on-dark); }
.footer__nav a:hover { color: var(--accent); }
.footer__group {
  margin-top: 24px;
  font-size: .8125rem;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--sky);
}
.footer__copy {
  margin-top: 22px;
  padding: 14px var(--gutter);
  text-align: center;
  background: rgba(0, 0, 0, .35);
}
.footer__copy small { font-size: .6875rem; color: var(--on-dark-mute); letter-spacing: .03em; }

/* ============================================================
   SP固定CTA
   ============================================================ */
.sp-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 150;
  display: flex;
  gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(4, 16, 31, .94);
  border-top: 1px solid var(--line-dark);
  transform: translateY(120%);
  transition: transform .3s;
}
.sp-cta.is-visible { transform: none; }
.sp-cta__line {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 6px 12px;
  color: var(--ink);
  line-height: 1.3;
  text-align: center;
  background: linear-gradient(180deg, var(--accent-l), var(--accent) 55%, var(--accent-d));
  border-radius: 999px;
}
.sp-cta__line:hover { color: var(--ink); }
.sp-cta__label { font-size: .9375rem; font-weight: 900; }
.sp-cta__note { font-size: .625rem; font-weight: 700; }
.sp-cta__tel {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px;
  min-height: 54px;
  color: var(--white);
  background: var(--navy);
  border-radius: 10px;
}
.sp-cta__tel span { font-size: .5625rem; font-weight: 700; }
.sp-cta__tel:hover { color: var(--white); background: var(--navy-d); }
body { padding-bottom: 78px; }

/* ============================================================
   スクロール表示
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* ============================================================
   タブレット以上
   ============================================================ */
@media (min-width: 768px) {
  :root { --gutter: 32px; --header-h: 72px; }
  body { font-size: 16px; padding-bottom: 0; }

  .sp-cta { display: none; }
  .chip { font-size: .8125rem; padding: 9px 26px; }

  .fv { align-items: center; min-height: min(94svh, 900px); }
  .fv__inner { text-align: left; padding-left: clamp(80px, 12vw, 160px); }
  .fv__catch { font-size: clamp(3.25rem, 7.4vw, 5.5rem); }
  .fv__cta .pill, .fv__tags { margin-inline: 0; justify-content: flex-start; }
  .fv__tags { gap: 8px; }
  .fv__vert { top: auto; bottom: 12vh; font-size: 1.25rem; }

  .data__list { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .data__list li { padding: 26px 16px; }
  .data__val { font-size: 3.5rem; }
  .data__cap { font-size: .9375rem; }

  /* REASON：番号を左、本文右、写真を交互配置 */
  .rblock {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8px 40px;
    padding-top: 0;
    margin-top: 72px;
  }
  .rblock__no {
    position: static;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    font-size: clamp(6rem, 11vw, 10rem);
    margin-bottom: -.12em;
  }
  .rblock__body { grid-column: 1; grid-row: 2; padding-top: 0; }
  .rblock__media { grid-column: 2; grid-row: 1 / span 2; margin-top: 0; }
  .rblock:nth-of-type(even) .rblock__no,
  .rblock:nth-of-type(even) .rblock__body { grid-column: 2; }
  .rblock:nth-of-type(even) .rblock__media { grid-column: 1; }

  .message__card { padding: 10px; }
  .message__card-media img { aspect-ratio: 21 / 8; }
  .message__body { font-size: 1.0625rem; }

  .jobs__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .jcard__head { padding: 0 18px 20px; }
  .jcard__media { margin: 0 -18px 14px; }
  .jcard__detail { padding: 14px 18px 20px; }
  .req { font-size: .9375rem; }
  .req th, .req td { display: table-cell; padding: 18px 22px; border-bottom: 1px solid var(--line-light); }
  .req th { width: 26%; white-space: nowrap; }
  .flow { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* 4列なら16枚がちょうど4行になるので特例を解除 */
  .points__grid { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .points__grid li { padding: 18px 10px; }
  .points__grid li:last-child { grid-column: auto; flex-direction: column; gap: 4px; }
  .points__grid b { font-size: 1.875rem; }
  .points__grid span { font-size: .8125rem; }
  .points__watermark { top: 60px; left: -10px; }

  .pblock { margin-top: 56px; }
  .pblock--rev .pblock__media { order: -1; }

  .cta__box { padding: 40px 32px 32px; }
  .cta__box .pill { max-width: 460px; }
  .cta__tel { grid-template-columns: repeat(2, 1fr); }
  .cta__mascot { position: absolute; right: 20px; bottom: 14px; width: 132px; margin: 0; }

  .footer__tel a { display: inline-block; margin-inline: 14px; }
  .footer__tel small { display: inline-block; margin-inline: 6px; }
}

/* ============================================================
   デスクトップ
   ============================================================ */
@media (min-width: 1024px) {
  .header__cta { display: inline-flex; }
  .gnav {
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    padding: 0;
    margin-left: auto;
    overflow: visible;
    background: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .gnav__list { display: flex; align-items: center; gap: 22px; }
  .gnav__list li + li { border-top: 0; }
  .gnav__list a {
    display: block;
    padding: 4px 0;
    font-size: .8125rem;
    text-align: center;
  }
  .gnav__en {
    display: block;
    min-width: 0;
    font-size: .625rem;
    letter-spacing: .1em;
  }
  .gnav__list a:hover { color: var(--accent); }
  .gnav__foot { display: none; }
  .hamburger { display: none; }
  body.is-nav-open { overflow: auto; }

  .about { padding: 88px 0 96px; }
  .data, .reason, .message, .jobs, .points, .strength, .cta, .company { padding: 88px 0 96px; }
  .points__grid { grid-template-columns: repeat(4, 1fr); }
  .flow { grid-template-columns: repeat(4, 1fr); }
  .points__lead-title { margin-top: 56px; }
}

/* ============================================================
   アクセシビリティ／印刷
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .header, .sp-cta, .points__watermark, .burn__spark { display: none !important; }
  body { padding-bottom: 0; color: #000; background: #fff; }
  [data-reveal] { opacity: 1; transform: none; }
}
