@charset "utf-8";
/* =============================================================
   株式会社ハミングバード 採用ページ（インストラクター募集）
   recruit.css
   -------------------------------------------------------------
   ・このファイルは /recruit/ 専用です。既存サイトの共通CSSの
     後ろに読み込んでください。
   ・ヘッダー／フッターは既存サイトの共通パーツに差し替える前提の
     ため、.rc-sitehead / .rc-sitefoot は暫定スタイルです。
   ・すべてのセレクタに .rc- 接頭辞を付けており、既存CSSとは
     衝突しません。
   ============================================================= */

/* -------------------------------------------------------------
   1. 設計トークン
   ------------------------------------------------------------- */
.rc {
  /* 配色：メインビジュアルの空から実測抽出した値 */
  --rc-deep:    #0E2A55;  /* 濃紺／見出し・背景 */
  --rc-sky:     #3770B5;  /* 中間の青／ラベル・罫線 */
  --rc-sky-lt:  #6DA1D6;  /* 明るい青／グラフ・アイコン */
  --rc-haze:    #8DB3D5;  /* 霞んだ青／濃紺背景上の補助文字 */
  --rc-paper:   #F5F8FB;  /* 薄い背景 */
  --rc-signal:  #FF6A1F;  /* アクセント／CTA・強調 */
  --rc-ink:     #0B1A2A;  /* 本文 */
  --rc-sub:     #5D6A76;  /* 補助文字 */
  --rc-line:    rgba(14, 42, 85, .13);

  /* 書体：既存サイトに合わせて日本語ゴシック1書体に統一しています。
     共通CSSの指定をそのまま継承させたい場合は、下の3つを inherit に
     変更してください（.rc の font-family も同様）。 */
  --rc-font: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;
  --rc-disp: var(--rc-font);   /* 見出し */
  --rc-base: var(--rc-font);   /* 本文 */
  --rc-lat:  var(--rc-font);   /* 数値・英字ラベル */

  --rc-wrap: 1080px;
  --rc-pad: 40px;
}

/* -------------------------------------------------------------
   2. ベース
   ------------------------------------------------------------- */
.rc, .rc * { box-sizing: border-box; }
.rc {
  font-family: var(--rc-base);
  font-size: 16px;
/*CMSのCSSと競合するため
  line-height: 1.85;*/
  line-height: 1.5;
  color: var(--rc-ink);
  background: #fff;
  overflow-x: hidden;
}
/*提供されたHTMLが崩れるため調整
.rc img { display: block; max-width: 100%; height: auto; }*/
.rc img:not(.rc-mv__img) { display: block; max-width: 100%; height: auto; }
/*CMSのCSSと競合するため
.rc a { color: inherit; }*/
/*提供されたHTMLが崩れるため調整
.rc ul { list-style: none; margin: 0; padding: 0; }*/
.rc ul:not(.rc-tl) { list-style: none; margin: 0; padding: 0; }

.rc .rc__wrap {
  max-width: var(--rc-wrap);
  margin-inline: auto;
  padding-inline: var(--rc-pad);
}
.rc .rc__sec { padding-block: 92px; }
.rc .rc__sec--tight { padding-block: 70px; }
.rc .rc__sec--paper { background: var(--rc-paper); }
.rc .rc__sec--deep { background: var(--rc-deep); color: #fff; }

.rc .rc__label {
  font-family: var(--rc-lat);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .22em;
  color: var(--rc-sky);
  margin: 0;
}
.rc .rc__sec--deep .rc__label { color: var(--rc-haze); }

.rc .rc__h2 {
  margin: 10px 0 0;
  font-family: var(--rc-disp);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
  letter-spacing: -.01em;
  color: var(--rc-deep);
}
.rc .rc__sec--deep .rc__h2 { color: #fff; }

.rc .rc__lead {
  margin: 20px 0 0;
  font-size: 15.5px;
  color: #3C4A58;
  max-width: 620px;
}
.rc .rc__sec--deep .rc__lead { color: #C6DAEC; }
.rc .rc__lead strong { color: var(--rc-deep); font-weight: 700; }
.rc .rc__sec--deep .rc__lead strong { color: #fff; }
.rc .rc__note { font-size: 12.5px; line-height: 1.8; color: #8FA9C4; }

/* ボタン */
.rc .rc__btn {
  display: inline-block;
  background: var(--rc-signal);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  padding: 18px 40px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.rc .rc__btn:hover { background: #F05A10; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,106,31,.28); }
.rc .rc__btn--ghost {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(3px);
}
.rc .rc__btn--ghost:hover { background: rgba(255,255,255,.26); box-shadow: none; }

/* スクロール時のフェードイン（prefers-reduced-motion で無効化） */
.rc [data-rc-fade] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.rc [data-rc-fade].is-shown { opacity: 1; transform: none; }

/* -------------------------------------------------------------
   2-b. リセット
   既存サイトの共通CSS（body p / h2 などの要素セレクタ）が
   このページに流れ込まないようにするための打ち消しです。
   コンポーネント側は「.rc .rc-xxx」の2クラス指定で、
   このリセットより詳細度が高くなるようにしてあります。
   ------------------------------------------------------------- */
.rc h1, .rc h2, .rc h3, .rc h4, .rc h5, .rc h6,
.rc p, .rc ul, .rc ol, .rc li, .rc dl, .rc dt, .rc dd,
.rc figure, .rc figcaption, .rc address, .rc table, .rc th, .rc td,
.rc details, .rc summary, .rc button, .rc a, .rc span,
.rc b, .rc i, .rc em, .rc strong, .rc small {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-align: inherit;
  background: none;
  border: 0;
}
.rc b, .rc strong { font-weight: 700; }
.rc table { border-collapse: collapse; width: 100%; }
.rc a { text-decoration: none; }
.rc button { -webkit-appearance: none; appearance: none; }
.rc img { display: block; max-width: 100%; height: auto; }

/* -------------------------------------------------------------
   3. 暫定ヘッダー／フッター
   ※既存サイトの共通パーツに差し替えてください
   ------------------------------------------------------------- */
.rc .rc-sitehead {
  position: sticky; top: 0; z-index: 120;
  display: flex; align-items: center; gap: 24px;
  padding: 14px 32px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rc-line);
}
.rc .rc-sitehead__logo { font-family: var(--rc-disp); font-weight: 900; font-size: 16px; color: var(--rc-deep); text-decoration: none; line-height: 1.25; }
.rc .rc-sitehead__logo small { display: block; font-family: var(--rc-lat); font-weight: 500; font-size: 10px; letter-spacing: .14em; color: var(--rc-sky); }
.rc .rc-sitehead__nav { display: flex; gap: 20px; margin-left: auto; }
.rc .rc-sitehead__nav a { font-size: 13.5px; text-decoration: none; color: #3C4A58; }
.rc .rc-sitehead__nav a:hover { color: var(--rc-sky); }
.rc .rc-sitehead__tel { font-family: var(--rc-lat); font-weight: 700; font-size: 17px; letter-spacing: 0; color: var(--rc-deep); text-decoration: none; letter-spacing: .02em; }
.rc .rc-sitehead__cta { background: var(--rc-signal); color: #fff; font-weight: 700; font-size: 13px; padding: 11px 22px; border-radius: 100px; text-decoration: none; }

.rc .rc-sitefoot { background: #08192F; color: #8FA9C4; font-size: 13px; line-height: 2; padding: 56px 32px 32px; }
.rc .rc-sitefoot__inner { max-width: 1080px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.rc .rc-sitefoot__logo { font-family: var(--rc-disp); font-weight: 900; font-size: 17px; color: #fff; margin-bottom: 14px; }
.rc .rc-sitefoot h3 { font-size: 13px; color: #fff; margin: 0 0 6px; font-weight: 700; }
.rc .rc-sitefoot address { font-style: normal; margin-bottom: 14px; }
.rc .rc-sitefoot a { color: #8FA9C4; text-decoration: none; }
.rc .rc-sitefoot a:hover { color: #fff; text-decoration: underline; }
.rc .rc-sitefoot__links { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 8px; }
.rc .rc-sitefoot__copy { max-width: 1080px; margin: 34px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); font-family: var(--rc-lat); font-size: 12px; letter-spacing: .04em; }

/* -------------------------------------------------------------
   4. ページ内アンカーナビ
   ------------------------------------------------------------- */
/*提供されたHTMLが崩れるため調整*/
/*.rc .rc-anchor {*/
.rc-anchor {
  position: sticky; top: 107px; z-index: 100;
  background: rgba(14,42,85,.96);
  backdrop-filter: blur(6px);
}
/*.rc .rc-anchor ul { display: flex; justify-content: center; gap: 4px; max-width: var(--rc-wrap); margin-inline: auto; }*/
.rc-anchor ul { display: flex; justify-content: center; gap: 4px; max-width: var(--rc-wrap); margin-inline: auto; }
/*.rc .rc-anchor a {*/
.rc-anchor a {
  display: block; padding: 15px 18px;
  font-size: 13.5px; color: #C6DAEC; text-decoration: none;
  border-bottom: 2px solid transparent;
}
/*.rc .rc-anchor a:hover { color: #fff; border-bottom-color: var(--rc-signal); }*/
.rc-anchor a:hover { color: #fff; border-bottom-color: var(--rc-signal); }

/* -------------------------------------------------------------
   5. 01 メインビジュアル
   ------------------------------------------------------------- */
/* メインビジュアル
   写真は 4:3。機体が上から22〜34%、地平線が78%の位置にあるため、
   コンテナ比率ごとに object-position を調整して機体の頭が
   切れないようにしています。max-height は指定しません
   （高さを固定すると実質の比率が横長になり、上部が切れるため）。 */
.rc .rc-mv { position: relative; width: 100%; aspect-ratio: 2 / 1; overflow: hidden; }
.rc .rc-mv__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.rc .rc-mv__veil {
  position: absolute; inset: 0;
  background: linear-gradient(260deg, rgba(14,42,85,0) 30%, rgba(14,42,85,.30) 62%, rgba(14,42,85,.44) 100%);
}
.rc .rc-mv__body { position: absolute; left: 5%; top: 50%; transform: translateY(-50%); width: 52%; max-width: 620px; color: #fff; }
.rc .rc-mv__eyebrow {
  font-family: var(--rc-lat); font-weight: 600; font-size: 12px;
  letter-spacing: .24em; color: #B9D8EF; margin: 0 0 16px;
}
.rc .rc-mv__title {
  margin: 0;
  font-family: var(--rc-disp); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.3; letter-spacing: -.02em;
  text-shadow: 0 2px 26px rgba(6,24,50,.45);
}
.rc .rc-mv__title em { font-style: normal; color: var(--rc-signal); }
.rc .rc-mv__sub { margin: 20px 0 0; font-size: 15.5px; max-width: 430px; text-shadow: 0 1px 14px rgba(6,24,50,.5); }
.rc .rc-mv__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.rc .rc-mv__badge {
  position: absolute; right: 5%; bottom: 8%; text-align: right; color: #fff;
  max-width: 40%; pointer-events: none;
  font-family: var(--rc-lat); font-weight: 700;
  letter-spacing: .1em; font-size: 13px; line-height: 1.5;
  text-shadow: 0 2px 16px rgba(6,24,50,.7);
}
.rc .rc-mv__badge b {
  display: block; font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 700; letter-spacing: -.03em; line-height: 1;
}
.rc .rc-mv__badge b i { font-style: normal; font-size: .38em; margin-left: 2px; letter-spacing: 0; }
.rc .rc-mv__badge span { display: block; margin-top: 6px; color: #DCEBF7; }

/* ワイド画面：横に伸びるぶん上下の切り取りが増えるため、
   機体側を優先して表示位置を上げる */
@media (min-width: 1500px) {
  .rc .rc-mv { aspect-ratio: 2.3 / 1; }
  .rc .rc-mv__img { object-position: center 34%; }
}

/* -------------------------------------------------------------
   6. 02 数字と制度
   ------------------------------------------------------------- */
.rc .rc-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--rc-line); margin-top: 34px; }
.rc .rc-fact { background: var(--rc-paper); padding: 28px 18px 30px; text-align: center; }
.rc .rc-fact__ic {
  display: block; width: 28px; height: 28px; margin: 0 auto 14px;
  color: var(--rc-sky); fill: none; stroke: currentColor;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.rc .rc-fact__num { display: block; font-family: var(--rc-lat); font-weight: 700; font-size: 42px; line-height: 1.1; color: var(--rc-deep); letter-spacing: -.02em; }
.rc .rc-fact__num i { font-style: normal; font-size: 16px; margin-left: 2px; }
.rc .rc-fact--word .rc-fact__num { font-family: var(--rc-disp); font-size: 19px; line-height: 1.5; letter-spacing: -.01em; padding: 7px 0; }
.rc .rc-fact__cap { display: block; font-size: 13px; color: var(--rc-sub); margin-top: 12px; }
.rc .rc-fact__cap small { display: block; font-size: 11px; color: #9AA8B4; margin-top: 5px; line-height: 1.5; }
.rc .rc-facts__group { font-family: var(--rc-lat); font-weight: 700; letter-spacing: .18em; font-size: 11.5px; color: var(--rc-sky); margin: 38px 0 0; }

/* -------------------------------------------------------------
   7. 03 仕事
   ------------------------------------------------------------- */
.rc .rc-works { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 38px; }
.rc .rc-work { background: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 2px 10px rgba(14,42,85,.09); }
.rc .rc-work__img { width: 100%; aspect-ratio: 1.35 / 1; object-fit: cover; }
.rc .rc-work__body { padding: 18px 20px 24px; }
.rc .rc-work__body h3 { margin: 0; font-family: var(--rc-disp); font-size: 17px; font-weight: 700; color: var(--rc-deep); }
.rc .rc-work__en { font-family: var(--rc-lat); font-size: 10.5px; letter-spacing: .14em; color: var(--rc-sky-lt); margin-top: 2px; }
.rc .rc-work__body p { margin: 10px 0 0; font-size: 13.5px; color: var(--rc-sub); line-height: 1.85; }

/* -------------------------------------------------------------
   8. 04 一日の流れ
   ------------------------------------------------------------- */
.rc .rc-days { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 38px; }
.rc .rc-day { background: #fff; border: 1px solid var(--rc-line); padding: 26px 26px 22px; }
.rc .rc-day h3 { margin: 0 0 20px; font-family: var(--rc-disp); font-size: 17px; font-weight: 700; color: var(--rc-deep); }
.rc .rc-day h3 span { display: block; font-family: var(--rc-lat); font-size: 10.5px; font-weight: 700; letter-spacing: .14em; color: var(--rc-sky); }
.rc .rc-tl { border-left: 1px solid var(--rc-sky-lt); padding-left: 24px; margin-left: 6px; }
.rc .rc-tl li { position: relative; padding-bottom: 18px; }
.rc .rc-tl li::before {
  content: ''; position: absolute; left: -29px; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: #fff; border: 2px solid var(--rc-sky);
}
.rc .rc-tl__time { font-family: var(--rc-lat); font-size: 13px; font-weight: 700; letter-spacing: .06em; color: var(--rc-sky); }
.rc .rc-tl__act { font-size: 14px; color: #3C4A58; margin-top: 1px; }

/* -------------------------------------------------------------
   9. 05 研修
   ------------------------------------------------------------- */
.rc .rc-tphotos { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 38px; }
.rc .rc-tphotos figure { margin: 0; }
.rc .rc-tphotos img { width: 100%; aspect-ratio: 1.5 / 1; object-fit: cover; border-radius: 4px; }
.rc .rc-tphotos figcaption { font-size: 13.5px; color: var(--rc-sub); margin-top: 12px; line-height: 1.8; }

.rc .rc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 38px; }
.rc .rc-step { background: #fff; border-top: 3px solid var(--rc-sky); padding: 22px 18px 26px; box-shadow: 0 2px 10px rgba(14,42,85,.07); }
.rc .rc-step:last-child { border-top-color: var(--rc-signal); }
.rc .rc-step__n { font-family: var(--rc-lat); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--rc-signal); }
.rc .rc-step h3 { margin: 8px 0 0; font-family: var(--rc-disp); font-size: 15.5px; font-weight: 700; color: var(--rc-deep); line-height: 1.5; }
.rc .rc-step p { margin: 9px 0 0; font-size: 13px; color: var(--rc-sub); line-height: 1.8; }

/* -------------------------------------------------------------
   10. 06 社員インタビュー
   ------------------------------------------------------------- */
.rc .rc-members { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 38px; }
.rc .rc-member { background: #fff; box-shadow: 0 2px 12px rgba(14,42,85,.1); border-radius: 4px; overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.rc .rc-member:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(14,42,85,.16); }
.rc .rc-member__img { width: 100%; aspect-ratio: 1 / 1.15; object-fit: cover; }
.rc .rc-member__body { padding: 20px 20px 24px; }
.rc .rc-member__from { font-family: var(--rc-base); font-size: 12.5px; letter-spacing: .04em; color: var(--rc-signal); font-weight: 500; }
.rc .rc-member__body h3 { margin: 9px 0 0; font-family: var(--rc-disp); font-weight: 700; font-size: 17px; line-height: 1.6; color: var(--rc-deep); }
.rc .rc-member__body p { margin: 10px 0 0; font-size: 13.5px; color: var(--rc-sub); line-height: 1.85; }

/* -------------------------------------------------------------
   11. 07 仲間と社風
   ------------------------------------------------------------- */
.rc .rc-culture { position: relative; width: 100%; aspect-ratio: 2.15 / 1; overflow: hidden; }
.rc .rc-culture__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.rc .rc-culture__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,24,50,.48) 0%, rgba(6,24,50,.04) 40%, rgba(6,24,50,.66) 100%);
}
.rc .rc-culture__body { position: absolute; left: 6%; right: 6%; bottom: 9%; color: #fff; }
.rc .rc-culture__body h2 {
  margin: 0; font-family: var(--rc-disp); font-weight: 700;
  font-size: clamp(21px, 2.7vw, 34px); letter-spacing: -.01em; line-height: 1.5;
  text-shadow: 0 2px 22px rgba(6,24,50,.55);
}
.rc .rc-culture__body p { margin: 12px 0 0; font-size: 15.5px; max-width: 540px; text-shadow: 0 1px 12px rgba(6,24,50,.6); }

.rc .rc-cal { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 34px; }
.rc .rc-cal li { border: 1px solid rgba(255,255,255,.26); padding: 18px 16px; }
.rc .rc-cal span { display: block; font-family: var(--rc-lat); font-weight: 700; letter-spacing: .16em; font-size: 10.5px; color: var(--rc-haze); margin-bottom: 6px; }
.rc .rc-cal b { font-family: var(--rc-disp); font-size: 15.5px; font-weight: 700; }

.rc .rc-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.rc .rc-gallery figure { margin: 0; }
.rc .rc-gallery img { width: 100%; aspect-ratio: 1.42 / 1; object-fit: cover; border-radius: 3px; }
.rc .rc-gallery figcaption { font-size: 13px; color: var(--rc-haze); margin-top: 9px; }

/* -------------------------------------------------------------
   12. 08 若手の抜擢／表彰
   ------------------------------------------------------------- */
.rc .rc-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.rc .rc-case { background: #fff; padding: 28px 24px 30px; border-left: 3px solid var(--rc-signal); box-shadow: 0 2px 10px rgba(14,42,85,.08); }
.rc .rc-case__y { font-family: var(--rc-lat); font-size: 30px; font-weight: 700; color: var(--rc-deep); line-height: 1.1; letter-spacing: -.02em; }
.rc .rc-case__y i { font-style: normal; font-size: 14px; margin-left: 1px; }
.rc .rc-case h3 { margin: 12px 0 0; font-family: var(--rc-disp); font-weight: 700; font-size: 16px; color: var(--rc-deep); line-height: 1.6; }
.rc .rc-case p { margin: 10px 0 0; font-size: 13.5px; color: var(--rc-sub); line-height: 1.85; }

.rc .rc-award { display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: center; margin-top: 44px; }
.rc .rc-award img { width: 100%; aspect-ratio: 1.4 / 1; object-fit: cover; border-radius: 4px; }
.rc .rc-award h3 { margin: 0; font-family: var(--rc-disp); font-weight: 700; font-size: clamp(19px, 2.2vw, 26px); letter-spacing: -.01em; color: var(--rc-deep); line-height: 1.5; }
.rc .rc-award p { margin: 16px 0 0; font-size: 15px; color: #3C4A58; }

/* -------------------------------------------------------------
   13. 09 市場規模グラフ
   ------------------------------------------------------------- */
.rc .rc-market { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; margin-top: 34px; }
.rc .rc-chart { border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.05); padding: 26px 24px 18px; }
.rc .rc-chart__bars { display: flex; align-items: flex-end; gap: 10px; height: 250px; }
.rc .rc-chart__bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.rc .rc-chart__bar i { width: 100%; display: block; border-radius: 2px 2px 0 0; background: linear-gradient(180deg, var(--rc-sky-lt), rgba(109,161,214,.28)); }
.rc .rc-chart__bar i.is-hi { background: linear-gradient(180deg, var(--rc-signal), rgba(255,106,31,.35)); }
.rc .rc-chart__v { font-family: var(--rc-lat); font-weight: 700; font-size: 15px; letter-spacing: -.01em; color: #fff; margin-bottom: 8px; }
.rc .rc-chart__v.is-hi { color: var(--rc-signal); font-size: 19px; }
.rc .rc-chart__x { font-family: var(--rc-lat); font-size: 10.5px; letter-spacing: .06em; color: var(--rc-haze); margin-top: 10px; text-align: center; line-height: 1.4; }
.rc .rc-chart__x small { font-size: 9px; letter-spacing: .06em; }
.rc .rc-chart__bar--gap { flex: .4; justify-content: flex-end; color: var(--rc-haze); }
.rc .rc-chart__bar--gap .rc-chart__x { margin-top: 0; padding-bottom: 6px; font-size: 15px; }
.rc .rc-chart__unit { font-family: var(--rc-lat); font-size: 11px; letter-spacing: .08em; color: var(--rc-haze); text-align: right; margin-top: 12px; }

/* -------------------------------------------------------------
   14. 10 拠点・待遇
   ------------------------------------------------------------- */
.rc .rc-places { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 38px; }
.rc .rc-place { position: relative; aspect-ratio: 1.25 / 1; overflow: hidden; border-radius: 4px; }
.rc .rc-place img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rc .rc-place figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px; color: #fff;
  background: linear-gradient(transparent, rgba(6,24,50,.82));
}
.rc .rc-place b { display: block; font-family: var(--rc-disp); font-size: 16.5px; font-weight: 700; }
.rc .rc-place span { font-size: 12.5px; color: #CFE0EE; }

.rc .rc-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 22px; }
.rc .rc-perk { background: #fff; border: 1px solid var(--rc-line); padding: 16px 14px; text-align: center; font-size: 13px; color: #3C4A58; }
.rc .rc-perk b { display: block; font-family: var(--rc-disp); font-weight: 700; font-size: 14.5px; color: var(--rc-deep); }

/* -------------------------------------------------------------
   15. 11 募集要項
   ------------------------------------------------------------- */
.rc .rc-spec { width: 100%; border-collapse: collapse; font-size: 14px; margin-top: 34px; background: #fff; }
.rc .rc-spec th, .rc .rc-spec td { border-bottom: 1px solid var(--rc-line); padding: 16px 18px; text-align: left; vertical-align: top; }
.rc .rc-spec th { width: 180px; background: var(--rc-paper); color: var(--rc-deep); font-family: var(--rc-disp); font-weight: 700; font-size: 14px; white-space: nowrap; }

/* -------------------------------------------------------------
   16. 12 選考の流れ
   ------------------------------------------------------------- */
.rc .rc-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 34px; }
.rc .rc-flow li { background: var(--rc-paper); padding: 22px 16px; text-align: center; }
.rc .rc-flow__n { font-family: var(--rc-lat); font-size: 11px; font-weight: 700; letter-spacing: .14em; color: var(--rc-sky); }
.rc .rc-flow b { display: block; font-family: var(--rc-disp); font-weight: 700; font-size: 15.5px; margin-top: 6px; color: var(--rc-deep); }
.rc .rc-flow small { display: block; font-size: 12px; color: #7D8B98; margin-top: 5px; }

/* -------------------------------------------------------------
   17. 13 FAQ（details/summary）
   ------------------------------------------------------------- */
.rc .rc-faq { margin-top: 34px; }
.rc .rc-faq details { border-bottom: 1px solid var(--rc-line); }
.rc .rc-faq summary {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 4px; cursor: pointer; list-style: none;
  font-family: var(--rc-disp); font-size: 15.5px; font-weight: 700; color: var(--rc-deep);
}
.rc .rc-faq summary::-webkit-details-marker { display: none; }
.rc .rc-faq summary::before { content: 'Q'; font-family: var(--rc-lat); font-size: 16px; font-weight: 700; color: var(--rc-signal); line-height: 1.3; }
.rc .rc-faq summary::after { content: '＋'; margin-left: auto; color: var(--rc-sky-lt); font-size: 16px; }
.rc .rc-faq details[open] summary::after { content: '−'; }
.rc .rc-faq__a { padding: 0 4px 24px 34px; font-size: 14.5px; color: #3C4A58; margin: 0; }

/* -------------------------------------------------------------
   18. 14 応募
   ------------------------------------------------------------- */
.rc .rc-entry { margin-top: 34px; }
.rc .rc-mail {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.07);
  padding: 44px 40px 38px;
  text-align: center;
}
.rc .rc-mail__k { font-family: var(--rc-lat); font-size: 11.5px; font-weight: 700; letter-spacing: .16em; color: var(--rc-haze); }
.rc .rc-mail__addr {
  display: inline-block; margin: 14px 0 26px;
  font-family: var(--rc-lat); font-weight: 700;
  font-size: clamp(22px, 3.4vw, 40px); letter-spacing: 0;
  color: #fff; text-decoration: none; word-break: break-all;
}
.rc .rc-mail__addr:hover { color: var(--rc-signal); }
.rc .rc-mail__copy {
  display: inline-block; margin-left: 14px; vertical-align: middle;
  font-family: var(--rc-base); font-size: 12.5px; letter-spacing: .04em;
  color: var(--rc-haze); background: transparent;
  border: 1px solid rgba(255,255,255,.35); border-radius: 100px;
  padding: 7px 16px; cursor: pointer; transition: all .2s ease;
}
.rc .rc-mail__copy:hover { color: #fff; border-color: #fff; }
.rc .rc-mail__docs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 34px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
  text-align: left;
}
.rc .rc-mail__docs dt { font-family: var(--rc-lat); font-size: 11px; font-weight: 700; letter-spacing: .12em; color: var(--rc-haze); }
.rc .rc-mail__docs dd { margin: 4px 0 0; font-size: 14px; color: #C6DAEC; line-height: 1.8; }
.rc .rc-entry__fine { margin: 26px 0 0; font-size: 13px; color: #8FA9C4; line-height: 1.9; text-align: center; }
.rc .rc-entry__fine a { color: #C6DAEC; }

/* -------------------------------------------------------------
   19. SP追従CTA
   ------------------------------------------------------------- */
.rc .rc-spbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 130;
  display: none; gap: 8px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(11,26,42,.95);
  transform: translateY(110%); transition: transform .3s ease;
}
.rc .rc-spbar.is-shown { transform: none; }
.rc .rc-spbar a {
  flex: 1; text-align: center; padding: 14px 0; border-radius: 100px;
  font-size: 14px; font-weight: 700; color: #fff; text-decoration: none;
  background: var(--rc-signal);
}
.rc .rc-spbar a.is-sub { background: transparent; border: 1px solid rgba(255,255,255,.5); font-weight: 400; }

/* -------------------------------------------------------------
   20. レスポンシブ
   ------------------------------------------------------------- */
@media (max-width: 1000px) {
  .rc { --rc-pad: 28px; }
  .rc .rc__sec { padding-block: 68px; }
  .rc .rc-facts, .rc .rc-works, .rc .rc-members,
  .rc .rc-cases, .rc .rc-places, .rc .rc-perks, .rc .rc-flow, .rc .rc-cal { grid-template-columns: repeat(2, 1fr); }
  .rc .rc-steps { grid-template-columns: repeat(3, 1fr); }
  .rc .rc-steps .rc-step:nth-child(4) { grid-column: 1 / 2; }
  .rc .rc-days, .rc .rc-market, .rc .rc-award, .rc .rc-tphotos { grid-template-columns: 1fr; gap: 22px; }
  .rc .rc-gallery { grid-template-columns: repeat(2, 1fr); }
  .rc .rc-mv { aspect-ratio: 1.5 / 1; }
  .rc .rc-mv__img { object-position: center 58%; }
  .rc .rc-mv__body { left: 6%; right: 6%; width: auto; max-width: none; top: 12%; transform: none; }
  .rc .rc-mv__badge { max-width: 46%; }
  .rc .rc-sitehead__nav { display: none; }
  .rc .rc-sitehead__tel { margin-left: auto; }
  /*提供されたHTMLが崩れるため調整*/
  /*.rc .rc-anchor { display: none; }*/
  .rc-anchor { display: none; }
  .rc .rc-sitefoot__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .rc { --rc-pad: 20px; font-size: 14px; }
  .rc .rc__sec { padding-block: 54px; }
  .rc .rc-mv { aspect-ratio: 0.78 / 1; }
  /* 縦長になるぶん左右がトリミングされる。35%だと機体の右側が
     切れるため、機体（元画像 x62〜79%）が収まる位置まで寄せる */
  .rc .rc-mv__img { object-position: 58% center; }
  /* SPは上部のみ暗く落とす。下部にグラデーションを掛けるとボタン周りが
     グレーに濁って見えるため、ボタンは背景色を持たせず輪郭で見せる */
  .rc .rc-mv__veil { background: linear-gradient(180deg, rgba(14,42,85,.46) 0%, rgba(14,42,85,.18) 38%, rgba(14,42,85,0) 62%); }
  .rc .rc-mv__body { top: 8%; transform: none; }
  .rc .rc-mv__title { max-width: 8.4em; }
  .rc .rc-mv__sub { max-width: 15em; font-size: 13.5px; }
  .rc .rc-mv__btns { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 24px; }
  .rc .rc-mv__btns .rc__btn { text-align: center; padding: 16px 20px; }
  .rc .rc__btn--ghost {
    background: transparent;
    backdrop-filter: none;
    border-color: rgba(255,255,255,.9);
    text-shadow: 0 1px 10px rgba(6,24,50,.6);
    box-shadow: 0 2px 14px rgba(6,24,50,.25);
  }
  /* バッジはボタンと重ならないよう、左揃えで最下部に置く */
  .rc .rc-mv__badge {
    left: 6%; right: auto; bottom: 5%; max-width: 88%;
    text-align: left; font-size: 11.5px; letter-spacing: .04em;
  }
  .rc .rc-mv__badge b { font-size: clamp(34px, 11vw, 48px); }
  .rc .rc-mv__badge span { margin-top: 4px; }
  .rc .rc-cases, .rc .rc-places, .rc .rc-perks, .rc .rc-flow { grid-template-columns: 1fr; }

  /* 02 ハミングバードのこと：数値項目と文字項目で見え方が揃わないため、
     2カラムに戻したうえで、数値ブロックの高さを固定して
     アイコン・値・キャプションの位置を全項目で揃える */
  .rc .rc-facts { grid-template-columns: repeat(2, 1fr); margin-top: 22px; }
  .rc .rc-fact {
    display: flex; flex-direction: column; align-items: center;
    padding: 20px 12px 22px;
  }
  .rc .rc-fact__ic { width: 24px; height: 24px; margin-bottom: 10px; }
  .rc .rc-fact__num {
    display: flex; align-items: center; justify-content: center;
    min-height: 50px; margin: 0;
    font-size: 30px; line-height: 1.1; letter-spacing: -.03em;
  }
  .rc .rc-fact__num i { font-size: 13px; }
  .rc .rc-fact--word .rc-fact__num { font-size: 15px; line-height: 1.45; padding: 0; letter-spacing: 0; }
  .rc .rc-fact__cap { margin-top: 10px; font-size: 11.5px; line-height: 1.6; }
  .rc .rc-fact__cap small { font-size: 10px; margin-top: 4px; }
  .rc .rc-facts__group { margin-top: 30px; font-size: 10.5px; }

  /* 03 私たちの仕事：縦積みだと1枚が大きすぎるので、
     サムネイル左＋テキスト右の横並びカードに変更 */
  .rc .rc-works { grid-template-columns: 1fr; gap: 12px; }
  .rc .rc-work { display: grid; grid-template-columns: 112px 1fr; align-items: stretch; }
  .rc .rc-work__img { width: 112px; height: 100%; min-height: 112px; aspect-ratio: auto; }
  .rc .rc-work__body { padding: 14px 16px 16px; }
  .rc .rc-work__body h3 { font-size: 16px; }
  .rc .rc-work__body p { margin-top: 7px; font-size: 13px; line-height: 1.75; }

  /* 05 研修：カードを5枚積むと間延びするため、縦のタイムラインに変更 */
  .rc .rc-steps { grid-template-columns: 1fr; gap: 0; margin-top: 30px; }
  .rc .rc-step {
    position: relative;
    background: transparent; border: 0; box-shadow: none;
    padding: 0 0 22px 28px;
  }
  .rc .rc-step::before {
    content: ''; position: absolute; left: 4px; top: 7px; z-index: 1;
    width: 10px; height: 10px; border-radius: 50%;
    background: #fff; border: 2px solid var(--rc-sky);
  }
  .rc .rc-step::after {
    content: ''; position: absolute; left: 8px; top: 19px; bottom: 0;
    width: 2px; background: rgba(55,112,181,.22);
  }
  .rc .rc-step:last-child { padding-bottom: 0; }
  .rc .rc-step:last-child::before { border-color: var(--rc-signal); }
  .rc .rc-step:last-child::after { display: none; }
  .rc .rc-step h3 { margin-top: 3px; font-size: 16px; }
  .rc .rc-step h3 br { display: none; }
  .rc .rc-step p { margin-top: 5px; font-size: 13px; line-height: 1.75; }

  /* 06 社員インタビュー：縦長ポートレートの積み重ねを避け、
     写真左＋テキスト右の横並びに変更 */
  .rc .rc-members { grid-template-columns: 1fr; gap: 14px; }
  .rc .rc-member { display: grid; grid-template-columns: 38% 1fr; align-items: stretch; }
  .rc .rc-member:hover { transform: none; box-shadow: 0 2px 12px rgba(14,42,85,.1); }
  .rc .rc-member__img { width: 100%; height: 100%; min-height: 158px; aspect-ratio: auto; }
  .rc .rc-member__body { padding: 15px 16px 17px; }
  .rc .rc-member__from { font-size: 11.5px; }
  .rc .rc-member__body h3 { margin-top: 6px; font-size: 15.5px; line-height: 1.55; }
  .rc .rc-member__body p { margin-top: 8px; font-size: 12.5px; line-height: 1.75; }
  .rc .rc-culture { aspect-ratio: 1.25 / 1; }
  .rc .rc-chart__bars { height: 190px; }
  .rc .rc-mail { padding: 30px 20px 26px; }
  .rc .rc-mail__docs { grid-template-columns: 1fr; gap: 16px; }
  .rc .rc-mail__copy { display: block; margin: 0 auto 22px; }
  .rc .rc-spec th { width: auto; display: block; border-bottom: 0; }
  .rc .rc-spec td { display: block; }
  .rc .rc-spbar { display: flex; }

  /* --- 以下、スマホでの可読性調整 --- */

  /* ヘッダー：320px幅でも収まるように */
  .rc .rc-sitehead { gap: 10px; padding: 11px 16px; }
  .rc .rc-sitehead__logo { font-size: 15px; }
  .rc .rc-sitehead__tel { font-size: 15px; }
  .rc .rc-sitehead__cta { padding: 9px 15px; font-size: 12px; }

  /* 04 一日の流れ：余白を詰める */
  .rc .rc-day { padding: 20px 18px 16px; }
  .rc .rc-day h3 { margin-bottom: 16px; }
  .rc .rc-tl { padding-left: 20px; }
  .rc .rc-tl li { padding-bottom: 15px; }
  .rc .rc-tl li::before { left: -25px; }
  .rc .rc-tl__act { font-size: 13.5px; line-height: 1.7; }

  /* 07 イベント：キャプションが小さすぎないように */
  .rc .rc-cal li { padding: 14px 12px; }
  .rc .rc-cal b { font-size: 14.5px; }
  .rc .rc-gallery { gap: 12px; }
  .rc .rc-gallery figcaption { font-size: 12px; margin-top: 7px; line-height: 1.6; }

  /* 09 グラフ：バーが細くなりすぎないよう縮小 */
  .rc .rc-chart { padding: 18px 12px 12px; }
  .rc .rc-chart__bars { height: 170px; gap: 6px; }
  .rc .rc-chart__v { font-size: 13px; margin-bottom: 6px; }
  .rc .rc-chart__v.is-hi { font-size: 16px; }
  .rc .rc-chart__x { font-size: 9.5px; margin-top: 8px; }

  /* 10 待遇：1列だと縦に長いので2列に */
  .rc .rc-perks { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .rc .rc-perk { padding: 13px 10px; font-size: 12px; line-height: 1.6; }
  .rc .rc-perk b { font-size: 13.5px; }

  /* 11 募集要項：見出しと内容のまとまりを明確に */
  .rc .rc-spec th {
    padding: 11px 14px; font-size: 13px;
    border-bottom: 0; border-radius: 2px 2px 0 0;
  }
  .rc .rc-spec td { padding: 12px 14px 18px; font-size: 13.5px; line-height: 1.8; }

  /* 12 選考の流れ：2列に */
  .rc .rc-flow { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .rc .rc-flow li { padding: 18px 10px; }
  .rc .rc-flow b { font-size: 14.5px; }
  .rc .rc-flow small { font-size: 11px; line-height: 1.6; }

  /* 13 FAQ：タップ領域と行間 */
  .rc .rc-faq summary { padding: 17px 2px; font-size: 14.5px; line-height: 1.65; gap: 12px; }
  .rc .rc-faq__a { padding: 0 2px 20px 30px; font-size: 13.5px; line-height: 1.85; }

  /* 14 応募：アドレスとコピーボタンの間隔 */
  .rc .rc-mail__addr { margin: 12px 0 10px; }
  .rc .rc-mail__docs { padding-top: 22px; margin-top: 26px; }
  .rc .rc__btn { padding: 17px 28px; }

  /* フッター */
  .rc .rc-sitefoot__inner { gap: 24px; }
  .rc .rc-sitefoot__links { gap: 6px 14px; }
  .rc .rc-sitefoot { padding: 40px 20px 90px; }
}

@media (prefers-reduced-motion: reduce) {
  .rc *, .rc *::before, .rc *::after { animation: none !important; transition: none !important; }
  .rc [data-rc-fade] { opacity: 1; transform: none; }
}
