@charset "UTF-8";
/* ==========================================================================
   OPERA 求人サイト  統合スタイルシート
   BLACK × CHAMPAGNE GOLD × WHITE
   PC / SP 兼用のレスポンシブ1枚構成（旧 recruit_style.css / recruit_sp.css を統合）
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. デザイントークン
   -------------------------------------------------------------------------- */
:root {
  /* 黒 */
  --black:        #0a0a0b;
  --black-soft:   #101012;
  --surface:      #141416;
  --surface-2:    #1b1b1e;
  --hairline:     rgba(200, 169, 81, .28);
  --hairline-dim: rgba(255, 255, 255, .10);

  /* シャンパンゴールド */
  --gold:         #c8a951;
  --gold-light:   #e8d5a3;
  --gold-pale:    #f2e6c4;
  --gold-deep:    #8a6f2e;
  --gold-grad: linear-gradient(135deg, #8a6f2e 0%, #e8d5a3 38%, #c8a951 56%, #f2e6c4 100%);

  /* 白・アイボリー */
  /* ③「未経験者の方へ」セクションの背景に使う */
  --ivory:        #fdfaf5;
  --ivory-2:      #f2ece0;
  --white:        #ffffff;

  /* 文字 */
  --text:         #e9e5dc;
  --text-dim:     #a8a397;
  --text-on-light:#23201b;
  --text-on-light-dim: #6b6459;

  /* フォント
     --serif    : 欧文だけの見出し用（Cormorant は数字が小さいので和文混在には使わない）
     --serif-ja : 和文＋数字が混ざる箇所用。数字も Noto Serif JP で拾って字面を揃える */
  --serif:    "Cormorant Garamond", "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  --serif-ja: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  --sans:     "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;

  /* レイアウト */
  --container: 1120px;
  --gutter: clamp(18px, 5vw, 40px);
  --section-y: clamp(56px, 9vw, 112px);
  --radius: 2px;

  /* スペーシング（8pxベース） */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px; --sp-7: 40px; --sp-8: 48px;

  /* モーション */
  --dur-fast:   140ms;
  --dur-base:   240ms;
  --dur-medium: 380ms;
  --ease-out:   cubic-bezier(0, 0, .2, 1);
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);

  /* 重なり順 */
  --z-base: 1;
  --z-sticky: 200;
  --z-spcta: 300;
  --z-header: 400;
  --z-modal: 800;
  --z-noise: 950;
  --z-skip: 1000;

  /* 固定ナビ高さ（アンカー位置の補正に使う） */
  --nav-h: 60px;
}

/* --------------------------------------------------------------------------
   2. リセット / ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: .04em;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, table { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: top; border: 0; }
a { color: var(--gold-light); text-decoration: none; transition: color var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out), transform var(--dur-fast) var(--ease-out); }
a:hover { color: var(--gold-pale); }
table { border-collapse: collapse; width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* 汎用 */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--light { background: var(--ivory); color: var(--text-on-light); }
.section--alt { background: var(--black-soft); }

.sp-only { display: none; }

/* 固定ナビにアンカー先が潜り込まないようにする */
section[id], .hero[id] { scroll-margin-top: calc(var(--nav-h) + var(--sp-3)); }

/* 行末に単語が1つだけ取り残されるのを防ぐ */
h1, h2, h3, .sec-head__ja, .hero__catch, .step__label { text-wrap: balance; }
p { text-wrap: pretty; }

/* 数字を等幅で揃える（金額の桁がガタつくのを防ぐ） */
.course__price, .course__daily, .step__price,
.highlight-bar, .apply-card__contact a, .pop-tel a, .spec-table td {
  font-variant-numeric: tabular-nums;
}

/* --- 粒子テクスチャ ---
   純黒のベタ塗りは沈んで見えるため、極薄のグレインを全面に重ねる。
   画像ファイルではなく SVG のフラクタルノイズを data URI で埋め込む。 */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: var(--z-noise);
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* --- キーボード操作 --- */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
}
.section--light :focus-visible { outline-color: var(--gold-deep); }

/* 押した瞬間の手応え */
.btn-gold:active, .btn-outline:active, .btn-cta:active,
.sns-btn:active, .sp-cta a:active, .sp-tel:active { transform: translateY(1px); }

/* 本文へスキップ（キーボード利用者向け・フォーカス時のみ出現） */
.skip-link {
  position: fixed;
  top: 0; left: 50%;
  z-index: var(--z-skip);
  padding: var(--sp-3) var(--sp-5);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #2a2005;
  background: var(--gold-grad);
  transform: translate(-50%, -140%);
  transition: transform var(--dur-base) var(--ease-out);
}
.skip-link:focus { color: #2a2005; transform: translate(-50%, 0); }

/* --- アイコン（インラインSVG） --- */
.icon {
  flex: 0 0 auto;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -.16em;
}
.btn-cta .icon--arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn-cta:hover .icon--arrow { transform: translateX(4px); }

/* --- スクロールに応じた段階表示 ---
   JS が動く環境でのみ隠す（.js は head のインラインスクリプトで付与） */
.js .reveal,
.js .reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible,
.js .reveal-child.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal-child { opacity: 1; transform: none; transition: none; }
}

/* 金のグラデーション文字 */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   3. セクション見出し
   -------------------------------------------------------------------------- */
.sec-head { text-align: center; margin-bottom: clamp(32px, 5vw, 60px); }

.sec-head__en {
  display: block;
  font-family: var(--serif);
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 500;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section--light .sec-head__en { color: var(--gold-deep); }

.sec-head__ja {
  font-family: var(--serif-ja);
  font-size: clamp(22px, 4.4vw, 34px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .12em;
  color: var(--white);
}
.section--light .sec-head__ja { color: var(--text-on-light); }

.sec-head__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.sec-head__rule::before,
.sec-head__rule::after {
  content: "";
  width: clamp(40px, 9vw, 84px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.sec-head__rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.sec-head__rule span {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.sec-lead {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vw, 44px);
  text-align: center;
  font-size: clamp(14px, 2.2vw, 16px);
  color: var(--text-dim);
}
.section--light .sec-lead { color: var(--text-on-light-dim); }

/* --------------------------------------------------------------------------
   4. ヘッダー
   ロゴが透過WebPになったため、ヘッダーは黒地で統一する
   -------------------------------------------------------------------------- */
.site-header { position: relative; z-index: var(--z-header); }

.header-band {
  /* 真っ黒のベタ塗りにせず、上から光が当たったような階調をつける */
  background: linear-gradient(180deg, #17171a 0%, var(--black) 100%);
  padding-block: clamp(16px, 2.4vw, 22px);
}
.header-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.header-band__text p {
  font-size: 11px;
  letter-spacing: .18em;
  line-height: 1.8;
  color: var(--text-dim);
}
/* 新ロゴは 643x157（約4.1:1）。旧ロゴ 2.5:1 より横長なので幅を広く取る */
.header-logo img { width: clamp(230px, 34vw, 320px); }

/* ナビゲーション */
.main-nav {
  background: var(--black);
  border-bottom: 1px solid var(--hairline);
}
.main-nav::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--gold-grad);
  opacity: .85;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 58px;
}
#nav { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
#nav a {
  position: relative;
  display: block;
  padding-block: 8px;
  font-size: clamp(12px, 1.4vw, 14px);
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--text);
}
#nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur-medium) var(--ease-out);
}
#nav a:hover { color: var(--gold-light); }
#nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* ヘッダー内ボタン */
.btn-outline, .btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: clamp(11px, 1.3vw, 13px);
  font-weight: 500;
  letter-spacing: .1em;
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-outline {
  color: var(--gold-light);
  border: 1px solid var(--hairline);
}
.btn-outline:hover {
  color: var(--black);
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-gold {
  color: #2a2005;
  background: var(--gold-grad);
  border: 0;
  font-weight: 700;
}
.btn-gold:hover { color: #2a2005; filter: brightness(1.08); }

/* 固定ナビ */
.main-nav.is-sticky {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .5);
}

/* SPヘッダー */
.sp-header { display: none; }

.sp-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, #17171a 0%, var(--black) 100%);
  border-bottom: 1px solid var(--hairline);
  padding: 10px var(--gutter);
}
.sp-bar__logo img { width: 150px; }
.sp-bar__right { display: flex; align-items: center; gap: 6px; }
.sp-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;            /* .hamburger と同じ高さにして枠線を揃える */
  padding-inline: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-light);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.sp-tel:hover { color: var(--gold-pale); }

.hamburger {
  width: 44px; height: 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.hamburger .line {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--gold-light);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.hamburger.is-active .line-1 { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-active .line-2 { opacity: 0; }
.hamburger.is-active .line-3 { transform: translateY(-7.5px) rotate(-45deg); }

#spNav {
  display: none;
  background: var(--black);
  border-bottom: 1px solid var(--hairline);
  padding: 8px var(--gutter) 20px;
}
#spNav li + li { border-top: 1px solid var(--hairline-dim); }
#spNav a {
  display: block;
  padding: 15px 4px;
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--text);
}
#spNav .sp-nav-cta {
  margin-top: 16px;
  border-top: 0;
}
#spNav .sp-nav-cta a {
  justify-content: center;
  color: #2a2005;
  background: var(--gold-grad);
  font-weight: 700;
  border-radius: var(--radius);
  text-align: center;
}

/* --------------------------------------------------------------------------
   5. ヒーロー（① メインビジュアル）
        文言は画像に焼き込み済み。767px 以下は縦構図の SP 版に差し替える。
        文字が切れるためトリミングは一切しない（cover は使わない）。
   -------------------------------------------------------------------------- */
.hero { background: var(--black); }

/* PC：支給されたメインビジュアル。文言が焼き込まれているためトリミングしない。
   画面が広くても文字が過大にならないよう幅に上限を設け、左右は地色の黒で埋める */
.hero__image { background: var(--black); }
.hero__image img {
  display: block;
  width: 100%;
  max-width: 1400px;
  height: auto;
  margin-inline: auto;
}

/* ヒーロー下のコピー */
.hero__copy {
  padding-block: clamp(40px, 6vw, 72px);
  text-align: center;
}
.hero__catch {
  font-family: var(--serif-ja);
  font-size: clamp(24px, 5.6vw, 46px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .1em;
  color: var(--white);
}
.hero__sub {
  margin-top: clamp(16px, 2.6vw, 24px);
  font-size: clamp(14px, 2.2vw, 17px);
  line-height: 2.1;
  color: var(--text);
}
.hero__note {
  display: inline-block;
  margin-top: clamp(20px, 3vw, 30px);
  padding: 10px 22px;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}


/* --------------------------------------------------------------------------
   5-2. 導入メッセージ（旧サイトの main_text を再構成）
        ページ全体が中央寄せ一辺倒にならないよう、ここだけ左右非対称に組む
   -------------------------------------------------------------------------- */
.intro__layout {
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.intro__head { position: sticky; top: calc(var(--nav-h) + var(--sp-5)); }
.intro__en {
  display: block;
  font-family: var(--serif);
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 500;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}
.intro__title {
  font-family: var(--serif-ja);
  font-size: clamp(21px, 3.6vw, 30px);
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .06em;
  color: var(--white);
}
.intro__rule {
  width: 56px; height: 1px;
  margin-top: clamp(18px, 2.6vw, 26px);
  background: linear-gradient(90deg, var(--gold), transparent);
}

.intro__body {
  font-size: clamp(13.5px, 2.1vw, 16px);
  line-height: 2.15;
}
.intro__body p + p { margin-top: 1.5em; }
.intro__body em {
  font-style: normal;
  font-weight: 700;
  color: var(--gold-light);
}
.intro__body .num { font-family: var(--serif-ja); font-variant-numeric: tabular-nums; }

.intro__points {
  display: grid;
  gap: var(--sp-4);
  margin-top: clamp(28px, 4vw, 42px);
}
.intro-point {
  padding: clamp(18px, 2.6vw, 24px) clamp(18px, 2.6vw, 26px);
  background: var(--surface);
  border-left: 2px solid var(--gold);
}
.intro-point__title {
  margin-bottom: var(--sp-2);
  font-family: var(--serif-ja);
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
}
.intro-point__text {
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.95;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
}

/* --------------------------------------------------------------------------
   6. ⑦ 選ばれる理由
   -------------------------------------------------------------------------- */
/* PCは3列固定（15項目 = 3×5） */
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-dim);
  border: 1px solid var(--hairline-dim);
}
.reason {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(18px, 2.6vw, 24px);
  background: var(--surface);
  transition: background var(--dur-medium) var(--ease-out);
}
.reason:hover { background: var(--surface-2); }
.reason__mark {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}
.reason__mark span {
  display: block;
  width: 7px; height: 7px;
  background: var(--gold-grad);
}
.reason__text {
  font-size: clamp(13px, 1.9vw, 15px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: .05em;
}
.reason--key .reason__text { color: var(--gold-light); font-weight: 700; }

/* --------------------------------------------------------------------------
   7. ② 給与・コース紹介
   -------------------------------------------------------------------------- */
.courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(18px, 2.6vw, 28px);
  align-items: stretch;
}

.course {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px) clamp(20px, 3vw, 34px) clamp(26px, 3.4vw, 38px);
  background: linear-gradient(180deg, var(--surface) 0%, var(--black-soft) 100%);
  border: 1px solid var(--hairline-dim);
  transition: transform var(--dur-medium) var(--ease-out), border-color var(--dur-medium) var(--ease-out);
}
.course:hover { transform: translateY(-6px); }

/* 四隅の飾り */
.course::before, .course::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  opacity: .55;
}
.course::before { top: 10px; left: 10px; border-right: 0; border-bottom: 0; }
.course::after  { bottom: 10px; right: 10px; border-left: 0; border-top: 0; }

.course__rank {
  font-family: var(--serif);
  font-size: clamp(11px, 1.5vw, 12px);
  letter-spacing: .36em;
  text-indent: .36em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.course__name {
  font-family: var(--serif);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  letter-spacing: .16em;
  text-indent: .16em;
  line-height: 1.2;
}
.course__divider {
  width: 46px; height: 1px;
  margin: clamp(16px, 2.4vw, 22px) auto;
  background: var(--gold);
  opacity: .6;
}
.course__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0 .18em;
  font-family: var(--serif-ja);
  font-size: clamp(21px, 3.1vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .02em;
  color: var(--white);
}
/* 「円」だけが行末で落ちないよう、金額は必ずひとかたまりで折り返す */
.course__price .amount { white-space: nowrap; }
.course__price .yen { font-size: .62em; margin-inline: .04em; }
.course__per {
  display: block;
  flex: 0 0 100%;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--text-dim);
  margin-bottom: 6px;
}
.course__daily {
  margin-top: 12px;
  padding: 8px 12px;
  font-size: clamp(13px, 1.9vw, 15px);
  font-weight: 700;
  letter-spacing: .04em;
  border: 1px solid var(--hairline);
}
.course__body {
  margin-top: clamp(18px, 2.6vw, 26px);
  padding-top: clamp(18px, 2.6vw, 26px);
  border-top: 1px solid var(--hairline-dim);
  font-size: clamp(13px, 1.9vw, 15px);
  line-height: 2.05;
  color: var(--text-dim);
  text-align: left;
}
.course__head { text-align: center; }

/* ランク別の格差表現 */
.course--executive {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(200,169,81,.18), 0 24px 60px rgba(0,0,0,.55);
  background:
    radial-gradient(120% 70% at 50% 0%, rgba(200,169,81,.14) 0%, transparent 62%),
    linear-gradient(180deg, var(--surface) 0%, var(--black-soft) 100%);
}
.course--executive .course__name { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.course--executive .course__rank { color: var(--gold); }
.course--executive .course__daily { color: var(--gold-light); border-color: var(--gold); }

.course--prestige { border-color: rgba(232, 213, 163, .4); }
.course--prestige .course__name { color: var(--gold-light); }
.course--prestige .course__daily { color: var(--gold-light); }

.course--vip { border-color: rgba(226, 226, 230, .28); }
.course--vip .course__name { color: #e6e6ea; }
.course--vip .course__divider { background: #c9c9d0; }
.course--vip .course__daily { color: #e6e6ea; border-color: rgba(226, 226, 230, .3); }
.course--vip::before, .course--vip::after { border-color: #c9c9d0; }

.course__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-indent: .18em;
  color: #2a2005;
  background: var(--gold-grad);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   8. ⑤ ステップアップ制度
   -------------------------------------------------------------------------- */
.stepup__flow {
  max-width: 620px;
  margin: 0 auto clamp(32px, 5vw, 52px);
}
.step {
  position: relative;
  padding: clamp(16px, 2.4vw, 22px) clamp(18px, 3vw, 28px);
  text-align: center;
  border: 1px solid var(--hairline-dim);
  background: var(--surface);
}
.step__label {
  font-family: var(--serif);
  font-size: clamp(15px, 2.6vw, 21px);
  font-weight: 700;
  letter-spacing: .18em;
  text-indent: .18em;
}
.step__price {
  margin-top: 4px;
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--text-dim);
}
.step--start { border-style: dashed; }
.step--start .step__label { font-family: var(--serif-ja); color: var(--text-dim); font-weight: 500; letter-spacing: .1em; }
.step--vip .step__label { color: #e6e6ea; }
.step--prestige { border-color: rgba(232, 213, 163, .38); }
.step--prestige .step__label { color: var(--gold-light); }
.step--executive {
  border-color: var(--gold);
  background: radial-gradient(120% 90% at 50% 0%, rgba(200,169,81,.16) 0%, transparent 65%), var(--surface);
}
.step--executive .step__label { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.step-arrow {
  display: grid;
  place-items: center;
  height: 44px;
}
.step-arrow span {
  display: block;
  width: 1px; height: 26px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
}
.step-arrow span::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 7px; height: 7px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: translateX(-50%) rotate(45deg);
}

.stepup__note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(13px, 2vw, 15.5px);
  line-height: 2.1;
  color: var(--text-dim);
}
.stepup__note strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif-ja);
  font-size: clamp(17px, 3vw, 24px);
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--white);
}

/* --------------------------------------------------------------------------
   9. ③ 未経験者の方へ（アイボリー） / ④ 経験者の方へ
   -------------------------------------------------------------------------- */
.voice-list {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  display: grid;
  gap: 12px;
}
.voice-list li {
  position: relative;
  padding: 16px 34px;
  font-size: clamp(13px, 2vw, 15.5px);
  line-height: 1.8;
  background: var(--surface);
  border: 1px solid var(--hairline-dim);
}
/* 心の声＝会話文なので、和文の鉤括弧で囲う */
.voice-list li::before,
.voice-list li::after {
  position: absolute;
  font-family: var(--serif-ja);
  font-size: 19px;
  line-height: 1;
  color: var(--gold-deep);
  opacity: .8;
}
.voice-list li::before { content: "「"; left: 11px;  top: 15px; }
.voice-list li::after  { content: "」"; right: 11px; bottom: 15px; }
.section--light .voice-list li {
  background: rgba(255, 255, 255, .55);
  border-color: rgba(138, 111, 46, .2);
}
.section--light .voice-list li::before,
.section--light .voice-list li::after { color: var(--gold-deep); }

.lead-body {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(13.5px, 2.1vw, 16px);
  line-height: 2.2;
}
.section--light .lead-body { color: #3a352c; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(24px, 3.4vw, 34px);
}
.pill {
  padding: 9px 20px;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 999px;
  color: var(--gold-light);
  border: 1px solid var(--hairline);
}
.section--light .pill {
  color: var(--gold-deep);
  background: var(--white);
  border-color: rgba(138, 111, 46, .35);
}

.highlight-bar {
  max-width: 720px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  padding: clamp(16px, 2.6vw, 22px);
  text-align: center;
  font-family: var(--serif-ja);
  font-size: clamp(17px, 3.2vw, 26px);
  font-weight: 700;
  letter-spacing: .06em;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: var(--gold-light);
}
.section--light .highlight-bar {
  color: var(--gold-deep);
  border-color: rgba(138, 111, 46, .4);
}

/* --------------------------------------------------------------------------
   10. ⑥ 待遇・サポート
   -------------------------------------------------------------------------- */
/* 2×2 のグリッド */
.support__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.4vw, 24px);
}
.support-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3.4vw, 34px) clamp(18px, 2.6vw, 26px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--hairline-dim);
  transition: border-color var(--dur-medium) var(--ease-out);
}
.support-card:hover { border-color: var(--hairline); }
.support-card__title {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-dim);
}
.support-card__value {
  margin-top: 10px;
  font-family: var(--serif-ja);
  font-size: clamp(20px, 3.2vw, 27px);
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
}
.support-card__desc {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-dim);
  font-size: clamp(12.5px, 1.9vw, 14px);
  line-height: 1.95;
  color: var(--text-dim);
  text-align: left;
}

/* --------------------------------------------------------------------------
   11. ⑧ お店からのメッセージ
   -------------------------------------------------------------------------- */
.message {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(200,169,81,.10) 0%, transparent 60%),
    var(--black-soft);
}
.message__body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(13.5px, 2.1vw, 16px);
  line-height: 2.3;
  color: var(--text);
}
.message__body p + p { margin-top: 1.6em; }
.message__body strong { color: var(--gold-light); font-weight: 700; }
.message__closing {
  margin-top: clamp(26px, 4vw, 40px);
  font-family: var(--serif-ja);
  font-size: clamp(19px, 3.6vw, 30px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: .1em;
}

/* 3クラスの署名列。タグではなくブランドのロックアップとして見せる */
.class-lockup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 28px);
  margin-top: clamp(30px, 4.5vw, 48px);
}
.class-lockup__item {
  font-family: var(--serif);
  font-size: clamp(15px, 2.6vw, 21px);
  font-weight: 500;
  letter-spacing: .34em;
  padding-left: .34em;        /* 字間分を左に足して光学的に中央へ寄せる */
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--gold-light);
}
/* 最上位クラスだけ金のグラデーションで格を上げる */
.class-lockup__item--top {
  font-weight: 600;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.class-lockup__sep {
  width: 5px; height: 5px;
  background: var(--gold);
  opacity: .8;
  transform: rotate(45deg);
}

/* --------------------------------------------------------------------------
   12. 募集要項テーブル
   -------------------------------------------------------------------------- */
.spec-table { border-top: 1px solid var(--hairline-dim); }
.spec-table th, .spec-table td {
  padding: clamp(14px, 2.2vw, 20px) clamp(12px, 2vw, 22px);
  border-bottom: 1px solid var(--hairline-dim);
  font-size: clamp(13px, 1.9vw, 15px);
  line-height: 1.95;
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 210px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--gold-light);
  background: rgba(255, 255, 255, .02);
  white-space: nowrap;
}
.spec-table td { color: var(--text); }
.spec-table .rank-line { display: block; }
.spec-table .rank-line + .rank-line { margin-top: 6px; }
.spec-table .rank-name {
  display: inline-block;
  min-width: 108px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold-light);
}
/* 金額は途中で折り返させない */
.spec-table .rank-amount { white-space: nowrap; }
.spec-table .rank-daily { margin-left: .3em; color: var(--text-dim); }

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #06371c;
  background: linear-gradient(135deg, #43d268, #2fb355);
  border-radius: var(--radius);
}
.sns-btn:hover { color: #06371c; filter: brightness(1.06); }

/* --------------------------------------------------------------------------
   13. 応募方法
   -------------------------------------------------------------------------- */
.apply__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
}
.apply-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(26px, 3.6vw, 38px) clamp(18px, 2.6vw, 26px);
  background: var(--surface);
  border: 1px solid var(--hairline-dim);
}
.apply-card__label {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .36em;
  text-indent: .36em;
  text-transform: uppercase;
  color: var(--gold);
}
.apply-card__title {
  margin-top: 8px;
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--white);
}
.apply-card__desc {
  margin-top: 10px;
  font-size: clamp(12.5px, 1.9vw, 14px);
  color: var(--text-dim);
}
.apply-card__contact { margin-top: auto; padding-top: 18px; width: 100%; }
.apply-card__contact a {
  display: block;
  font-family: var(--serif-ja);
  font-size: clamp(19px, 3.2vw, 26px);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-light);
  word-break: break-all;
}
.tel-block + .tel-block { margin-top: 14px; }
.tel-block .tel-label {
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--text-dim);
}
.apply-card__note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-dim);
}
/* インラインのままだと padding が高さに反映されず、下の要素に重なる */
.apply-card__qr {
  display: inline-block;
  line-height: 0;            /* ベースライン由来の余白を除去 */
  margin-top: var(--sp-2);
  padding: var(--sp-3);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px var(--hairline);
}
.apply-card__qr img { width: 148px; }

.apply__footer {
  margin-top: clamp(28px, 4vw, 42px);
  text-align: center;
}
.apply__footer p {
  margin-bottom: 18px;
  font-size: clamp(13px, 2vw, 15px);
  color: var(--text-dim);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(320px, 90%);
  padding: 17px 34px;
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 700;
  letter-spacing: .1em;
  color: #2a2005;
  background: var(--gold-grad);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(200, 169, 81, .18);
}
.btn-cta:hover { color: #2a2005; filter: brightness(1.08); }

/* --------------------------------------------------------------------------
   14. Q&A
   -------------------------------------------------------------------------- */
.qa-list { max-width: 860px; margin: 0 auto; border-top: 1px solid var(--hairline-dim); }
.qa-item { border-bottom: 1px solid var(--hairline-dim); }
.qa-item__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  padding: clamp(18px, 2.6vw, 24px) 4px;
  text-align: left;
  font-size: clamp(13.5px, 2.1vw, 16px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .04em;
  color: var(--text);
  transition: color var(--dur-base) var(--ease-out);
}
.qa-item__q:hover { color: var(--gold-light); }
.qa-mark {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--hairline);
  color: var(--gold-light);
}
.qa-item__q .qa-toggle {
  flex: 0 0 auto;
  margin-left: auto;
  width: 12px; height: 12px;
  position: relative;
  align-self: center;
}
.qa-item__q .qa-toggle::before,
.qa-item__q .qa-toggle::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--gold);
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
}
.qa-item__q .qa-toggle::before { width: 12px; height: 1px; }
.qa-item__q .qa-toggle::after  { width: 1px; height: 12px; }
.qa-item.is-open .qa-toggle::after { transform: rotate(90deg); opacity: 0; }

.qa-item__a {
  display: none;
  gap: 14px;
  padding: 0 4px clamp(20px, 2.8vw, 26px);
  font-size: clamp(13px, 2vw, 15px);
  line-height: 2.05;
  color: var(--text-dim);
}
.qa-item.is-open .qa-item__a { display: flex; align-items: flex-start; }
.qa-item__a .qa-mark { color: var(--gold); border-color: var(--hairline-dim); }

/* --------------------------------------------------------------------------
   15. 店舗フォト
   -------------------------------------------------------------------------- */
.photo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: clamp(14px, 2.2vw, 22px);
}
.photo-item { text-align: center; }
.photo-item__frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, #8a6f2e, #e8d5a3 45%, #c8a951 60%, #8a6f2e);
}
.photo-item__frame::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(10, 10, 11, .35);
  pointer-events: none;
}
.photo-item__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.photo-item__caption {
  margin-top: 10px;
  font-size: 12.5px;
  letter-spacing: .1em;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   16. フッター
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: var(--black-soft);
  padding-block: clamp(36px, 5vw, 56px);
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(16px, 3vw, 30px);
  margin-bottom: clamp(26px, 3.6vw, 36px);
}
.footer-nav a {
  font-size: clamp(12px, 1.7vw, 13.5px);
  letter-spacing: .08em;
  color: var(--text-dim);
}
.footer-nav a:hover { color: var(--gold-light); }

/* 透過ロゴになったので、囲わず黒地に直接置く */
.footer-plate { display: inline-block; }
.footer-plate img { width: clamp(200px, 32vw, 280px); }

.footer-copy {
  margin-top: clamp(24px, 3.4vw, 32px);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--text-dim);
}
.footer-copy a { color: var(--text-dim); }
.footer-copy a:hover { color: var(--gold-light); }

/* 下部固定CTA（SP） */
.sp-cta { display: none; }

/* --------------------------------------------------------------------------
   17. 応募ポップアップ
   -------------------------------------------------------------------------- */
.popop {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: none;
  place-items: center;
  padding: var(--gutter);
  background: rgba(6, 6, 7, .82);
  backdrop-filter: blur(3px);
}
.popop.is-active { display: grid; animation: popFade .3s ease both; }
@keyframes popFade { from { opacity: 0; } to { opacity: 1; } }

.pop-wrap {
  position: relative;
  width: min(460px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: clamp(30px, 5vw, 44px) clamp(22px, 4vw, 36px);
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.pop-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  font-size: 22px;
  line-height: 1;
  color: var(--text-dim);
}
.pop-close:hover { color: var(--gold-light); }
.pop-title {
  font-family: var(--serif-ja);
  font-size: clamp(18px, 3vw, 23px);
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--white);
  margin-bottom: 22px;
}
.pop-qr {
  display: inline-block;
  padding: 10px;
  background: var(--white);
  border-radius: var(--radius);
}
.pop-qr img { width: 168px; }
.pop-label {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold-light);
}
.pop-desc {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.9;
  color: var(--text-dim);
}
.pop-tel {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--hairline-dim);
}
.pop-tel__label {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-dim);
}
.pop-tel a {
  display: block;
  margin-top: 6px;
  font-family: var(--serif-ja);
  font-size: clamp(24px, 5vw, 30px);
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   18. レスポンシブ
   -------------------------------------------------------------------------- */
/* タブレット：選ばれる理由は2列に落とす */
@media (max-width: 1023px) {
  .reasons__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .spec-table th { width: 130px; white-space: normal; }
}

@media (max-width: 767px) {
  body { font-size: 15px; line-height: 1.85; }

  .sp-only { display: block; }

  .site-header .header-band,
  .site-header .main-nav { display: none; }
  .sp-header { display: block; position: sticky; top: 0; z-index: var(--z-header); }
  .sp-header.is-sticky .sp-bar { box-shadow: 0 4px 18px rgba(0, 0, 0, .45); }

  .intro__layout { grid-template-columns: 1fr; }
  .intro__head { position: static; }

  .reasons__grid { grid-template-columns: 1fr; }
  .support__grid { grid-template-columns: 1fr; }

  .courses__grid { grid-template-columns: 1fr; gap: 34px; }
  .course--executive { order: -1; }

  .spec-table, .spec-table tbody, .spec-table tr, .spec-table th, .spec-table td { display: block; width: 100%; }
  .spec-table th {
    border-bottom: 0;
    padding-bottom: 4px;
    background: none;
  }
  .spec-table td { padding-top: 0; }

  /* 給与欄：クラス名／金額／カッコ書きをそれぞれ独立した行に落とす */
  .spec-table .rank-name  { display: block; min-width: 0; margin-bottom: 2px; }
  .spec-table .rank-daily { display: block; margin-left: 0; }
  .spec-table .rank-line + .rank-line { margin-top: 14px; }

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

  /* 下部固定CTA */
  .sp-cta {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: var(--z-spcta);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--hairline);
    border-top: 1px solid var(--hairline);
  }
  .sp-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 6px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
  }
  .sp-cta__tel { color: var(--gold-light); background: var(--black); }
  .sp-cta__apply { color: #2a2005; background: var(--gold-grad); }
  body { padding-bottom: 54px; }
}

@media (max-width: 420px) {
  .photo__grid { grid-template-columns: 1fr; }
  .sp-bar__logo img { width: 128px; }
  .sp-tel { padding-inline: 9px; font-size: 11px; }
}

/* 動きを減らす設定への配慮 */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   19. 下層ページ共通
   -------------------------------------------------------------------------- */

/* ページ見出し */
.page-hero {
  position: relative;
  padding-block: clamp(38px, 6.4vw, 78px);
  text-align: center;
  border-bottom: 1px solid var(--hairline-dim);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(200,169,81,.12) 0%, transparent 60%),
    linear-gradient(180deg, #17171a 0%, var(--black) 72%);
}
/* 背景に画像が入るため、--gold（#c8a951）では 12px で 4.5:1 を割る。一段明るい --gold-light を使う */
.page-hero__en {
  display: block;
  font-family: var(--serif);
  font-size: clamp(11px, 1.6vw, 13px);
  font-weight: 500;
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.page-hero__ja {
  margin-top: var(--sp-3);
  font-family: var(--serif-ja);
  font-size: clamp(23px, 4.6vw, 38px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .08em;
  color: #fff;
  text-wrap: balance;
}
.page-hero__lead {
  max-width: 720px;
  margin: var(--sp-5) auto 0;
  font-size: clamp(13.5px, 2.1vw, 16px);
  line-height: 2.1;
  color: var(--text-dim);
}

/* パンくず。背景に画像が入ると --text-dim では 12px で 4.5:1 を割るため、
   一段明るい --text を使う */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: var(--sp-5);
  font-size: 12px;
  letter-spacing: .06em;
  color: var(--text);
}
.breadcrumb li + li::before { content: "／"; margin-right: 8px; color: rgba(200,169,81,.6); }
.breadcrumb a { color: var(--text); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb [aria-current="page"] { color: var(--gold-light); }

/* 手順（縦フロー） */
.steps {
  counter-reset: st;
  max-width: 760px;
  margin-inline: auto;
}
.steps > li {
  counter-increment: st;
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: clamp(16px, 3vw, 28px);
  padding-bottom: clamp(26px, 4vw, 40px);
}
.steps > li:last-child { padding-bottom: 0; }
.steps > li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 21px; top: 52px; bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(200,169,81,.6), transparent);
}
.steps__num {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold-light);
  border: 1px solid var(--gold);
}
.steps__num::before { content: counter(st, decimal-leading-zero); }
.steps__title {
  font-family: var(--serif-ja);
  font-size: clamp(16px, 2.6vw, 20px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
  padding-top: 6px;
}
.steps__text {
  margin-top: var(--sp-2);
  font-size: clamp(13px, 2vw, 15px);
  line-height: 2.05;
  color: var(--text-dim);
}
.steps__tag {
  display: inline-block;
  margin-top: var(--sp-3);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-light);
  border: 1px solid var(--hairline);
}

/* 定義リスト（クラスごとの解説など） */
.deflist { display: grid; gap: 1px; background: var(--hairline-dim); border: 1px solid var(--hairline-dim); }
.deflist__row {
  display: grid;
  grid-template-columns: 12em 1fr;
  gap: clamp(12px, 2.4vw, 24px);
  padding: clamp(16px, 2.6vw, 22px) clamp(16px, 2.6vw, 24px);
  background: var(--surface);
  font-size: clamp(13px, 2vw, 15px);
  line-height: 1.95;
}
.deflist__t { font-weight: 700; letter-spacing: .06em; color: var(--gold-light); }
.deflist__d { color: var(--text-dim); }

/* 関連ページ導線 */
.pagelinks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2.4vw, 20px);
}
.pagelink {
  display: grid;
  align-content: start;
  gap: 6px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--surface);
  border: 1px solid var(--hairline-dim);
  transition: border-color var(--dur-medium) var(--ease-out), background var(--dur-medium) var(--ease-out);
}
.pagelink:hover { border-color: var(--gold); background: var(--surface-2); }
.pagelink__en {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
}
.pagelink__t {
  font-family: var(--serif-ja);
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--white);
}
.pagelink__d { font-size: 13px; line-height: 1.85; color: var(--text-dim); }
.pagelink__more {
  margin-top: var(--sp-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
}
.pagelink:hover .icon--arrow { transform: translateX(4px); }
.pagelink .icon--arrow { transition: transform var(--dur-base) var(--ease-out); }

/* ページ下部の応募導線 */
.cta-band {
  padding-block: clamp(48px, 7.5vw, 92px);
  text-align: center;
  border-top: 1px solid var(--hairline);
  background:
    radial-gradient(100% 80% at 50% 0%, rgba(200,169,81,.10) 0%, transparent 62%),
    var(--black-soft);
}
.cta-band__title {
  font-family: var(--serif-ja);
  font-size: clamp(19px, 3.6vw, 29px);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: .08em;
  color: #fff;
  text-wrap: balance;
}
.cta-band__lead {
  max-width: 640px;
  margin: var(--sp-4) auto 0;
  font-size: clamp(13px, 2vw, 15px);
  line-height: 2.05;
  color: var(--text-dim);
}
.cta-band__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
  margin-top: clamp(26px, 4vw, 38px);
}
.cta-band .btn-cta { min-width: min(300px, 100%); }
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: min(300px, 100%);
  padding: 17px 34px;
  font-size: clamp(14px, 2.2vw, 16px);
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold-light);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.btn-line:hover { color: #2a2005; background: var(--gold-light); border-color: var(--gold-light); }
.btn-line:active { transform: translateY(1px); }

@media (max-width: 767px) {
  .deflist__row { grid-template-columns: 1fr; gap: 4px; }
  .steps > li { grid-template-columns: 36px 1fr; }
  .steps > li:not(:last-child)::before { left: 17px; top: 44px; }
  .steps__num { width: 36px; height: 36px; font-size: 13px; }
  .steps__title { padding-top: 3px; }
}

/* --------------------------------------------------------------------------
   20. アクセス
   -------------------------------------------------------------------------- */
/* 地図は全幅で敷く。比率固定だとワイド画面で縦に伸びすぎるため高さで制御する */
.mapframe {
  position: relative;
  width: 100%;
  height: clamp(420px, 48vw, 660px);
  overflow: hidden;
  background: var(--surface);
  border-block: 1px solid var(--hairline);
}
.mapframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-section { padding-top: clamp(36px, 5vw, 56px); }
.map-caption {
  display: grid;
  justify-items: start;
  gap: var(--sp-5);
  margin-top: var(--sp-5);
  font-size: 13px;
  line-height: 1.95;
  color: var(--text-dim);
}
.map-caption strong {
  font-family: var(--serif-ja);
  font-size: clamp(15px, 2.4vw, 18px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--gold-light);
}
.map-caption a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
}
.map-caption a:hover { color: #2a2005; background: var(--gold-light); border-color: var(--gold-light); }
.map-caption a:active { transform: translateY(1px); }
.map-caption a:hover .icon--arrow { transform: translateX(4px); }
.map-caption .icon--arrow { transition: transform var(--dur-base) var(--ease-out); }

/* 強調バーのすぐ下に置く実務的な案内 */
.station-note {
  max-width: 720px;
  margin: calc(var(--sp-5) * -1 + 4px) auto clamp(24px, 3.4vw, 34px);
  text-align: center;
  font-size: clamp(13px, 2vw, 14.5px);
  color: var(--text-dim);
}

/* 最寄駅：3つ並べたカードは情報が薄く飾りに見えるため、選択肢の一覧として組む */
.station-list {
  max-width: 720px;
  margin-inline: auto;
  border-top: 1px solid var(--hairline-dim);
}
.station {
  display: grid;
  grid-template-columns: 9.5em 1fr;
  align-items: baseline;
  gap: clamp(14px, 2.6vw, 28px);
  padding: clamp(18px, 2.8vw, 24px) clamp(4px, 1.6vw, 12px);
  border-bottom: 1px solid var(--hairline-dim);
}
.station__name {
  position: relative;
  padding-left: 22px;
  font-family: var(--serif-ja);
  font-size: clamp(17px, 2.8vw, 21px);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold-light);
  white-space: nowrap;
}
/* 駅を示す金の菱形。サイト内の他の印と揃えている。
   .station__name は nowrap で必ず1行なので、50% が行ボックスの厳密な中央になる */
.station__name::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.station__lines {
  font-size: clamp(13px, 2vw, 14.5px);
  line-height: 1.9;
  color: var(--text-dim);
}
.station__lines span { white-space: nowrap; }
.station__lines span + span::before { content: "／"; color: rgba(200,169,81,.45); margin: 0 .1em; }

@media (max-width: 767px) {
  /* スマホは縦に余裕を持たせないと地図として使えない */
  .mapframe { height: 400px; }
  /* 駅名と路線を上下に積む */
  .station { grid-template-columns: 1fr; gap: 4px; }
  .station__lines { padding-left: 22px; }
}

/* --------------------------------------------------------------------------
   21. 下層ページ見出しの背景（試作）
        画像を使わず CSS だけで、ページごとに異なる空気をつくる。
        画像に差し替える場合は各ブロックの background に url(...) を足す。
   -------------------------------------------------------------------------- */

/* 未経験の方へ：上から柔らかい光。角を立てず、安心感を出す
   画像は 2560x1440 の抽象テクスチャ。cover なので四方向ともトリミングされる。
   1層目の黒の濃度が可読性を決めるので、画像を差し替えた際は必ず再調整すること */
#noexperienceBody .page-hero {
  background-color: var(--black);
  background-image:
    linear-gradient(180deg,
      rgba(10, 10, 11, .58) 0%,
      rgba(10, 10, 11, .74) 52%,
      rgba(10, 10, 11, .94) 100%),
    radial-gradient(80% 120% at 50% -10%, rgba(232, 213, 163, .10) 0%, transparent 55%),
    url("/img/hero_noexperience.webp?260821");   /* 画像を差し替えたら日付を更新する */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* 経験者・移籍希望：研磨された黒石に右上からのレイキングライト。硬質で格上げされた印象に。
   画像側が線構造を持つため、CSSの斜め罫線は重ねない（モアレと情報過多になる） */
#experienceBody .page-hero {
  background-color: var(--black);
  background-image:
    linear-gradient(180deg,
      rgba(10, 10, 11, .62) 0%,
      rgba(10, 10, 11, .78) 52%,
      rgba(10, 10, 11, .94) 100%),
    radial-gradient(90% 110% at 78% 0%, rgba(200, 169, 81, .08) 0%, transparent 58%),
    url("/img/hero_experience.webp?260821");   /* 画像を差し替えたら日付を更新する */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ステップアップ：垂直の光の柱で「上昇」を示す。
   3枚のなかで最も明るく縦縞のコントラストも強いため、黒は他ページより厚くかける */
#stepupBody .page-hero {
  position: relative;
  background-color: var(--black);
  background-image:
    linear-gradient(180deg,
      rgba(10, 10, 11, .72) 0%,
      rgba(10, 10, 11, .82) 52%,
      rgba(10, 10, 11, .95) 100%),
    radial-gradient(70% 100% at 50% 0%, rgba(232, 213, 163, .06) 0%, transparent 60%),
    url("/img/hero_stepup.webp?260821");   /* 画像を差し替えたら日付を更新する */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
/* 上へ向かう段。装飾なので読み上げ対象外 */
#stepupBody .page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}

/* アクセス：地図が主役なので見出しは静かなまま（変更なし） */
