/* ============================================================
   core.css
   bootstrap-override.css + utilities.css + common.css を統合
   全ページ共通：CSS変数・リセット・ユーティリティ・共通パーツ
   ============================================================ */
/*
 * bootstrap-override.css
 * 信太山新地求人 専用カラー（グリーン系）
 * Bootstrap削除後の独自ベーススタイル
 */

:root {
  /* ── page-beginner / page-recruit 用変数 ── */
  --sky-50:  #E8FFF4;
  --sky-100: #C9FFE2;
  --sky-200: #96E8BC;
  --sky-400: #7DD181;
  --sky-500: #5ECFB1;
  --sky-600: #4B7F52;
  --sky-700: #3A6640;
  --sky-900: #1E3D22;
  --text:        #1C2B33;
  --text-muted:  #546E7A;
  --text-light:  #8EA5B5;
  --border:      rgba(150,232,188,0.35);
  --border-med:  rgba(150,232,188,0.55);
  --accent:      #96E8BC;
  --accent-dark: #4B7F52;
  --nakai-main: #7DD181;
  --nakai-dark: #4B7F52;
  --nakai-pale: #E8FFF4;
  --nakai-line: #C9FFE2;
  --nakai-mid:  #5ECFB1;
  --ff-head: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --ff-body: 'Noto Sans JP', sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --pink-main:   #96E8BC;
  --gold:        #B8986A;
  --gold-light:  #D4B896;
  --pink-light:  #C9FFE2;
  --pink-pale:   #E8FFF4;
  --pink-deep:   #4B7F52;
  --pink-medium: #7DD181;
  --navy:        #4B7F52;
  --white:       #FFFFFF;
  --gray-text:   #555;
  --gray-light:  #f9f9f9;
  --max-w:       1200px;

  --mint:         #5ECFB1;
  --mint-pale:    #F0FDF9;
  --mint-light:   #C8F2E8;
  --yellow:       #FFD166;
  --yellow-pale:  #FFFBEF;
  --yellow-light: #FFE9A0;
}

html { overflow-x: hidden; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.8;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: none;
  position: relative;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--mint), var(--pink-main));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform .2s;
  line-height: 1.5;
}
.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, var(--pink-main), var(--mint));
}

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--pink-main);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform .2s;
}
.btn-white:hover { transform: translateY(-2px); color: var(--pink-deep); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--navy);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s, color 0.2s, border-color 0.2s;
}
.btn-outline::after { content: '→'; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; font-weight: 300; color: var(--gold); transition: transform 0.3s; }
.btn-outline:hover { color: var(--gold); border-color: var(--gold); gap: 16px; }
.btn-outline:hover::after { transform: translateX(4px); }

.btn-outline-w,
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.45);
  transition: gap 0.3s, color 0.2s, border-color 0.2s;
}
.btn-outline-w::after,
.btn-outline-white::after { content: '→'; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px; font-weight: 300; transition: transform 0.3s; }
.btn-outline-w:hover,
.btn-outline-white:hover { color: #fff; border-color: rgba(255,255,255,0.85); gap: 16px; }
.btn-outline-w:hover::after,
.btn-outline-white:hover::after { transform: translateX(4px); }

.treatment-card, .col-card, .scol-rel-card, .strmt-rel-card,
.related-card, .ev-card, .dorm-card, .shift-card, .fi-card, .contact-info-card {
  border-radius: unset;
}

.nav-item > a { text-decoration: none; }

.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

.treatment-card-desc li::marker,
.fi-card-list li::before,
.scol-content li::marker,
.strmt-content li::marker { color: var(--pink-main); }

img { max-width: 100%; height: auto; }
table { border-collapse: collapse; }
input, textarea, select, button { box-sizing: border-box; }
*, *::before, *::after { box-sizing: border-box; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; line-height: 1.4; }
p { margin: 0; }

/* ============================================================
   shift-grid / shift-card（1日の流れ）page-beginner/recruit用
   ============================================================ */
.shift-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin:24px 0; }
@media(max-width:640px){ .shift-grid{ grid-template-columns:1fr; } }
.shift-card { background:var(--white); border:1.5px solid var(--border); border-radius:var(--radius-md); overflow:hidden; transition:border-color .2s,box-shadow .2s; }
.shift-card:hover { border-color:var(--accent); box-shadow:0 4px 18px rgba(56,170,207,.1); }
.shift-card-head { background:var(--sky-600); color:var(--white); font-size:13px; font-weight:700; padding:12px 18px; letter-spacing:.03em; }
.shift-card-body { padding:18px; }
.shift-card-body ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
.shift-card-body ul li { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--text-muted); line-height:1.6; padding-bottom:10px; border-bottom:1px solid var(--border); }
.shift-card-body ul li:last-child { border-bottom:none; padding-bottom:0; }
.shift-card-body ul li strong { flex-shrink:0; color:var(--accent-dark); font-weight:700; min-width:52px; }-e 
/* ============================================================
   utilities.css
   ============================================================ */
/* ============================================================
   utilities.css
   全ページ共通ユーティリティ
   - インラインstyle分離クラス
   - パンくず統一余白
   - 「もっと見る」ボタン余白
   - section-label バリアント
   ============================================================ */


/* ===== section-label バリアント ===== */
/* section-label バリアント（スタイルはcommon.cssで定義） */
.section-label--light { color: rgba(255,255,255,0.55); }  /* ダーク背景用 */
.section-label--mb    { margin-bottom: 8px; }
.section-label--mb16  { margin-bottom: 16px; }


/* ===== パンくず 統一余白 ===== */
/* 全ページ共通：本文エリア最上部 */
.section-inner  > .ladyreq-breadcrumb,
.content-inner  > .ladyreq-breadcrumb,
.contact-inner  > .ladyreq-breadcrumb,
.exp-inner      > .ladyreq-breadcrumb,
.flow-page-inner > .ladyreq-breadcrumb,
.travel-inner   > .ladyreq-breadcrumb,
.news-arc-body .section-inner > .ladyreq-breadcrumb,
.col-arc-body  .section-inner > .ladyreq-breadcrumb,
.faq-arc-body  .section-inner > .ladyreq-breadcrumb {
  margin-top: 0;
  padding-top: 0;
}

/* ダーク背景ページ用（voice/column/treatment/single系） */
.voice-archive-body .ladyreq-breadcrumb a,
.col-arc-body       .ladyreq-breadcrumb a,
.armt-body          .ladyreq-breadcrumb a,
.strmt-inner        .ladyreq-breadcrumb a { color: rgba(255,255,255,0.32); }
.voice-archive-body .ladyreq-breadcrumb a:hover,
.col-arc-body       .ladyreq-breadcrumb a:hover,
.armt-body          .ladyreq-breadcrumb a:hover,
.strmt-inner        .ladyreq-breadcrumb a:hover { color: var(--pink-main); }
.voice-archive-body .ladyreq-breadcrumb span,
.col-arc-body       .ladyreq-breadcrumb span,
.armt-body          .ladyreq-breadcrumb span,
.strmt-inner        .ladyreq-breadcrumb span { color: rgba(255,255,255,0.3); }


/* ===== 「もっと見るボタン」周辺の余白統一 ===== */
/* トップページ各セクションのもっと見るボタン */
.news-more-wrap,
.treatment-more-wrap,
.column-more-wrap,
.voice-more-wrap {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

/* archiveページのページネーション上下余白統一 */
.news-arc-pager,
.col-arc-pager,
.armt-pager,
.faq-arc-pager {
  text-align: center;
  margin: 42px 0 40px;
}

/* ページネーション共通 */
.news-arc-pager .page-numbers,
.col-arc-pager  .page-numbers,
.armt-pager     .page-numbers,
.faq-arc-pager  .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  border-radius: 50px;
  margin: 0 3px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
/* ライトページ用 */
.news-arc-pager .page-numbers {
  color: var(--navy);
  border: 1px solid rgba(30,34,64,0.15);
}
.news-arc-pager .page-numbers.current,
.news-arc-pager .page-numbers:hover {
  background: var(--pink-main); color: #fff; border-color: var(--pink-main);
}
/* ダークページ用 */
.col-arc-pager .page-numbers,
.armt-pager    .page-numbers,
.faq-arc-pager .page-numbers {
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.12);
}
.col-arc-pager .page-numbers.current,
.col-arc-pager .page-numbers:hover,
.armt-pager    .page-numbers.current,
.armt-pager    .page-numbers:hover,
.faq-arc-pager .page-numbers.current,
.faq-arc-pager .page-numbers:hover {
  background: var(--pink-main); color: #fff; border-color: var(--pink-main);
}


/* ===== インラインstyle分離クラス ===== */

/* 給与金額 */
.salary-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--pink-main);
  line-height: 1.2;
}

/* チェックリスト */
.check-list {
  margin-top: 10px;
  padding-left: 18px;
  line-height: 2;
  color: var(--gray-text);
}
.check-list li::marker { color: var(--pink-main); }

/* テキストリンク */
.text-link {
  color: var(--pink-main);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity .2s;
}
.text-link:hover { opacity: .7; }

/* ボタン中央寄せラッパー */
.btn-center-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 26px;
}

/* section-label--mb の下余白 */
.section-label--mb  { margin-bottom: 8px; }
.section-label--mb16 { margin-bottom: 16px; }

/* フォームお知らせ */
.cf7-notice {
  background: var(--pink-pale);
  padding: 18px 16px;
  border-radius: 12px;
  color: var(--gray-text);
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 16px;
}

/* 個人情報見出し */
.privacy-ttl {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-weight: 700;
}

/* contact-info-card small */
.contact-info-card--sm {
  font-size: 13px;
  color: var(--gray-text);
}

/* ハイライトノート（experienced/travel共通） */
.highlight-note {
  background: var(--pink-pale);
  border-radius: 14px;
  padding: 16px 26px;
  margin-top: 16px;
  border-left: 4px solid var(--pink-main);
}
.highlight-note__text {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.9;
}

/* voiceの続きを読む */
.voice-read-more {
  font-size: 12px;
  color: var(--pink-main);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  text-decoration: none;
  transition: gap .2s;
}
.voice-read-more:hover { gap: 7px; }

/* btn-outline小 */
.btn-outline--sm { font-size: 12px; }

/* カード内リンクラッパー */
.fi-card-link-wrap { margin-top: 10px; }

/* note-text（travel等の注意書き） */
.note-text {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-top: 8px;
}

/* sub-nav（経験者・遠方ページ） */
.sub-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 26px;
}

/* col-link 小サイズ */
.col-link--sm { font-size: 10px; }


/* ===== FAQ archiveページ専用 ===== */
.faq-arc-page { background: var(--navy); min-height: 100vh; }

.faq-arc-hero {
  position: relative;
  padding: 68px 26px 68px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,214,229,0.10);
}
.faq-arc-hero-deco {
  position: absolute; right: -10px; bottom: -18px;
  font-size: clamp(68px,12vw,140px);
  font-family: 'Noto Serif JP',serif; font-weight: 700;
  color: rgba(255,255,255,0.028); line-height: 1;
  pointer-events: none; user-select: none;
  letter-spacing: .06em; white-space: nowrap;
}
.faq-arc-hero-inner { position: relative; z-index:1; max-width: 640px; margin: 0 auto; }
.faq-arc-title {
  font-family: 'Noto Serif JP',serif;
  font-size: clamp(26px,5vw,40px); font-weight: 700;
  color: #fff; margin: 12px 0 16px; line-height: 1.3;
}
.faq-arc-lead { font-size: 14px; color: #0D2B4E; line-height: 2.0; }

.faq-arc-body { padding: 52px 0 80px; }
.faq-arc-empty { color: rgba(255,255,255,0.4); text-align: center; padding: 40px 0; }

@media(max-width:640px){
  .faq-arc-hero { padding: 56px 20px 44px; }
  .btn-center-wrap { flex-direction: column; }
  .btn-center-wrap .btn-primary,
  .btn-center-wrap .btn-outline { width: 100%; text-align: center; }
}

/* ============================================================
   No-Image 共通スタイル
   .ladyreq-noimg がついたすべての no-image 画像に適用
   ============================================================ */

/* 基本：親要素いっぱいに広がるobject-fit */
.ladyreq-noimg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ---- アーカイブ・カード系サムネ ---- */

/* お知らせ archive */
.narc-thumb-noimg {
  width: 100%;
  height: 100%;
  background: var(--gray-light, #f2f2f4);
}
.narc-thumb-noimg .ladyreq-noimg {
  opacity: .75;
}

/* コラム カード thumbnail */
.col-thumb-noimg {
  width: 100%;
  height: 100%;
  background: #f0eef4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.col-thumb-noimg .ladyreq-noimg {
  opacity: .72;
}

/* 待遇 archive カードサムネ */
.treatment-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  background: #f0eef4;
}
.treatment-card-thumb .ladyreq-noimg,
.treatment-card-thumb .treatment-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- single hero系 ---- */

/* single-news ヒーロー noimg */
.snews-hero-bg--noimg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.snews-hero-bg--noimg .ladyreq-noimg,
.snews-hero-noimg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
  filter: blur(2px) saturate(.6);
  transform: scale(1.04);
}

/* single-column ヒーロー noimg */
.scol-hero-bg--noimg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.scol-hero-bg--noimg .ladyreq-noimg,
.scol-hero-noimg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .35;
  filter: blur(3px) saturate(.5);
  transform: scale(1.04);
}

/* single-column 関連記事サムネ */
.scol-rel-thumb-noimg {
  width: 100%;
  height: 100%;
  background: #f0eef4;
}
.scol-rel-thumb-noimg .ladyreq-noimg {
  opacity: .75;
}

/* ---- レスポンシブ：カードサムネ高さ ---- */
/* お知らせ archive (.narc-thumb) → CSS側で定義済みの場合はそちらが優先 */
@media (max-width: 640px) {
  .treatment-card-thumb { aspect-ratio: 16 / 7; }
}

/* CTAセクション直前の下余白をSPで削減 */
@media (max-width: 640px) {
  .content-page,
  .exp-page,
  .flow-page-section,
  .travel-page,
  .faq-arc-body,
  .voice-archive-body,
  .news-arc-body,
  .armt-body,
  .column-arc-body { padding-bottom: 0px !important; }
}


/* ============================================================
   カスタムカーソル
   ============================================================ */

}


/* ============================================================
   ゴールドラインドロー（section-title 下）
   ============================================================ */

/* section-title を relative に（既存スタイルに追記） */
.section-title {
  position: relative;
  display: inline-block; /* 文字幅に合わせる */
  padding-bottom: 10px;
}

/* ライン本体：初期は width 0 */
.goldline {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: linear-gradient(to right, var(--gold), var(--gold-light), transparent);
  border-radius: 2px;
  transition: width 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* IntersectionObserver が付与するクラスで描画 */
.goldline--drawn {
  width: 100%;
}
/* ============================================================
   common.css
   ============================================================ */
/* ===== SECTION COMMON ===== */
  section { padding: 90px 0; }

  .section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; box-sizing: border-box; }

  /* ===== セクションタイトル（麻布スタイル：英語大＋日本語小） ===== */
  .section-label {
    font-family: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 300;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-transform: none;
    line-height: 1;
    margin-bottom: 6px;
    display: block;
  }

  .section-title {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: var(--navy);
    margin-bottom: 32px;
    display: block;
  }

/* ===== パンくずナビ（全ページ共通） ===== */
.ladyreq-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 6px;
  font-size: 12px;
  margin-bottom: 14px;
}
.ladyreq-breadcrumb a {
  text-decoration: none;
  transition: color 0.2s;
}
/* ライト背景ページ */
.ladyreq-breadcrumb a         { color: rgba(30,34,64,0.45); }
.ladyreq-breadcrumb a:hover   { color: var(--pink-main); }
.ladyreq-breadcrumb span      { color: rgba(30,34,64,0.4); }
.ladyreq-breadcrumb .bc-sep   { color: rgba(150,232,188,0.35); }

/* ダーク背景ページ用（.strmt-inner等ダーク親の中） */
.strmt-inner .ladyreq-breadcrumb a,
.scol-inner  .ladyreq-breadcrumb a,
.snews-inner .ladyreq-breadcrumb a  { color: rgba(255,255,255,0.32); }
.strmt-inner .ladyreq-breadcrumb a:hover,
.scol-inner  .ladyreq-breadcrumb a:hover,
.snews-inner .ladyreq-breadcrumb a:hover { color: var(--pink-main); }
.strmt-inner .ladyreq-breadcrumb span,
.scol-inner  .ladyreq-breadcrumb span,
.snews-inner .ladyreq-breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== ボタン共通スタイルは bootstrap-override.css に定義 ===== */
/* btn-primary / btn-outline / btn-outline-white / btn-outline-w */

/* ===== section-more（各セクション下部「一覧を見る」ボタン行） ===== */
.section-more {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 56px;
  padding-top: 8px;
}

/* ダーク背景セクションは中央寄せ */
.treatment-section .section-more,
.voice-section     .section-more {
  justify-content: center;
  margin-top: 56px;
}


/* ============================================================
   サイドバー共通スタイル（page-sidebar / fsb-* / faq-arc-sidebar）
   全ページ（archive/pages共通）で使用するため core.css に統合
   ============================================================ */
/* ============================================================
   pages.css
   固定ページ全種類を統合
   page-sidebar / beginner / contact / experienced / flow /
   travel / line / company / sitemap / policy / recruit
   ============================================================ */

/* ============================================================
   page-sidebar.css
   ============================================================ */
/* ================================================================
   page-sidebar.css  ― サイドバー共通スタイル（FAQ/beginner/experienced）
   .page-2col-layout / .page-sidebar / .fsb-* クラス
   ================================================================ */

/* ===== 2カラム用コンテナ（全ページ共通） ===== */
.content-page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 26px 0;
}

/* ===== 2カラムレイアウト（全ページ共通） ===== */
.page-2col-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 42px;
  align-items: start;
}

/* ===== サイドバー本体 ===== */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 76px;
}

/* ===== FAQ サイドバー ===== */
.faq-arc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 76px;
}

/* ================================================================
   ① LINE・応募 CTA カード
   ================================================================ */
.fsb-cta {
  background: linear-gradient(155deg, #7A3860 0%, #A04878 100%);
  border-radius: 20px;
  padding: 28px 26px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fsb-cta::before,
.fsb-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.fsb-cta::before {
  width: 140px; height: 140px;
  top: -50px; right: -50px;
  background: rgba(240,62,122,0.12);
}
.fsb-cta::after {
  width: 80px; height: 80px;
  bottom: -20px; left: -20px;
  background: rgba(6,199,85,0.10);
}

.fsb-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.50);
  margin-bottom: 8px;
}
.fsb-cta-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 21px;
  font-weight: 600;
  color: white;
  line-height: 1.45;
  margin-bottom: 16px;
}
.fsb-cta-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 26px;
}
.fsb-cta-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
}
.fsb-cta-features .fa-check-circle { color: #06C755; font-size: 13px; }

/* ボタン共通 */
.fsb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  padding: 13px 16px;
  margin-bottom: 10px;
  transition: filter 0.2s, transform 0.15s;
}
.fsb-btn:hover { filter: brightness(1.09); transform: translateY(-1px); }

.fsb-btn--line {
  background: #06C755;
  color: white;
}
.fsb-btn--line:hover { color: white; }

.fsb-btn--form {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.90);
  border: 1px solid rgba(255,255,255,0.25);
  margin-bottom: 18px;
}
.fsb-btn--form:hover { color: white; background: rgba(255,255,255,0.20); }

/* 電話リンク */
.fsb-tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 16px;
  width: 100%;
  transition: color 0.2s;
}
.fsb-tel:hover { color: white; }
.fsb-tel .fa-phone { font-size: 13px; color: var(--pink-light); }
.fsb-tel span {
  display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
}
.fsb-tel small { font-size: 10px; letter-spacing: 0.06em; color: rgba(255,255,255,0.40); }
.fsb-tel span > :last-child {
  font-size: 15px; font-weight: 700; letter-spacing: 0.06em; color: white;
}

/* ================================================================
   ② 関連ページリンクカード
   ================================================================ */
.fsb-links {
  background: var(--white);
  border: 1px solid var(--pink-light);
  border-radius: 16px;
  overflow: hidden;
}
.fsb-links-header {
  padding: 16px 18px 12px;
  border-bottom: 1px solid var(--pink-pale);
}
.fsb-links-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--pink-main);
  margin-bottom: 3px;
}
.fsb-links-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ===== 2カラムグリッド ===== */
.fsb-links nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--pink-pale);
  align-items: stretch;
}

.fsb-link-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  text-decoration: none;
  color: var(--navy);
  background: var(--white);
  transition: background 0.18s;
  height: 100%;
  box-sizing: border-box;
}
/* 奇数個の最後はフル幅 */
.fsb-link-item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}
.fsb-link-item:hover { background: var(--pink-pale); }

.fsb-link-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pink-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--pink-main);
  transition: background 0.18s, color 0.18s;
}
.fsb-link-item:hover .fsb-link-icon { background: var(--pink-main); color: white; }

.fsb-link-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 2px;
  overflow: hidden;
  min-width: 0;
}
.fsb-link-title {
  font-size: 11px; font-weight: 700;
  color: var(--navy); line-height: 1.35;
  display: block;
  word-break: break-word;
  overflow-wrap: anywhere;
  white-space: normal;
}
.fsb-link-sub {
  font-size: 9px;
  color: var(--gray-text);
  line-height: 1.4;
  display: block;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* 矢印は2カラムグリッドでは非表示 */
.fsb-link-arrow { display: none; }

/* ================================================================
   レスポンシブ ≤ 900px → 1カラム縦積み
   ================================================================ */
@media (max-width: 900px) {
  .page-2col-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page-sidebar {
    position: static;
    max-height: none;
    overflow-y: visible;
  }
  /* SP：CTA レイアウト調整 */
  .fsb-cta { text-align: left; }
  .fsb-cta-title { font-size: 19px; }
}

@media (max-width: 640px) {
  .fsb-cta { padding: 21px 16px; }
  /* デフォルトがSPと同仕様のため追加指定なし */
}
