/* ==========================================================
   看護師詳細ページ専用CSS
   v0.5 (Chat-16 / 2026-05-24)
   準拠: 44_harenokuni_phaseB_nurse-detail-10parts-draft.md v1.0
   配色・タイポ・見出し構造は custom.css (v0.45) を全面継承
   医師ページ doctor-detail.css v0.5 を雛形に、FVのみ左右反転

   Changelog v0.5:
     - 大画面でのFV高さ間延び解消
       ・千秋さん指摘「32インチモニタでかなり大きく画像が伸びる」への対応
       ・.fv-detail の min-height: 78vh → clamp(560px, 78vh, 820px) に変更
       ・@media (min-width: 768px) 内の冗長な min-height: 78vh 指定を削除
       ・4職種すべてで同じ設定（統一）

   Changelog v0.4:
     - FVテキスト袋文字（白縁取り）追加
       ・対象：.fv-detail-eyebrow, .fv-detail-title, .fv-detail-subtitle, .fv-detail-meta
       ・除外：.fv-detail-meta span（バッジは背景色明示のため除外）
       ・実装：text-shadow を8方向に 1.5px の白で配置（滑らかな縁取り）
       ・千秋さん指摘：「背景と文字色が同化する所がある」（特に医療事務ページ）
       ・4職種で同一のFVテキスト処理を保つため同じ袋文字を適用

   Changelog v0.3:
     - 画像差し替えのみ（CSS構造変更なし）
     - fv-nurse.jpg を 1672×941 → 1920×1080 の高解像度版に差し替え
     - 医師ページ fv-doctor.jpg (1920×1081) と画質バランスが揃った

   Changelog v0.2:
     - PC・大画面でのFVテキスト右側はみ出し問題を修正
       ・テキストブロック右padding 5rem → 9〜11rem に拡大
         （追従CTA「ご相談お問合せ」との被り回避）
       ・テキスト max-width 48% → 42% に縮小（画像左端との重なり回避）
       ・タイトル font-size を 4行構成に最適化（2.15→2.05rem 等）
     - これにより医師ページv0.5と同様の「テキスト見切れなし」状態を達成

   Changelog v0.1:
     - 医師ページ doctor-detail.css v0.5 を雛形にコピー作成
     - FV（DETAIL-2）を左右反転レイアウトに刷新
       ・画像エリア：右80% → 左80%（left: 0 / right: auto）
       ・clip-path：polygon(20% 0, 100% 0, 100% 100%, 0 100%)
         → polygon(0 0, 80% 0, 100% 100%, 0 100%)（左→右へ斜めにカット）
       ・オーバーレイ：左から → 右から（明度低下方向を反転）
       ・テキストブロック：左寄せ → 右寄せ（margin-left: auto）
       ・SCROLLインジケーター：右下 → 左下
       ・タブレット縦並び：画像下端の斜めも左右対称調整
     - FV画像URL：fv-doctor.jpg → fv-nurse.jpg
     - D3〜D7の構造はすべて医師ページv0.5から100%継承（変更なし）
   ========================================================== */

/* ----------------------------------------------------------
   D1. パンくず（Breadcrumb）— 医師ページと共通
   ---------------------------------------------------------- */
.breadcrumb-section {
  background-color: var(--hk-sage-soft);
  padding: 1rem 0;
  margin-top: 78px; /* fixed-top navbar 分のオフセット */
  border-bottom: 1px solid rgba(50, 100, 100, 0.08);
}
.breadcrumb-hk {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  font-size: 0.95rem;
  color: var(--hk-text-mute);
}
.breadcrumb-hk li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb-hk li:not(:last-child)::after {
  content: "›";
  margin: 0 0.75rem;
  color: var(--hk-text-light);
}
.breadcrumb-hk a {
  color: var(--hk-primary);
  text-decoration: none;
}
.breadcrumb-hk a:hover {
  color: var(--hk-primary-dark);
  text-decoration: underline;
}
.breadcrumb-hk li[aria-current="page"] {
  color: var(--hk-text-dark);
  font-weight: 600;
}

/* ----------------------------------------------------------
   D2. 職種別FV — 画像＋斜め境界線レイアウト（左右反転版・看護師）
   医師ページは「右画像・左テキスト」
   看護師ページは「左画像・右テキスト」（千秋さん指定・Chat-15）
   ---------------------------------------------------------- */
.fv-detail {
  position: relative;
  width: 100%;
  /* min-height: 78vh → clamp(560px, 78vh, 820px)（v0_8_3 / 大画面FV高さ間延び解消）
     下限560px：ノートPC（高さ700px前後）でCTAまで確実に表示
     中央78vh ：従来通り標準的な画面でビューポート相対
     上限820px：32インチ4Kモニタでも適切に収まる上限 */
  min-height: clamp(560px, 78vh, 820px);
  background: #FFFFFF;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* 左側の画像エリア — 右辺を上から下に向かってナナメに切る */
.fv-detail-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 80%;
  background-image: url('../images/fv-nurse.jpg');
  background-size: cover;
  background-position: center center;
  /* 右辺を上から下に向かってナナメに切る（右上が引っ込む形） */
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
}

/* 画像の右端を少しソフトに馴染ませる薄いオーバーレイ（右からの白フェード） */
.fv-detail-img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38%;
  background: linear-gradient(270deg, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0.2) 60%, transparent 100%);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

/* テキストブロック — 右側に配置（中央寄せ） */
.fv-detail-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* 右寄せ（医師ページは align-items: flex-start 相当） */
  padding: 6rem 4rem 4rem 2rem; /* 左右の padding を医師ページと反転 */
}

/* 子要素は右寄せ表示にしたいので、内側要素を一度ラップする代わりに
   各子要素に text-align: left（読みやすさ）＋ width: 100% で右ブロック内左揃え */
.fv-detail-eyebrow,
.fv-detail-title,
.fv-detail-subtitle,
.fv-detail-meta,
.fv-detail-ctas {
  /* 右寄せブロック内ではテキストは左揃えにして可読性を確保 */
  align-self: flex-end;
  text-align: left;
}

.fv-detail-eyebrow {
  display: inline-block;
  width: fit-content;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  color: var(--hk-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--hk-point);
}

.fv-detail-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.45;
  color: var(--hk-primary-text);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  max-width: 100%;
}

.fv-detail-subtitle {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--hk-text-body);
  margin-bottom: 2rem;
  max-width: 540px;
}

.fv-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 0.85rem;
  margin-bottom: 2.25rem;
  font-size: 0.95rem;
  color: var(--hk-primary-text);
}
.fv-detail-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.95rem;
  background: var(--hk-sage-soft);
  border: 1px solid var(--hk-sage);
  border-radius: 999px;
  font-weight: 500;
}

/* ----------------------------------------------------------
   FVテキスト袋文字（白縁取り）— v0.3で追加
   背景画像（特に明るい医療事務ページの白事務服＋白背景）に
   対して深緑テキストが同化する問題を解消するため、
   FVのテキスト要素に白の袋文字（text-shadow 8方向）を追加。

   8方向で滑らかな縁取りを実現。1.5px は上品で控えめだが
   背景との分離は確実に確保できる強度。
   ※ .fv-detail-meta span（バッジ）は背景色が明示されているため除外。
   ---------------------------------------------------------- */
.fv-detail-eyebrow,
.fv-detail-title,
.fv-detail-subtitle,
.fv-detail-meta {
  text-shadow:
    -1.5px -1.5px 0 #FFFFFF,
     0    -1.5px 0 #FFFFFF,
     1.5px -1.5px 0 #FFFFFF,
     1.5px  0    0 #FFFFFF,
     1.5px  1.5px 0 #FFFFFF,
     0     1.5px 0 #FFFFFF,
    -1.5px  1.5px 0 #FFFFFF,
    -1.5px  0    0 #FFFFFF;
}

/* バッジ（背景色明示）は袋文字を無効化 */
.fv-detail-meta span {
  text-shadow: none;
}


.fv-detail-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.btn-fv-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border-width: 1.5px;
  border-style: solid;
}
.btn-fv-detail-primary {
  background: #F1FBE3;
  color: var(--hk-primary);
  border: 1.5px solid var(--hk-primary);
}
.btn-fv-detail-primary:hover {
  background: var(--hk-sage);
  color: var(--hk-primary);
  border-color: var(--hk-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(50, 100, 100, 0.18);
}
.btn-fv-detail-outline {
  background: #FFFFFF;
  color: var(--hk-primary);
  border: 1.5px solid var(--hk-primary);
}
.btn-fv-detail-outline:hover {
  background: var(--hk-sage-soft);
  color: var(--hk-primary-dark);
  border-color: var(--hk-primary-dark);
  transform: translateY(-2px);
}

/* 左端の縦書きSCROLLインジケーター（医師ページは右下、看護師は左下） */
.fv-detail-scroll {
  position: absolute;
  left: 1.5rem;
  bottom: 2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: #FFFFFF;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.fv-detail-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: #FFFFFF;
  margin-top: 0.5rem;
  animation: fv-scroll-line 1.8s ease-in-out infinite;
  transform-origin: top;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
@keyframes fv-scroll-line {
  0%, 100% { transform: scaleY(0); opacity: 0; }
  40%, 60% { transform: scaleY(1); opacity: 1; }
}

/* タブレット以上 */
@media (min-width: 768px) {
  .fv-detail-inner {
    padding: 6rem 5rem 4rem 2rem;
  }
  .fv-detail-title {
    font-size: 3rem;
  }
  .fv-detail-subtitle {
    font-size: 1.05rem;
  }
}

/* PC：テキストブロックを右カラム内に収める（画像と重ならない安全幅） v0.2
   画像80%＋斜め20%カット = 画像右端は親要素の左から80%地点
   右側CTA「ご相談お問合せ」(sticky)が右端90〜100%を占めるため、
   テキスト右端は90%ラインまでに抑える ＝ 右paddingを大きく取る */
@media (min-width: 992px) {
  .fv-detail-inner {
    max-width: 100%;
    padding: 6rem 9rem 4rem 2rem; /* 右paddingを 5rem → 9rem に拡大（追従CTAとの被り回避） */
  }
  .fv-detail-eyebrow,
  .fv-detail-title,
  .fv-detail-subtitle,
  .fv-detail-meta,
  .fv-detail-ctas {
    max-width: 42%; /* 48% → 42% にしぼり、画像左端との重なりを回避 */
  }
  .fv-detail-title {
    font-size: 2.05rem; /* 2.15 → 2.05 に微縮小（4行構成で収まりやすく） */
  }
}

/* デスクトップ大画面 */
@media (min-width: 1200px) {
  .fv-detail-inner {
    padding: 6rem 10rem 4rem 2rem;
  }
  .fv-detail-eyebrow,
  .fv-detail-title,
  .fv-detail-subtitle,
  .fv-detail-meta,
  .fv-detail-ctas {
    max-width: 40%;
  }
  .fv-detail-title {
    font-size: 2.3rem;
  }
}

/* 超大画面 */
@media (min-width: 1600px) {
  .fv-detail-inner {
    padding: 6rem 11rem 4rem 2rem;
  }
  .fv-detail-eyebrow,
  .fv-detail-title,
  .fv-detail-subtitle,
  .fv-detail-meta,
  .fv-detail-ctas {
    max-width: 36%;
  }
  .fv-detail-title {
    font-size: 2.7rem;
  }
}

/* タブレット縦：画像を上、テキストを下に再構成 */
@media (max-width: 991px) {
  .fv-detail {
    min-height: 100vh;
    flex-direction: column;
  }
  .fv-detail-img {
    position: relative;
    width: 100%;
    height: 50vh;
    /* 縦並び時は下端を斜めにクリップ（医師ページと同じ：右下が伸びる） */
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }
  .fv-detail-img::after {
    display: none;
  }
  .fv-detail-inner {
    position: relative;
    padding: 2.5rem 2rem 3rem 2rem;
    flex: 1;
    align-items: flex-start; /* タブレット以下では左寄せに戻す */
  }
  .fv-detail-eyebrow,
  .fv-detail-title,
  .fv-detail-subtitle,
  .fv-detail-meta,
  .fv-detail-ctas {
    max-width: 100%;
    align-self: flex-start;
  }
  .fv-detail-scroll {
    display: none;
  }
}

/* モバイル */
@media (max-width: 575px) {
  .fv-detail {
    min-height: auto;
  }
  .fv-detail-img {
    height: 42vh;
    min-height: 280px;
  }
  .fv-detail-inner {
    padding: 2rem 1.5rem 2.5rem 1.5rem;
  }
  .fv-detail-title {
    font-size: 1.7rem;
    line-height: 1.5;
  }
  .fv-detail-eyebrow {
    font-size: 1rem;
  }
  .fv-detail-subtitle {
    font-size: 0.95rem;
  }
  .fv-detail-meta {
    font-size: 0.88rem;
    gap: 0.5rem 0.6rem;
  }
  .fv-detail-meta span {
    padding: 0.3rem 0.8rem;
  }
  .btn-fv-detail {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ----------------------------------------------------------
   D3. Recruit リード文（DETAIL-3）— 医師ページと共通
   ---------------------------------------------------------- */
.detail-recruit-lead {
  max-width: 820px;
  margin: 0 auto;
}
.detail-recruit-lead p {
  font-size: 1.125rem;
  line-height: 2.1;
  margin-bottom: 1.5rem;
  color: var(--hk-text-body);
}
.detail-recruit-lead p:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   D5. Our Workplace — 詳細ページ版（医師ページと共通）
   ---------------------------------------------------------- */
.workplace-detail-group {
  margin-bottom: 3.5rem;
}
.workplace-detail-group:last-child {
  margin-bottom: 0;
}
.workplace-detail-group-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--hk-primary-text);
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  position: relative;
}
.workplace-detail-group-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--hk-point);
}

.workplace-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 991px) {
  .workplace-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .workplace-detail-grid {
    grid-template-columns: 1fr;
  }
}

.workplace-detail-card {
  background: #FFFFFF;
  border: 1px solid var(--hk-sage);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.workplace-detail-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(50, 100, 100, 0.1);
}
.workplace-detail-card-title {
  font-size: 1.075rem;
  font-weight: 700;
  color: var(--hk-primary);
  margin-bottom: 0.85rem;
  line-height: 1.5;
}
.workplace-detail-card-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--hk-text-body);
  margin: 0;
}

/* 詳細条件の注記ボックス */
.workplace-notes {
  max-width: 820px;
  margin: 3rem auto 0;
  padding: 2rem 2.25rem;
  background: var(--hk-sage-soft);
  border-radius: 10px;
}
.workplace-notes-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hk-primary-text);
  margin-bottom: 1.25rem;
}
.workplace-notes dl {
  margin: 0;
}
.workplace-notes dt {
  font-weight: 700;
  color: var(--hk-primary);
  font-size: 0.98rem;
  margin-top: 1rem;
}
.workplace-notes dt:first-child {
  margin-top: 0;
}
.workplace-notes dd {
  margin: 0.4rem 0 0;
  padding-left: 0;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--hk-text-body);
}
.workplace-notes dd:last-child {
  margin-bottom: 0;
}

/* ----------------------------------------------------------
   D6. Job Details（仕事内容3分割）★最重要 — 医師ページと共通
   ---------------------------------------------------------- */
.job-details-list {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.job-details-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: #FFFFFF;
  border: 1px solid var(--hk-sage-soft);
  border-radius: 1rem;
  padding: 2.25rem 1.75rem;
  box-shadow: var(--hk-shadow-sm);
  align-items: start;
}
@media (min-width: 768px) {
  .job-details-item {
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    padding: 2.5rem 2.5rem;
  }
}

.job-details-number {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.job-details-number-inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--hk-point);
  color: var(--hk-primary-dark);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(200, 220, 120, 0.35);
}
@media (max-width: 767px) {
  .job-details-number-inner {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
}

.job-details-body {
  min-width: 0;
}
.job-details-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--hk-primary-text);
  margin-bottom: 1.15rem;
  position: relative;
  padding-bottom: 0.65rem;
}
.job-details-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--hk-primary);
}
.job-details-body p {
  font-size: 1rem;
  line-height: 2;
  color: var(--hk-text-body);
  margin-bottom: 1rem;
}
.job-details-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .job-details-title {
    font-size: 1.2rem;
  }
  .job-details-body p {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}

/* サブセクション（必須要件・歓迎要件など） */
.job-details-subsection {
  background: var(--hk-sage-soft);
  border-radius: 8px;
  padding: 1.1rem 1.5rem 1.1rem 1.5rem;
  margin: 1.25rem 0;
}
.job-details-subsection-title {
  font-size: 1.025rem;
  font-weight: 700;
  color: var(--hk-primary);
  margin-bottom: 0.65rem;
}
.job-details-subsection ul {
  margin: 0;
  padding-left: 1.25rem;
}
.job-details-subsection ul li {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--hk-text-body);
  margin-bottom: 0.3rem;
}
.job-details-subsection ul li:last-child {
  margin-bottom: 0;
}

/* ハードスキル／ソフトスキルのカテゴリラベル */
.job-skills-cat {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--hk-primary);
  padding: 0.25rem 0.85rem;
  background: #FFFFFF;
  border: 1px solid var(--hk-sage);
  border-radius: 999px;
  margin-bottom: 0.85rem;
  margin-top: 1.5rem;
}
.job-skills-cat:first-child {
  margin-top: 0;
}

/* モデル月収ボックス（看護師ページ独自・dt/ddの後に挿入） */
.openings-model-income {
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 1.75rem 2rem;
  background: linear-gradient(135deg, var(--hk-sage-soft) 0%, #FFFFFF 100%);
  border: 1.5px solid var(--hk-sage);
  border-radius: 12px;
  position: relative;
}
.openings-model-income::before {
  content: "Model Income";
  position: absolute;
  top: -0.85rem;
  left: 1.5rem;
  background: var(--hk-primary);
  color: #FFFFFF;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.85rem;
  border-radius: 4px;
}
.openings-model-income-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hk-primary-text);
  margin-bottom: 0.85rem;
  margin-top: 0.25rem;
}
.openings-model-income-formula {
  font-size: 0.95rem;
  line-height: 1.95;
  color: var(--hk-text-body);
  margin-bottom: 0.85rem;
}
.openings-model-income-result {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hk-primary);
  text-align: right;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--hk-sage);
}
.openings-model-income-result strong {
  font-size: 1.4rem;
  color: var(--hk-primary-dark);
  margin: 0 0.25rem;
}
.openings-model-income-note {
  font-size: 0.85rem;
  color: var(--hk-text-mute);
  margin-top: 0.5rem;
  text-align: right;
}

/* ----------------------------------------------------------
   D7. Job Openings（求人票テーブル × 2）— 医師ページと共通
   ---------------------------------------------------------- */
.openings-detail-wrap {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.openings-table-card {
  background: #FFFFFF;
  border: 1px solid var(--hk-sage);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(50, 100, 100, 0.06);
}
.openings-table-header {
  background: linear-gradient(135deg, var(--hk-primary) 0%, var(--hk-primary-dark) 100%);
  color: #FFFFFF;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.openings-table-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: var(--hk-point);
  color: var(--hk-primary-text);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.openings-table-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  color: #FFFFFF;
}
@media (max-width: 575px) {
  .openings-table-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
  }
  .openings-table-title {
    font-size: 1.15rem;
  }
}

.openings-table {
  padding: 0;
}
.openings-table dl {
  margin: 0;
  padding: 0;
}
.openings-table-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid rgba(50, 100, 100, 0.1);
}
.openings-table-row:last-child {
  border-bottom: none;
}
.openings-table-row dt {
  padding: 1.05rem 1.5rem 1.05rem 2rem;
  background: var(--hk-sage-soft);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--hk-primary);
  border-right: 1px solid rgba(50, 100, 100, 0.08);
  display: flex;
  align-items: center;
}
.openings-table-row dd {
  padding: 1.05rem 1.75rem 1.05rem 1.75rem;
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--hk-text-body);
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .openings-table-row {
    grid-template-columns: 1fr;
  }
  .openings-table-row dt {
    padding: 0.75rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid rgba(50, 100, 100, 0.08);
  }
  .openings-table-row dd {
    padding: 0.9rem 1.25rem 1.1rem;
    line-height: 1.8;
  }
}

.openings-note {
  padding: 1rem 2rem 1.5rem;
  background: #FCFDF8;
  border-top: 1px dashed rgba(50, 100, 100, 0.15);
}
.openings-note p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--hk-text-mute);
  margin: 0;
}

/* 募集要項末尾の応募CTA — 医師ページと共通（v0.5仕様） */
.openings-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.75rem;
}
.btn-openings-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border-width: 1.5px;
  border-style: solid;
}
.btn-openings-primary {
  background: #F1FBE3;
  color: var(--hk-primary);
  border: 1.5px solid var(--hk-primary);
}
.btn-openings-primary:hover {
  background: var(--hk-sage);
  color: var(--hk-primary);
  border-color: var(--hk-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(50, 100, 100, 0.18);
}
.btn-openings-outline {
  background: #FFFFFF;
  color: var(--hk-primary);
  border: 1.5px solid var(--hk-primary);
}
.btn-openings-outline:hover {
  background: var(--hk-sage-soft);
  color: var(--hk-primary-dark);
  border-color: var(--hk-primary-dark);
  transform: translateY(-2px);
}

/* ----------------------------------------------------------
   モバイル微調整
   ---------------------------------------------------------- */
@media (max-width: 767px) {
  .fv-detail-title {
    font-size: 1.85rem;
  }
  .fv-detail-eyebrow {
    font-size: 1.05rem;
  }
  .fv-detail-subtitle {
    font-size: 0.97rem;
  }
}
