/* ============================================================
   採用ページリニューアル 専用CSS
   -------------------------------------------------------------
   ・すべてのセレクタを .rcr（#recruit-renewal）配下にスコープし、
     既存ページのスタイルには一切干渉しない
   ・デザインシステム（B案：既存サイト調和版で確定 2026-07-10）：
     ネイビー（ロゴ由来）×セージグリーン×白ベース、見出しは明朝体
   ・対象テンプレート：
       page-recruit-renewal.php   採用トップ（親）
       page-recruit-interview.php 社員インタビュー詳細
       page-recruit-benefits.php  福利厚生詳細
       page-recruit-job.php       募集要項詳細
   ============================================================ */

.rcr {
  /* デザイントークン（B案：既存サイト調和版）
     --rcr-gold は歴史的な名前で、現在の値はセージグリーン */
  --rcr-bg: #F7F9F7;
  --rcr-white: #FFFFFF;
  --rcr-navy: #2B3A6B;
  --rcr-gold: #8CB8A0;
  --rcr-accent-dark: #7AA690;
  --rcr-text: #1A1A1A;
  --rcr-muted: #6B6B6B;
  --rcr-border: #DDE4DE;
  --rcr-serif: 'Hiragino Mincho ProN', 'Yu Mincho', 'Sawarabi Mincho', serif;

  background: var(--rcr-bg);
  color: var(--rcr-text);
  font-family: 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.02em;
}

/* 見出し・キャッチコピーは明朝体（既存サイトのトーンに合わせる） */
.rcr-h2, .rcr-mv__copy-text, .rcr-ceo__catch, .rcr-ceo__name, .rcr-ceo__sign-name,
.rcr-values__catch, .rcr-hero__title, .rcr-iv-hero__name, .rcr-person__name,
.rcr-why__text, .rcr-bubble__tagline {
  font-family: var(--rcr-serif);
  font-weight: 400;
}
.rcr *,
.rcr *::before,
.rcr *::after { box-sizing: border-box; }

.rcr h1, .rcr h2, .rcr h3, .rcr h4, .rcr p, .rcr ul, .rcr ol, .rcr figure {
  margin: 0;
  padding: 0;
}
.rcr img { max-width: 100%; height: auto; display: block; }
.rcr a { text-decoration: none; color: inherit; }

/* ============================================================
   テーマ既存CSSの打ち消し
   ・#wrapper { padding-top: 82px } は共通固定ヘッダー分の余白。
     採用ページは専用ヘッダーのため不要
   ・html, body { height: 100% } は body の高さを1画面分に固定してしまい、
     専用ヘッダーの position: sticky の可動域を殺すため解除（2026-07-13）
   （このCSSは採用テンプレートでのみ読み込まれるので他ページには影響しない）
   ============================================================ */
#wrapper { padding-top: 0 !important; }
html, body { height: auto !important; }

/* ============================================================
   採用ページ専用ヘッダー（共通ヘッダーの代わりに表示）
   ============================================================ */
.rcr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--rcr-white);
  border-bottom: 1px solid var(--rcr-border);
}
.rcr-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
}
.rcr-header__logo {
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.rcr .rcr-header__logo-img {
  /* .rcr img { height: auto } より詳細度を上げるため .rcr を付ける */
  height: 22px;
  width: auto;
  display: block;
}
.rcr-header__logo-sub {
  font-family: 'Hiragino Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1;
  color: var(--rcr-gold);
  /* 親の align-items: center によりロゴの上下中央に揃う */
}
.rcr-header__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
  color: var(--rcr-muted);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rcr-header__links::-webkit-scrollbar { display: none; }
.rcr-header__links a {
  color: var(--rcr-muted);
  white-space: nowrap;
  transition: color 0.2s;
}
.rcr-header__links a:hover { color: var(--rcr-text); }
.rcr-header__nav-corporate { display: none; } /* モバイル時のみ表示 */
.rcr-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.rcr-header__corporate {
  font-size: 11px;
  color: var(--rcr-muted);
  white-space: nowrap;
  background: #F0F2F0;
  border: 1px solid var(--rcr-border);
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
}
.rcr-header__corporate:hover { background: #E5E9E5; color: var(--rcr-navy); }
.rcr-header__entry {
  background: var(--rcr-navy);
  color: #fff !important;
  padding: 8px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}
.rcr-header__entry:hover { opacity: 0.85; }

/* ============================================================
   共通パーツ
   ============================================================ */
.rcr-container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.rcr-section { padding: 72px 0; }
.rcr-section--white { background: var(--rcr-white); }

/* セクション見出し（ゴールドの英字ラベル＋ネイビー見出し） */
.rcr-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--rcr-gold);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rcr-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rcr-gold);
  opacity: 0.35;
}
.rcr-h2 {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 4px;
  color: var(--rcr-navy);
  margin-bottom: 10px;
}
.rcr-lead {
  font-size: 15px;
  color: var(--rcr-muted);
  margin-bottom: 36px;
}
.rcr-lead--gold { color: var(--rcr-gold); font-size: 16px; }

/* 汎用ボタン（.rcr a { color: inherit } より優先させるため .rcr を付ける） */
.rcr .rcr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid var(--rcr-navy);
  color: var(--rcr-navy);
  font-size: 13px;
  letter-spacing: 2px;
  transition: background 0.2s, color 0.2s;
}
.rcr .rcr-btn:hover { background: var(--rcr-navy); color: #fff; }
.rcr .rcr-btn--fill {
  background: var(--rcr-navy);
  color: #fff; /* エントリーボタンは白抜き文字 */
}
.rcr .rcr-btn--fill:hover { opacity: 0.85; }
.rcr .rcr-btn--block {
  display: flex;
  width: 100%;
  padding: 18px 0;
  font-size: 15px;
  letter-spacing: 3px;
}

/* 写真プレースホルダー（写真差し込みまでの仮表示） */
.rcr-ph {
  background: #D8D5CF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.6;
  min-height: 120px;
}

/* ============================================================
   ① メインビジュアル（写真全面スライドショー＋左寄せコピー）
   2026-07-13改版：高解像度写真の入手によりフルビジュアル化。
   スライドはCSSのみのクロスフェード（18秒で3枚・各6秒）
   ============================================================ */
.rcr-mv {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  height: 66vh;
  max-height: 680px;
  display: flex;
  align-items: center;
  /* スライド1と同じ背景色系を敷いておく（画像読込前のチラつき防止） */
  background: linear-gradient(135deg, #FAFBF9 0%, #EFF4EF 55%, #EAF0F2 100%);
  border-bottom: 1px solid var(--rcr-border);
}
.rcr-mv__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: rcr-mv-fade 18s infinite;
}
.rcr-mv__slide--1 { animation-delay: 0s; }
.rcr-mv__slide--2 { animation-delay: 6s; }
.rcr-mv__slide--3 { animation-delay: 12s; }
@keyframes rcr-mv-fade {
  0%    { opacity: 0; }
  7%    { opacity: 1; }
  33.3% { opacity: 1; }
  41%   { opacity: 0; }
  100%  { opacity: 0; }
}
/* 文字の可読性を確保する左からの白グラデーション（スライドの上） */
.rcr-mv::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(90deg,
    rgba(250, 251, 249, 0.94) 0%,
    rgba(250, 251, 249, 0.78) 34%,
    rgba(250, 251, 249, 0.25) 60%,
    rgba(250, 251, 249, 0) 78%);
}
.rcr-mv__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px; /* ヘッダー内側と同じグリッド（コピーを左に寄せる） */
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px;
  box-sizing: border-box;
}
/* RECRUIT ─ 採用情報 の見出しラベル */
.rcr-mv__label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--rcr-accent-dark);
  margin-bottom: 26px;
}
.rcr-mv__label::before {
  content: '';
  width: 42px;
  height: 2px;
  background: var(--rcr-accent-dark);
}
.rcr-mv__label small {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(43, 58, 107, 0.75);
}
.rcr-mv__catch {
  font-family: var(--rcr-serif);
  font-weight: 500;
  font-size: 62px;
  line-height: 1.5;
  letter-spacing: 0.14em;
  color: #22305E;
  margin: 0;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.85);
}
.rcr-mv__sub {
  margin-top: 24px;
  font-size: 14px;
  letter-spacing: 0.24em;
  color: rgba(43, 58, 107, 0.85);
}
.rcr-mv__wave {
  display: block;
  margin-top: 26px;
}

/* ============================================================
   ② アンネルベッドはこんな会社
   ============================================================ */
.rcr-strengths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.rcr-strength {
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  padding: 28px 24px;
}
.rcr-strength__num {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--rcr-gold);
  margin-bottom: 10px;
}
.rcr-strength__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--rcr-navy);
  margin-bottom: 10px;
  line-height: 1.5;
}
.rcr-strength__desc {
  font-size: 13px;
  color: var(--rcr-muted);
  line-height: 1.8;
}

/* --- 社長メッセージ --- */
.rcr-ceo {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  padding: 48px;
  margin-bottom: 32px;
}
.rcr-ceo__photo .rcr-ph { aspect-ratio: 3 / 4; }
.rcr-ceo__photo img {
  width: 100%;
  height: auto; /* 支給写真の縦横比をそのまま活かす（切り抜きしない） */
}
.rcr-ceo__name-block {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--rcr-border);
}
.rcr-ceo__name-title {
  font-size: 11px;
  color: var(--rcr-muted);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.rcr-ceo__name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--rcr-navy);
}
.rcr-ceo__name-en {
  font-size: 11px;
  color: var(--rcr-muted);
  letter-spacing: 2px;
  margin-top: 4px;
}
.rcr-ceo__catch {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1px;
  color: var(--rcr-navy);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rcr-border);
}
.rcr-ceo__body {
  font-size: 15px;
  line-height: 2;
  color: #2D2D2D;
}
.rcr-ceo__body p { margin-bottom: 24px; }
/* 想いブロック：ページ全体の「淡い面＋左罫線」の様式に合わせる */
.rcr-wishes {
  background: var(--rcr-bg);
  padding: 24px 30px;
  margin: 28px 0;
  border-left: 3px solid var(--rcr-gold);
}
.rcr-wishes__intro {
  font-size: 13px;
  color: var(--rcr-muted);
  margin-bottom: 12px;
}
.rcr-wishes__item {
  font-family: var(--rcr-serif);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--rcr-navy);
  padding: 11px 0;
  border-bottom: 1px solid var(--rcr-border);
  line-height: 1.7;
}
.rcr-wishes__item:last-child { border-bottom: none; padding-bottom: 2px; }
.rcr-wishes__item::before { content: '「'; color: var(--rcr-accent-dark); }
.rcr-wishes__item::after { content: '」'; color: var(--rcr-accent-dark); }
.rcr-ceo__sign {
  text-align: right;
  padding-top: 24px;
  border-top: 1px solid var(--rcr-border);
}
.rcr-ceo__sign-title {
  font-size: 12px;
  color: var(--rcr-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.rcr-ceo__sign-name {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--rcr-navy);
}

/* --- 企業価値観 --- */
.rcr-values {
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  padding: 40px 48px;
}
.rcr-values__catch {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--rcr-navy);
  margin-bottom: 14px;
}
.rcr-values__desc {
  font-size: 14px;
  line-height: 2;
  color: #2D2D2D;
  max-width: 760px;
  margin-bottom: 28px;
}
.rcr-values__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rcr-values__card {
  background: var(--rcr-bg);
  border: 1px solid var(--rcr-border);
  overflow: hidden;
}
.rcr-values__card img,
.rcr-values__card .rcr-ph {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.rcr-values__card-body { padding: 20px 22px; }
.rcr-values__card-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--rcr-gold);
  margin-bottom: 6px;
}
.rcr-values__card-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--rcr-navy);
  margin-bottom: 8px;
}
.rcr-values__card-desc {
  font-size: 13px;
  color: var(--rcr-muted);
  line-height: 1.8;
}

/* ============================================================
   ③ 福利厚生
   ============================================================ */
.rcr-benefits__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.rcr-benefits__head .rcr-h2 { margin-bottom: 0; }
.rcr-why {
  margin: 32px 0 40px;
  background: var(--rcr-white);
  border-left: 3px solid var(--rcr-gold);
  padding: 24px 32px;
}
.rcr-why__label {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--rcr-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rcr-why__text {
  font-size: 17px;
  line-height: 2;
  color: var(--rcr-navy);
}
.rcr-benefit-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.rcr-benefit-card {
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  border-top: 2px solid var(--rcr-gold);
  padding: 22px 18px;
}
.rcr-benefit-card__num {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.rcr-benefit-card__num-main {
  font-size: 24px;
  color: var(--rcr-navy);
  font-weight: 600;
  line-height: 1.1;
}
.rcr-benefit-card__num-unit {
  font-size: 12px;
  color: var(--rcr-muted);
}
.rcr-benefit-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--rcr-text);
  line-height: 1.6;
}

/* ============================================================
   ④ 数字で見るアンネルベッド
   ============================================================ */
.rcr-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.rcr-number {
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  padding: 24px 20px;
}
.rcr-number--tbd { opacity: 0.65; }
.rcr-number__cat {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--rcr-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.rcr-number__value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.rcr-number__num {
  font-size: 38px;
  font-weight: 300;
  color: var(--rcr-navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.rcr-number__unit {
  font-size: 12px;
  color: var(--rcr-muted);
}
.rcr-number__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.5;
}
.rcr-number__desc {
  font-size: 11px;
  color: var(--rcr-muted);
  line-height: 1.6;
}

/* ============================================================
   ⑤ 働く人を知る（インタビューカード）
   ============================================================ */
.rcr-people {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rcr-person {
  display: block;
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.rcr-person:hover {
  box-shadow: 0 8px 24px rgba(43, 58, 107, 0.12);
  transform: translateY(-2px);
}
.rcr-person__photo {
  height: 240px;
  overflow: hidden;
  background: #C8D4E0;
}
.rcr-person__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.rcr-person__body { padding: 18px 20px 20px; }
.rcr-person__meta {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--rcr-gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.rcr-person__name {
  font-size: 19px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--rcr-navy);
  margin-bottom: 4px;
}
.rcr-person__role {
  font-size: 12px;
  color: var(--rcr-muted);
}
.rcr-person__more {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--rcr-border);
  font-size: 12px;
  color: var(--rcr-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ============================================================
   ⑥ 仕事を知る（タブ＋スケジュール）
   ============================================================ */
.rcr-job-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.rcr-job-tab {
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 24px;
  background: var(--rcr-white);
  color: var(--rcr-navy);
  border: 1px solid var(--rcr-border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.rcr-job-tab.is-active {
  background: var(--rcr-navy);
  color: #fff;
  border-color: var(--rcr-navy);
}
.rcr-job-panel { display: none; }
.rcr-job-panel.is-active { display: block; }
.rcr-sched-label {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--rcr-muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* 週間カレンダーのパターン見出し（催事のある週／ない週 2026-07-15） */
.rcr-week-caption {
  display: inline-block;
  margin: 22px 0 10px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rcr-navy);
  background: #EEF1F7;
  border-left: 3px solid var(--rcr-navy);
}
.rcr-week-caption:first-of-type { margin-top: 0; }

/* 週間カレンダー（営業・開発） */
.rcr-week {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}
.rcr-week__day {
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  display: flex;
  flex-direction: column;
}
.rcr-week__head {
  background: var(--rcr-navy);
  color: #fff;
  padding: 10px 12px;
}
.rcr-week__dayname {
  font-size: 17px;
  line-height: 1.2;
}
.rcr-week__summary {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 3px;
  line-height: 1.5;
}
.rcr-week__rows { padding: 12px; flex: 1; }
.rcr-week__row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 3px 0;
}
.rcr-week__time {
  font-size: 11px;
  color: var(--rcr-gold);
  font-weight: 600;
}
.rcr-week__what {
  font-size: 12px;
  line-height: 1.5;
}

/* 1日タイムライン（製造・総務・カスタマー） */
.rcr-day {
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  padding: 28px 32px;
  margin-bottom: 20px;
  position: relative;
}
.rcr-day__list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rcr-day__list::before {
  content: '';
  position: absolute;
  left: 74px;
  top: 8px;
  bottom: 8px;
  border-left: 1px dashed var(--rcr-border);
}
.rcr-day__row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rcr-day__time {
  width: 60px;
  text-align: right;
  font-size: 13px;
  color: var(--rcr-muted);
  flex-shrink: 0;
}
.rcr-day__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 2px solid var(--rcr-navy);
  background: var(--rcr-white);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.rcr-day__what { font-size: 14px; }
.rcr-day__note {
  margin-top: 16px;
  padding-left: 89px;
  font-size: 13px;
  color: var(--rcr-muted);
}

/* 特徴吹き出し */
.rcr-bubble {
  position: relative;
  background: var(--rcr-white);
  border: 1px solid var(--rcr-gold);
  padding: 20px 26px;
  border-radius: 4px;
}
.rcr-bubble::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--rcr-gold);
}
.rcr-bubble__tagline {
  font-size: 16px;
  color: var(--rcr-navy);
  line-height: 1.6;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--rcr-border);
}
.rcr-bubble__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--rcr-navy);
  margin-bottom: 8px;
}
.rcr-bubble__features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 13px;
  list-style: none;
}
.rcr-bubble__extra {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--rcr-border);
  font-size: 13px;
  line-height: 1.7;
}
.rcr-bubble__extra::before {
  content: '● ';
  color: var(--rcr-gold);
}

/* ============================================================
   ⑦ 募集要項（職種カード）
   ============================================================ */
.rcr-positions {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 職種4種（旧HP準拠）2026-07-12 */
  gap: 14px;
}
.rcr-position {
  display: block;
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
a.rcr-position:hover {
  box-shadow: 0 8px 24px rgba(43, 58, 107, 0.12);
  transform: translateY(-2px);
}
.rcr-position__photo {
  height: 150px;
  overflow: hidden;
  background: #C8D4E0;
}
.rcr-position__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rcr-position__body { padding: 16px 16px 18px; }
.rcr-position__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--rcr-navy);
  margin-bottom: 10px;
}
.rcr-position__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--rcr-navy);
}
.rcr-badge {
  display: inline-block;
  padding: 2px 10px;
  background: var(--rcr-accent-dark);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
}
.rcr-position--closed {
  opacity: 0.6;
  cursor: default;
}
.rcr-position--closed .rcr-position__photo { filter: grayscale(1); }
.rcr-position--closed .rcr-position__name { color: #777; }
.rcr-position__closed-note {
  font-size: 11px;
  color: #888;
}

/* ============================================================
   詳細ページ共通
   ============================================================ */
/* ページヒーロー（福利厚生詳細・募集要項詳細）
   A案（2026-07-12確定）：ベタ塗りネイビー→淡いブルーグレー面＋ネイビー文字＋波線 */
.rcr-hero {
  background: #EEF1F7;
  padding: 56px 24px 52px;
  text-align: center;
}
.rcr-hero__label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--rcr-accent-dark);
  text-transform: uppercase;
  margin-bottom: 14px;
}
/* コーポレートサイト共通の波線モチーフ */
.rcr-hero__title::after {
  content: '';
  display: block;
  width: 120px;
  height: 8px;
  margin: 18px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'%3E%3Cpath d='M0 4 Q7.5 0,15 4 T30 4 T45 4 T60 4 T75 4 T90 4 T105 4 T120 4' fill='none' stroke='%232B3A6B' stroke-opacity='.35' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat center;
}
.rcr-hero__title {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 6px;
  color: var(--rcr-navy);
  margin-bottom: 10px;
}
.rcr-hero__sub {
  font-size: 13px;
  color: rgba(43, 58, 107, 0.6);
  letter-spacing: 2px;
}

/* パンくず（採用ページ内） */
.rcr-breadcrumb {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 24px 0;
  font-size: 12px;
  color: var(--rcr-muted);
}
.rcr-breadcrumb a { color: var(--rcr-muted); }
.rcr-breadcrumb a:hover { color: var(--rcr-text); }

/* コンテンツ幅 */
.rcr-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 72px;
}
.rcr-wrap--narrow { max-width: 880px; }

/* 前後ページナビ */
.rcr-pagenav {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rcr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 12px;
}
/* 両端スロットを等幅にして中央リンクを常にセンターに
   （前だけ・次だけの場合に中央がずれるのを防ぐ） */
.rcr-pagenav > *:first-child { flex: 1 1 0; text-align: left; }
.rcr-pagenav > *:last-child { flex: 1 1 0; text-align: right; }
.rcr-pagenav > .rcr-pagenav__center { flex: 0 0 auto; text-align: center; }
.rcr-pagenav a { color: var(--rcr-muted); }
.rcr-pagenav a:hover { color: var(--rcr-navy); }
.rcr-pagenav__center { color: var(--rcr-navy) !important; font-weight: 500; }
.rcr-pagenav__spacer { flex: 1; }

/* ============================================================
   社員インタビュー詳細
   ============================================================ */
.rcr-iv-hero {
  display: grid;
  /* 写真は狭め・ネイビー面を広めに（写真の拡大を抑えて解像度の粗さを目立たせない） */
  grid-template-columns: 44% 56%;
  min-height: 420px;
}
.rcr-iv-hero__photo {
  overflow: hidden;
  background: #C8D4E0;
  /* 写真を絶対配置ではめ込む。こうしないと縦長・正方形の
     アイキャッチがヒーロー全体の高さを押し広げてしまう */
  position: relative;
}
.rcr-iv-hero__photo img,
.rcr-iv-hero__photo .rcr-ph {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
/* A案（2026-07-12確定）：ネイビーのベタ塗り→淡いブルーグレー面＋ネイビー文字＋波線 */
.rcr-iv-hero__text {
  background: #EEF1F7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 52px;
  color: var(--rcr-navy);
}
.rcr-iv-hero__no {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--rcr-accent-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.rcr-iv-hero__name {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 4px;
  margin-bottom: 8px;
  color: var(--rcr-navy);
}
.rcr-iv-hero__role {
  font-size: 13px;
  color: rgba(43, 58, 107, 0.62);
  margin-bottom: 24px;
}
/* 罫線の代わりにコーポレートサイト共通の波線モチーフ */
.rcr-iv-hero__role::after {
  content: '';
  display: block;
  width: 120px;
  height: 8px;
  margin-top: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='8' viewBox='0 0 120 8'%3E%3Cpath d='M0 4 Q7.5 0,15 4 T30 4 T45 4 T60 4 T75 4 T90 4 T105 4 T120 4' fill='none' stroke='%232B3A6B' stroke-opacity='.35' stroke-width='1.2'/%3E%3C/svg%3E") no-repeat left center;
}
.rcr-iv-hero__quote {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(43, 58, 107, 0.88);
  border-left: 2px solid var(--rcr-gold);
  padding-left: 16px;
  margin: 0;
  max-width: 520px; /* 面が広くても行が間延びしないように */
}

/* --- Q&A（本文ブロックを自動スタイリング） ---
   本文の書き方（担当者向け）：
   ・質問 → 「見出し3（H3）」ブロック
   ・回答 → 通常の「段落」ブロック
   ・写真 → 「画像」ブロック
   Q番号はCSSカウンターで自動採番されるため、本文に番号は書かない */
.rcr-iv-body { counter-reset: rcr-q; }
.rcr-iv-body h3 {
  counter-increment: rcr-q;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--rcr-border);
  font-size: 15px;
  font-weight: 600;
  color: var(--rcr-navy);
  line-height: 1.5;
  clear: both; /* 回り込み写真を前のセクション内で完結させる（2026-07-13） */
}
.rcr-iv-body h3:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.rcr-iv-body h3::before {
  content: 'Q ' counter(rcr-q, decimal-leading-zero);
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--rcr-gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.rcr-iv-body p {
  font-size: 14px;
  line-height: 2;
  color: #2D2D2D;
  margin-top: 14px;
}
.rcr-iv-body figure,
.rcr-iv-body .wp-block-image {
  margin: 36px 0;
}
.rcr-iv-body img { width: 100%; object-fit: cover; }
.rcr-iv-body .wp-block-columns { gap: 3px; }
/* 本文内の回り込み写真（クラシックエディタの「配置：右／左」対応 2026-07-13）
   使い方：セクションの <h3> 直後に「メディアを追加」で 配置=右（または左）・サイズ=フルサイズ で挿入。
   本文が写真の横に回り込み、h3 の clear で次のセクションには食み出さない */
.rcr-iv-body .alignright img,
.rcr-iv-body .alignleft img {
  width: 100%; /* 枠（figure等）側で幅を決め、中の img は枠いっぱい */
}
.rcr-iv-body img.alignright,
.rcr-iv-body figure.alignright,
.rcr-iv-body div.alignright {
  float: right;
  width: 48%;
  margin: 10px 0 18px 28px;
}
.rcr-iv-body img.alignleft,
.rcr-iv-body figure.alignleft,
.rcr-iv-body div.alignleft {
  float: left;
  width: 48%;
  margin: 10px 28px 18px 0;
}
@media (max-width: 640px) {
  .rcr-iv-body img.alignright,
  .rcr-iv-body figure.alignright,
  .rcr-iv-body div.alignright,
  .rcr-iv-body img.alignleft,
  .rcr-iv-body figure.alignleft,
  .rcr-iv-body div.alignleft {
    float: none;
    width: 100%;
    margin: 24px 0;
  }
}

/* ============================================================
   福利厚生詳細
   ============================================================ */
.rcr-bd-intro {
  font-size: 15px;
  line-height: 1.9;
  color: var(--rcr-navy);
  background: var(--rcr-white);
  padding: 22px 28px;
  border-left: 3px solid var(--rcr-gold);
  margin-bottom: 40px;
}
.rcr-bd-item {
  padding-top: 36px;
  margin-top: 36px;
  border-top: 1px dashed var(--rcr-border);
}
.rcr-bd-item:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}
.rcr-bd-item__main {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}
.rcr-bd-item__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 10px;
}
.rcr-bd-item__no {
  font-size: 30px;
  font-weight: 300;
  color: var(--rcr-gold);
  line-height: 1;
  flex-shrink: 0;
}
.rcr-bd-item__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--rcr-navy);
  line-height: 1.5;
}
.rcr-bd-item__lead {
  font-size: 13px;
  color: var(--rcr-muted);
  margin-top: 4px;
}
.rcr-bd-item__body {
  font-size: 14px;
  line-height: 1.95;
  color: #2D2D2D;
  margin-top: 12px;
}
.rcr-bd-item__photo img,
.rcr-bd-item__photo .rcr-ph {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.rcr-bd-points {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.rcr-bd-point {
  background: var(--rcr-white);
  border: 1px solid var(--rcr-border);
  padding: 10px 14px;
}
.rcr-bd-point__key {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--rcr-gold);
  margin-bottom: 2px;
}
.rcr-bd-point__val {
  font-size: 13px;
  line-height: 1.5;
}

/* ============================================================
   募集要項詳細（本文ブロックを自動スタイリング）
   本文の書き方（担当者向け）：
   ・「見出し3（H3）」＝項目グループ名（募集要項／モデルキャリアパス）
   ・「表」ブロック＝募集条件（左列＝項目名、右列＝内容）
   ============================================================ */
.rcr-job-hero__tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.rcr-tag-outline {
  display: inline-block;
  padding: 3px 12px;
  border: 1px solid rgba(43, 58, 107, 0.35);
  color: rgba(43, 58, 107, 0.75);
  font-size: 11px;
  letter-spacing: 1px;
}
.rcr-badge--gold {
  background: var(--rcr-accent-dark);
  color: #fff;
  font-weight: 600;
}
.rcr-job-photo { margin-bottom: 8px; }
.rcr-job-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.rcr-job-body h3 {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--rcr-gold);
  text-transform: uppercase;
  font-weight: 600;
  margin: 44px 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rcr-job-body h3::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rcr-gold);
  opacity: 0.35;
}
.rcr-job-body h3:first-child { margin-top: 0; }
.rcr-job-body table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--rcr-border);
  background: var(--rcr-white);
  font-size: 14px;
}
.rcr-job-body table td,
.rcr-job-body table th {
  border: 1px solid var(--rcr-border);
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}
.rcr-job-body table td:first-child,
.rcr-job-body table th:first-child {
  width: 170px;
  background: var(--rcr-bg);
  font-size: 12px;
  color: var(--rcr-muted);
  letter-spacing: 1px;
  font-weight: 600;
}
.rcr-job-body p {
  font-size: 14px;
  line-height: 2;
  color: #2D2D2D;
  margin-top: 12px;
}
/* モデルキャリアパス：番号付きリストをステップ表示に */
.rcr-job-body ol {
  list-style: none;
  counter-reset: rcr-step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--rcr-border);
  background: var(--rcr-white);
}
.rcr-job-body ol li {
  counter-increment: rcr-step;
  padding: 18px 16px;
  border-right: 1px solid var(--rcr-border);
  font-size: 13px;
  line-height: 1.7;
}
.rcr-job-body ol li:nth-child(even) { background: var(--rcr-bg); }
.rcr-job-body ol li:last-child { border-right: none; }
.rcr-job-body ol li::before {
  content: 'STEP ' counter(rcr-step);
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--rcr-gold);
  margin-bottom: 6px;
}
.rcr-job-body ol li strong {
  display: block;
  color: var(--rcr-navy);
  font-size: 14px;
  margin-bottom: 4px;
}
.rcr-job-cta { margin-top: 48px; }

/* ============================================================
   レスポンシブ（〜767px）
   ============================================================ */
@media (max-width: 767px) {
  .rcr { font-size: 14px; }
  .rcr-section { padding: 48px 0; }
  .rcr-h2 { font-size: 21px; letter-spacing: 2px; }

  .rcr-header__inner {
    flex-wrap: wrap;
    height: auto;
    padding: 10px 14px 0;
    gap: 8px 16px;
  }
  .rcr .rcr-header__logo-img { height: 18px; }
  .rcr-header__corporate { display: none; }
  .rcr-header__entry { padding: 6px 14px; font-size: 11px; }
  .rcr-header__links {
    order: 3;
    flex-basis: 100%;
    gap: 16px;
    font-size: 11px;
    padding: 8px 0 10px;
    border-top: 1px solid var(--rcr-border);
  }
  /* モバイルではコーポレートサイト導線をナビ列の末尾に出す */
  .rcr-header__nav-corporate { display: inline !important; color: var(--rcr-navy); }

  .rcr-mv {
    min-height: 420px;
    height: 62vh;
  }
  .rcr-mv__slide { background-position: 72% center; }
  /* スマホは上から下への白グラデーションに切替 */
  .rcr-mv::before {
    background: linear-gradient(180deg,
      rgba(250, 251, 249, 0.85) 0%,
      rgba(250, 251, 249, 0.45) 55%,
      rgba(250, 251, 249, 0.1) 100%);
  }
  .rcr-mv__inner { padding: 40px 20px; }
  .rcr-mv__label { font-size: 12px; margin-bottom: 18px; }
  .rcr-mv__label::before { width: 30px; }
  .rcr-mv__catch { font-size: 36px; }
  .rcr-mv__sub { margin-top: 16px; font-size: 12px; letter-spacing: 0.16em; }

  .rcr-strengths { grid-template-columns: 1fr; gap: 10px; margin-bottom: 36px; }
  .rcr-ceo {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px;
  }
  .rcr-ceo__photo { max-width: 240px; margin: 0 auto; }
  .rcr-ceo__catch { font-size: 18px; margin-bottom: 24px; padding-bottom: 24px; }
  .rcr-wishes { padding: 20px 18px; }
  .rcr-values { padding: 24px 20px; }
  .rcr-values__catch { font-size: 19px; }
  .rcr-values__cards { grid-template-columns: 1fr; }

  .rcr-why { padding: 18px 20px; }
  .rcr-why__text { font-size: 15px; }
  .rcr-benefit-cards { grid-template-columns: 1fr; gap: 8px; }
  .rcr-benefit-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
  }
  .rcr-benefit-card__num { margin-bottom: 0; min-width: 96px; flex-shrink: 0; }

  .rcr-numbers { grid-template-columns: 1fr 1fr; gap: 8px; }
  .rcr-number { padding: 16px 14px; }
  .rcr-number__num { font-size: 28px; }

  .rcr-people { grid-template-columns: 1fr; }
  .rcr-person__photo { height: 220px; }

  .rcr-job-tab { padding: 8px 14px; font-size: 12px; }
  .rcr-week { grid-template-columns: 1fr; }
  .rcr-day { padding: 18px 16px; }
  .rcr-day__list::before { left: 62px; }
  .rcr-day__time { width: 48px; font-size: 12px; }
  .rcr-day__note { padding-left: 77px; font-size: 12px; }

  .rcr-positions { grid-template-columns: 1fr 1fr; gap: 10px; }
  .rcr-position__photo { height: 110px; }

  .rcr-hero { padding: 40px 20px 36px; }
  .rcr-hero__title { font-size: 22px; letter-spacing: 4px; }

  .rcr-iv-hero { grid-template-columns: 1fr; min-height: 0; }
  .rcr-iv-hero__photo { height: 280px; }
  .rcr-iv-hero__text { padding: 28px 22px; }
  .rcr-iv-hero__name { font-size: 26px; }
  .rcr-iv-hero__role { margin-bottom: 18px; }

  .rcr-bd-item__main { grid-template-columns: 1fr; }
  .rcr-bd-points { grid-template-columns: 1fr; }

  .rcr-job-body table td:first-child,
  .rcr-job-body table th:first-child { width: 100px; }
  .rcr-job-body ol { grid-template-columns: 1fr; }
  .rcr-job-body ol li {
    border-right: none;
    border-bottom: 1px solid var(--rcr-border);
  }
  .rcr-job-body ol li:last-child { border-bottom: none; }

  .rcr-pagenav { font-size: 12px; flex-wrap: wrap; }
}
