/* ================================================================
   page-recruit.css  — キャスト・仲居さん 募集要項ページ共通
   page-recruit-cast.php / page-recruit-nakai.php
   ================================================================ */

/* ===================================================
   HERO セクション（両ページ共通ベース）
   =================================================== */
.recruit-hero {
  position: relative;
  padding: 55px 24px 89px;
  text-align: center;
  overflow: hidden;
}

/* 背景透かし文字 */
.recruit-hero__bg-text {
  position: absolute;
  right: -16px;
  bottom: -24px;
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(68px, 18vw, 200px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

/* トップライン */
.recruit-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--pink-main), var(--pink-deep));
}

/* ===== キャスト：ダークネイビー ===== */
.recruit-hero--cast {
  background: linear-gradient(150deg, #1a1f45 0%, #252b60 55%, #1e2348 100%);
}
.recruit-hero--cast .recruit-hero__bg-text {
  color: rgba(255,255,255,.025);
}
.recruit-hero--cast .section-label--pink {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: rgba(240,62,122,.85);
  margin-bottom: 13px;
  display: block;
}
.recruit-hero--cast h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 13px;
}
.recruit-hero--cast > .recruit-hero__inner > p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 21px;
}

/* ===== 仲居さん：温かみのあるゴールド系ネイビー ===== */
.recruit-hero--nakai {
  background: linear-gradient(150deg, #1e2240 0%, #2a2850 55%, #1a2035 100%);
}
.recruit-hero--nakai .recruit-hero__bg-text {
  color: rgba(255,255,255,.02);
}
.recruit-hero--nakai::after {
  background: linear-gradient(to right, #c9a84c, #e8cc7a);
}
.section-label--gold {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .25em;
  color: rgba(201,168,76,.9);
  margin-bottom: 13px;
  display: block;
}
.recruit-hero--nakai h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(26px, 4.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 13px;
}
.recruit-hero--nakai > .recruit-hero__inner > p {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  line-height: 1.9;
  max-width: 520px;
  margin: 0 auto 21px;
}

/* ヒーローバッジ群 */
.recruit-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 21px;
}
.rhb {
  display: inline-block;
  background: var(--pink-main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
}
.rhb--light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.2);
}
.rhb--gold {
  background: linear-gradient(135deg, #c9a84c, #e8cc7a);
  color: #1a1f45;
}

/* ヒーロー内部 */
.recruit-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

/* ===================================================
   ページ本体レイアウト
   =================================================== */
.recruit-page {
  background: #f9f6f8;
  padding: 34px 0 55px;
}
.recruit-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 26px;
}

/* ===================================================
   収入シミュレーション
   =================================================== */
.salary-sim {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
  overflow: hidden;
  margin: 21px 0;
}
.salary-sim__header {
  background: linear-gradient(135deg, var(--navy) 0%, #2d3270 100%);
  padding: 14px 26px;
}
.salary-sim__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
}
.salary-sim--nakai .salary-sim__header {
  background: linear-gradient(135deg, #2a2030 0%, #3a3050 100%);
}
.salary-sim__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.salary-sim__card {
  padding: 21px 16px;
  text-align: center;
  border-right: 1px solid #f0eef2;
  position: relative;
}
.salary-sim__card:last-child { border-right: none; }
.salary-sim__card--mid {
  background: linear-gradient(160deg, #fff5f9 0%, #ffeef4 100%);
}
.salary-sim--nakai .salary-sim__card--mid {
  background: linear-gradient(160deg, #fdfaf0 0%, #fdf6e0 100%);
}
.salary-sim__badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--pink-main);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.salary-sim--nakai .salary-sim__badge {
  background: linear-gradient(135deg, #c9a84c, #e8cc7a);
  color: #1a1f45;
}
.salary-sim__time {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
  font-weight: 600;
}
.salary-sim__amount {
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
}
.salary-sim__amount strong {
  font-size: 28px;
  font-family: 'Noto Serif JP', serif;
  color: var(--pink-main);
}
.salary-sim--nakai .salary-sim__amount strong {
  color: #b8922a;
}
.salary-sim__amount span {
  font-size: 16px;
}
.salary-sim__note {
  font-size: 11px;
  color: #aaa;
  margin-top: 6px;
}
.salary-sim__caption {
  padding: 10px 26px;
  font-size: 12px;
  color: #999;
  border-top: 1px solid #f3f0f4;
  background: #fdfdfd;
  margin: 0;
}

/* ===================================================
   待遇グリッド
   =================================================== */
.treatment-list-block {
  background: linear-gradient(155deg, #f8f4ff 0%, #fff0f5 100%);
  border-radius: 16px;
  padding: 21px;
  margin: 21px 0;
}
.treatment-list-block h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 13px;
}
.tl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
}
.tl-item {
  background: #fff;
  border-radius: 12px;
  padding: 14px 12px;
  text-align: center;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.tl-item i {
  font-size: 20px;
  color: var(--pink-main);
}
.tl-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tl-item span small {
  font-size: 10px;
  font-weight: 400;
  color: #999;
}

/* ===================================================
   仲居さん給与ステップ
   =================================================== */
.nakai-system {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 16px 0 26px;
  border-left: 3px solid #c9a84c;
  padding-left: 0;
}
.ns-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 16px 16px 26px;
  background: #fff;
  border-bottom: 1px solid #f3f0f4;
}
.ns-step:last-child { border-bottom: none; }
.ns-step__num {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #c9a84c, #e8cc7a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #1a1f45;
}
.ns-step__body strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 4px;
}
.ns-step__body p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

/* ===================================================
   仕事内容カード
   =================================================== */
.work-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 16px 0 26px;
}
.work-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  border-top: 3px solid #c9a84c;
}
.work-card__icon {
  font-size: 24px;
  color: #c9a84c;
  margin-bottom: 10px;
}
.work-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.work-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ===================================================
   募集要項テーブル
   =================================================== */
.details-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 26px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
}
.details-table th,
.details-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #f3f0f4;
  font-size: 14px;
  line-height: 1.75;
  vertical-align: top;
}
.details-table th {
  width: 120px;
  background: #f9f5fb;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}
.details-table td strong {
  color: var(--pink-main);
  font-size: 15px;
}
.details-table tr:last-child th,
.details-table tr:last-child td {
  border-bottom: none;
}

/* タグ inline */
.tag-inline {
  display: inline-block;
  background: var(--pink-pale);
  color: var(--pink-deep);
  border: 1px solid var(--pink-light);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  margin: 2px 3px 2px 0;
}
.text-muted { color: #999; font-size: 12px; }

/* ===================================================
   FAQ（キャストページ）
   =================================================== */
.recruit-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  margin: 16px 0 26px;
}
.rfaq-item {
  background: #fff;
  border-bottom: 1px solid #f3f0f4;
}
.rfaq-item:last-child { border-bottom: none; }
.rfaq-q {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.rfaq-q i { color: var(--pink-main); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.rfaq-a {
  padding: 0 20px 16px 46px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

/* ===================================================
   ハイライトノート（グリーン追加）
   =================================================== */
.highlight-note--green {
  background: linear-gradient(135deg, #f0faf3 0%, #e8f7ec 100%);
  border-left-color: #2ecc71;
}
.highlight-note--green strong { color: #1a6b35; }

/* ===================================================
   サイドバー：仲居さんカラー上書き
   =================================================== */
.fsb-cta--nakai {
  background: linear-gradient(155deg, #1e1a2e 0%, #2d2840 100%);
}
.fsb-cta--nakai::before {
  background: rgba(201,168,76,.12) !important;
}
.fsb-cta--nakai .fsb-btn--line {
  /* LINE色を流用 */
}

/* ===================================================
   レスポンシブ
   =================================================== */
@media (max-width: 768px) {
  .salary-sim__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .salary-sim__amount strong { font-size: 22px; }
  .work-cards {
    grid-template-columns: 1fr;
  }
  .details-table th {
    width: 90px;
    font-size: 12px;
    padding: 12px 12px;
  }
  .details-table td {
    font-size: 13px;
    padding: 12px 12px;
  }
}
@media (max-width: 480px) {
  .salary-sim__grid {
    grid-template-columns: 1fr;
  }
  .salary-sim__card {
    border-right: none;
    border-bottom: 1px solid #f0eef2;
  }
  .tl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit-hero {
    padding: 42px 16px 42px;
  }
  .recruit-hero__badges { gap: 6px; }
  .rhb { font-size: 12px; padding: 5px 10px; }
}
