/* =============================================================
   CEOキッズアカデミー フランチャイズ（パートナー）募集ページ
   franchise.css  ―  fc-base.css の内容 + ページ固有スタイル
   -------------------------------------------------------------
   ・全スタイルは .fc-lp 配下にスコープする
   ・サイズ／余白／行間／字間／色は :root の変数で一括管理
   ・青／緑の切り替えは「色の切り替え」ブロックの3行だけ
   ============================================================= */

/* =============================================================
   変数定義（:root）
   ============================================================= */
:root {

  /* =========================================================
     ▼ 青／緑の切り替え：この3行をセットで差し替える
     ---------------------------------------------------------
     青で行く  → 下記のまま（var(--c-blue-*)）
     緑で行く  → 3行を var(--c-green-*) に書き換える
  ========================================================= */
  --brand-main: var(--c-green-main);
  --bg-page:    var(--c-green-page);
  --bg-section: var(--c-green-sec);

  /* ---- 青パターンの色定義 ---- */
  --c-blue-main: #1a5cd9;
  --c-blue-page: #f3f6fe;
  --c-blue-sec:  #ebf1fb;

  /* ---- 緑パターンの色定義 ---- */
  --c-green-main: #18a84d;
  --c-green-page: #f7fff9;
  --c-green-sec:  #eaf8ed;

  /* =========================================================
     ▼ 青緑共通カラー（差し替え不要）
  ========================================================= */
  --brand-deep:   #06145b;
  --brand-cta:    #fe8545;
  --bg-white:     #ffffff;
  --bg-tint:      #fcece5;
  --bg-tint-deep: #fad7c7;

  /* ---- テキスト色 ---- */
  --text-main: #333333;
  --text-head: var(--brand-deep);

  /* =========================================================
     ▼ フォントサイズ（PC）
  ========================================================= */
  --fs-note: 20px;
  --fs-body: 22px;
  --fs-lead: 24px;
  --fs-h3:   26px;
  --fs-h2:   40px;
  --fs-h1:   52px;

  /* =========================================================
     ▼ 行間
  ========================================================= */
  --lh-body: 1.8;
  --lh-head: 1.4;

  /* =========================================================
     ▼ 字間
  ========================================================= */
  --ls-body: 0;
  --ls-head: 0.02em;

  /* =========================================================
     ▼ 余白
  ========================================================= */
  --content-width: 1200px;  /* コンテンツ幅（テーマの.main_widthに合わせる）*/
  --space: 8px;
  --sec-pad-top:    80px;
  --sec-pad-bottom: 100px;
  --sec-pad-x:      60px;
}

/* =============================================================
   スマホ：変数だけを上書き
   ============================================================= */
@media (max-width: 768px) {
  :root {
    --fs-note: 14px;
    --fs-body: 16px;
    --fs-lead: 17px;
    --fs-h3:   20px;
    --fs-h2:   24px;
    --fs-h1:   28px;

    --sec-pad-top:    48px;
    --sec-pad-bottom: 56px;
    --sec-pad-x:      20px;
  }
}

/* =============================================================
   リセット／ベース（.fc-lp 配下）
   ============================================================= */
.fc-lp * {
  box-sizing: border-box;
}

.fc-lp {
  font-family: inherit;
  color: var(--text-main);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  overflow-x: hidden !important;
  background: var(--bg-page);
}

.fc-lp section {
  padding: 0;
}

/* コンテンツ幅を1200pxに制限する共通インナー */
.fc-lp .fc-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  width: 100%;
}

.fc-lp img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* WordPressテーマの p { text-align: justify } を打ち消す */
.fc-lp p {
  text-align: left !important;
}

/* =============================================================
   テーマCSS干渉の一括無効化（h2 span）
   ============================================================= */
.fc-lp h2 span {
  position: static;
  transform: none;
  -webkit-transform: none;
  opacity: 1;
  font-family: inherit;
  font-style: normal;
  color: inherit;
}

/* =============================================================
   共通：見出し
   ============================================================= */
.fc-lp .fc-h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
  font-weight: bold;
  color: var(--text-head);
}

.fc-lp .fc-h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
  font-weight: bold;
  color: var(--text-head);
  margin: 0 0 calc(var(--space) * 3);
}

.fc-lp .fc-h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-head);
  letter-spacing: var(--ls-head);
  font-weight: bold;
  color: var(--text-head);
  margin: 0 0 calc(var(--space) * 2);
}

/* =============================================================
   共通：本文・補足
   ============================================================= */
.fc-lp p {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-main);
  margin: 0 0 calc(var(--space) * 2);
}

.fc-lp .fc-lead {
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
}

.fc-lp .fc-note {
  font-size: var(--fs-note);
  line-height: var(--lh-body);
}

/* =============================================================
   共通：セクション背景ラッパー（-bg 末尾クラスに余白を一括適用）
   ============================================================= */
.fc-lp [class$="-bg"] {
  padding: var(--sec-pad-top) var(--sec-pad-x) var(--sec-pad-bottom);
}

/* =============================================================
   共通：ユーティリティ
   ============================================================= */
.fc-lp .fc-orange { color: var(--brand-cta); }
.fc-lp .fc-white  { color: var(--bg-white) !important; }
.fc-lp .fc-center { text-align: center !important; }

/* PC専用改行：PC表示 / SP非表示 */
.fc-lp .fc-br-pc { display: inline; }

/* SP専用改行：PC非表示 / SP表示 */
.fc-lp .fc-br-sp { display: none; }

/* SP専用ブロック改行：PCは1行で表示 */
.fc-lp .fc-br-sp-block { display: inline; }

/* =============================================================
   共通：ボタン
   ============================================================= */
.fc-lp .fc-btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--space) * 2.5);
  position: relative;
  background: var(--brand-main);
  color: var(--bg-white);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: var(--lh-head);
  text-decoration: none;
  padding: calc(var(--space) * 2.5) calc(var(--space) * 7) calc(var(--space) * 2.5) calc(var(--space) * 4);
  border-radius: calc(var(--space) * 1.5);
  transition: opacity 0.2s;
  min-width: 320px;
}

.fc-lp .fc-btn-main:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .fc-lp .fc-btn-main {
    min-width: unset;
    width: 100%;
    max-width: 400px;
    font-size: 20px;
  }
  .fc-lp .fc-btn-sub {
    min-width: unset;
    width: 100%;
    max-width: 400px;
  }
}

.fc-lp .fc-btn-main .fc-btn-arrow {
  position: absolute;
  right: calc(var(--space) * 3);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--bg-white);
  border-right: 3px solid var(--bg-white);
  flex-shrink: 0;
}

.fc-lp .fc-btn-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: calc(var(--space) * 1.5);
  background: var(--brand-cta);
  color: var(--bg-white);
  font-weight: bold;
  line-height: var(--lh-head);
  text-decoration: none;
  padding: calc(var(--space) * 1.5) calc(var(--space) * 7) calc(var(--space) * 1.5) calc(var(--space) * 4);
  border-radius: calc(var(--space) * 1.5);
  transition: opacity 0.2s;
  min-width: 320px;
}

.fc-lp .fc-btn-sub .fc-btn-arrow {
  position: absolute;
  right: calc(var(--space) * 3);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 18px;
  height: 18px;
  border-top: 3px solid var(--bg-white);
  border-right: 3px solid var(--bg-white);
  flex-shrink: 0;
}

.fc-lp .fc-btn-sub:hover {
  opacity: 0.85;
}

.fc-lp .fc-btn-sub-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.fc-lp .fc-btn-sub-main {
  font-size: var(--fs-h3);
  font-weight: bold;
}

.fc-lp .fc-btn-sub-note {
  font-size: var(--fs-note);
  font-weight: normal;
  opacity: 0.9;
}

.fc-lp .fc-btn-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* =============================================================
   共通：CTAブロック（ページ内3箇所で使い回す）
   ============================================================= */
.fc-lp .fc-cta-bg {
  background: var(--bg-tint);
}

.fc-lp .fc-cta {
  text-align: center;
}

.fc-lp .fc-cta-lead {
  text-align: center !important;
  font-weight: 500;
  color: var(--text-head);
  margin: 0 0 calc(var(--space) * 3);
}

.fc-lp .fc-cta-bg .fc-cta-lead {
  font-size: var(--fs-lead);
}

.fc-lp .fc-cta-btns {
  display: flex;
  gap: calc(var(--space) * 2);
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
}

.fc-lp .fc-finalcta-bg .fc-cta-btns .fc-btn-main,
.fc-lp .fc-finalcta-bg .fc-cta-btns .fc-btn-sub {
  flex: none;
  width: 450px;
  min-width: 0;
  justify-content: center;
}

.fc-lp .fc-cta-bg .fc-cta-btns .fc-btn-main,
.fc-lp .fc-cta-bg .fc-cta-btns .fc-btn-sub {
  flex: none;
  width: 60%;
  min-width: 0;
  justify-content: center;
}

.fc-lp .fc-finalcta-bg .fc-btn-main {
  font-size: 32px;
}


/* =============================================================
   MV：写真フル幅背景レイアウト
   ============================================================= */
.fc-lp .fc-mv-bg {
  background: var(--bg-white);
  max-width: none;
  width: 100%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.fc-lp .fc-mv-bg-photo {
  position: absolute;
  top: 0;
  right: 0;
  width: 49%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
}

.fc-lp .fc-mv-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-page) 55%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.fc-lp .fc-mv {
  max-width: var(--content-width);
  margin: 0 auto 0 200px;
  padding: var(--sec-pad-top) var(--sec-pad-x) var(--sec-pad-bottom) var(--sec-pad-x) !important;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: calc(var(--space) * 4);
  align-items: center;
  position: relative;
  z-index: 2;
}

/* 左カラム：PC用テキスト */
.fc-lp .fc-mv-text {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  text-align: center;
}

.fc-lp .fc-mv-text p {
  text-align: center !important;
}


.fc-lp .fc-mv-photo-wrap { display: none; }

/* 左カラム：メディア掲載テキスト */
.fc-lp .fc-mv-media {
  grid-column: 1;
  grid-row: 2;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: calc(var(--space) * 1);
  font-size: 32px;
  font-weight: bold;
  color: var(--text-head);
  margin: 0;
}

.fc-lp .fc-mv-laurel {
  width: 32px;
  height: auto;
  flex-shrink: 0;
  display: inline-block;
}

/* 左カラム：丸アイコン */
.fc-lp .fc-mv-icons {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  gap: calc(var(--space) * 5);
  justify-content: center;
}

.fc-lp .fc-mv-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(var(--space) * 1);
  text-align: center;
}

/* 丸アイコン本体 */
.fc-lp .fc-mv-icon-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--brand-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
}

.fc-lp .fc-mv-icon-circle img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.fc-lp .fc-mv-icon-label {
  font-size: 18px;
  font-weight: bold;
  color: var(--brand-deep);
  line-height: 1.4;
  text-align: center;
}

/* 左カラム：ボタンラッパー */
.fc-lp .fc-mv-btn-wrap {
  grid-column: 1;
  grid-row: 4;
  justify-self: stretch;
}

.fc-lp .fc-mv-btn-wrap .fc-btn-main {
  width: 100%;
  min-width: 0;
  justify-content: center;
}

/* キャッチ・アイブロウ・詳細 */
.fc-lp .fc-mv-catch {
  font-size: 48px;
  font-weight: bold;
  line-height: var(--lh-head);
  color: var(--text-head);
  margin: 0 0 calc(var(--space) * 2);
  text-align: center;
  letter-spacing: 2.5px;
}

.fc-lp .fc-mv-catch-big {
  display: inline;
  font-size: 80px;
  line-height: var(--lh-head);
}

.fc-lp .fc-mv-eyebrow {
  display: inline-block;
  border: 1.5px solid var(--brand-main);
  border-radius: 50px;
  background: transparent;
  color: var(--brand-main);
  font-size: var(--fs-lead);
  font-weight: bold;
  padding: calc(var(--space) * 0.75) calc(var(--space) * 2);
  margin: 0 0 calc(var(--space) * 1.5);
　width:100%;
}

.fc-lp .fc-mv-desc {
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-main);
  margin: 0;
}

/* PC/SP出し分け（PC時） */
.fc-lp .fc-pc-only { display: block; }
.fc-lp .fc-sp-only { display: none; }

/* MV：ブレイクポイント別 margin */

/* デフォルト非表示 */
.fc-lp .fc-mv-tablet-wrap {
  display: none;
}

@media (min-width: 769px) and (max-width: 1080px) {

  :root {
    --fs-h1: 36px;
    --fs-h2: 28px;
    --fs-h3: 22px;
    --fs-body: 18px;
    --fs-lead: 20px;
    --fs-note: 16px;
  }

  /* PC側のMV要素を非表示 */
  .fc-lp .fc-mv-bg::after,
  .fc-lp .fc-mv-bg::before {
    display: none;
  }

  .fc-lp .fc-mv-bg-photo {
    display: none !important;
  }

  .fc-lp .fc-mv-photo-wrap {
    display: none !important;
  }

  .fc-lp .fc-mv {
    visibility: hidden;
    height: 0;
    padding: 0 !important;
    margin: 0;
    overflow: hidden;
  }

  /* タブレット用ラッパー */
  .fc-lp .fc-mv-tablet-wrap {
    display: block;
    width: 100%;
  }

  /* 背景写真をcontentに設定・縦横比維持 */
  .fc-lp .fc-mv-tablet-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding-bottom: calc(100% * 1640 / 2048);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
  }

  /* テキストpng・ボタンを absolute で下部に配置 */
  .fc-lp .fc-mv-tablet-text,
  .fc-lp .fc-mv-tablet-btn {
    position: absolute;
  }

  .fc-lp .fc-mv-tablet-text {
    bottom: 25%;
    left: calc(var(--space) * 4);
    width: auto;
    max-width: 55%;
    height: auto;
    display: block;
  }

  .fc-lp .fc-mv-tablet-btn {
    bottom: 10%;
    left: calc(var(--space) * 4);
  }

  .fc-lp .fc-mv-tablet-btn .fc-btn-main {
    width: auto;
    min-width: 380px;
    font-size: 24px;
    justify-content: center;
  }

  /* 悩みセクション：写真を非表示・padding解除 */
  .fc-lp .fc-worry-photo {
    display: none !important;
  }

  .fc-lp .fc-worry-text {
    padding-right: 0 !important;
  }

  .fc-lp .fc-worry-text .fc-h2 {
    margin-right: 0;
  }

  /* ステップ：写真非表示・1カラム
  .fc-lp .fc-steps-photos {
    display: none !important;
  }

  .fc-lp .fc-steps {
    grid-template-columns: 1fr !important;
  } */

  /* 働き方・導入パターン：上2下1（幅揃え） */
  .fc-lp .fc-pattern-cards {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: calc(var(--space) * 3);
    max-width: none;
    margin: calc(var(--space) * 5) auto 0;
    justify-items: stretch;
  }

  /* 3枚目：上2枚と同幅で中央配置 */
  .fc-lp .fc-pattern-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc(50% - var(--space) * 1.5);
    max-width: none;
  }

  /* CTA */
  .fc-lp .fc-cta-btns { justify-content: center; }
  .fc-lp .fc-cta-bg .fc-cta-btns .fc-btn-main,
  .fc-lp .fc-cta-bg .fc-cta-btns .fc-btn-sub,
  .fc-lp .fc-finalcta-bg .fc-cta-btns .fc-btn-main,
  .fc-lp .fc-finalcta-bg .fc-cta-btns .fc-btn-sub { width: 100%; }
}
@media (min-width: 1081px) and (max-width: 1599px) {
  .fc-lp .fc-mv { margin: 0; }
}
@media (min-width: 1600px) and (max-width: 1959px) {
  .fc-lp .fc-mv { margin: 0 auto 0 100px; }
}
@media (min-width: 1960px) {
  .fc-lp .fc-mv { margin: 0 auto 0 200px; }
}

/* =============================================================
   MV：スマホ
   ============================================================= */
@media (max-width: 768px) {

  /* MVエリア全体の背景を薄緑に */
  .fc-lp .fc-mv-bg { background: var(--bg-page); overflow-x: hidden; max-width: 100%; }

  /* グラデ不要 */
  .fc-lp .fc-mv-bg::after { display: none; }

  /* PC背景写真を完全に非表示 */
  .fc-lp .fc-mv-bg-photo { display: none !important; }

  /* SP用 photo-wrap を表示に戻す */
  .fc-lp .fc-mv-photo-wrap {
    display: block !important;
    position: static;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: transparent;
  }

  .fc-lp .fc-mv-photo-wrap * {
    max-width: 100%;
  }

  /* 写真の上部50pxにキャッチが重なる */
  .fc-lp .fc-mv-photo {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    margin-top: -50px;
  }

  .fc-lp .fc-mv-sp-catch {
    position: relative;
    margin-bottom: 0;
    background: #F7FFF9;
    padding: calc(var(--space) * 2);
    text-align: center;
    z-index: 2;
    overflow: hidden;
  }

  .fc-lp .fc-mv-sp-catch p { text-align: center !important; line-height: 1.4; }

  .fc-lp .fc-mv-sp-catch .fc-mv-eyebrow {
    display: block;
    text-align: center;
    font-size: 16px;
    margin: 0 auto calc(var(--space) * 1.5);
    white-space: normal;
    line-height: 1.4;
  }

  .fc-lp .fc-mv-sp-media {
    position: static;
    background: transparent;
    padding: calc(var(--space) * 1.5) calc(var(--space) * 2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: calc(var(--space) * 1);
    font-size: 21px;
    font-weight: bold;
    color: var(--text-head);
  }

  .fc-lp .fc-mv-laurel {
    width: 20px;
    height: auto;
  }

  /* グリッドを1カラムに */
  .fc-lp .fc-mv {
    grid-template-columns: 1fr;
    padding: 0 !important;
    gap: 0;
    margin: 0;
  }

  .fc-lp .fc-mv-catch { font-size: var(--fs-h1); }
  .fc-lp .fc-mv-catch-big { font-size: 48px; }

  /* アイコン */
  .fc-lp .fc-mv-icons {
    justify-content: center;
    padding: 0 calc(var(--space) * 2) calc(var(--space) * 2);
    gap: calc(var(--space) * 2);
    max-width: 100%;
    overflow: hidden;
  }

  /* SP：アイコンサイズを小さく */
  .fc-lp .fc-mv-icon-circle {
    width: 100px;
    height: 100px;
  }

  .fc-lp .fc-mv-icon-circle img {
    width: 40px;
    height: 40px;
  }

  .fc-lp .fc-mv-icon-label {
    font-size: 12px;
    line-height: 1.1;
  }

  /* ボタン */
  .fc-lp .fc-mv-btn-wrap {
    padding: 0 calc(var(--space) * 2) calc(var(--space) * 3);
  }

  .fc-lp .fc-pc-only { display: none !important; }
  .fc-lp .fc-sp-only { display: block; }
}

/* =============================================================
   悩みセクション
   PC：縦長写真を右下にabsolute / SP：<picture>で横長に差し替え
   ============================================================= */
.fc-lp .fc-worry-bg {
  background: var(--bg-white);
}

.fc-lp .fc-worry {
  position: relative;
}

.fc-lp .fc-worry-text {
  padding-right: 310px;
}

.fc-lp .fc-worry-text .fc-h2 {
  margin-right: -320px;
}

.fc-lp .fc-worry-photo {
  position: absolute;
  right: 0px;
  bottom: 180px;
  width: 380px;
}

.fc-lp .fc-worry-list {
  list-style: none;
  padding: 0;
  margin: 0 0 calc(var(--space) * 3);
}

.fc-lp .fc-worry-list li {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--space) * 1.5);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  padding: calc(var(--space) * 1) 0;
}

.fc-lp .fc-worry-list li::before {
  display: none;
}

.fc-lp .fc-worry-check {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 4px;
}

.fc-lp .fc-worry-resolve {
  display: flex;
  align-items: center;
  gap: calc(var(--space) * 2);
  border: 2px solid var(--brand-cta);
  border-radius: calc(var(--space) * 1.5);
  background: var(--bg-white);
  padding: 20px;
  margin-top: calc(var(--space) * 3);
  width: 100%;
}

.fc-lp .fc-worry-bulb {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0;
  font-size: unset;
}

.fc-lp .fc-worry-resolve-big {
  font-size: 32px;
  font-weight: bold;
  line-height: var(--lh-head);
}

.fc-lp .fc-worry-resolve p {
  font-size: var(--fs-h3);
  font-weight: bold;
  color: var(--text-head);
  margin: 0;
  line-height: var(--lh-head);
}

/* =============================================================
   選ばれる理由（番号カード・数字が背景に溶ける）
   ============================================================= */
.fc-lp .fc-reason-bg {
  background: var(--brand-main);
}

/* 濃背景上のテキストは白系に */
.fc-lp .fc-reason-bg .fc-h2,
.fc-lp .fc-reason-bg .fc-lead,
.fc-lp .fc-reason-bg > p {
  color: var(--bg-white);
}

.fc-lp .fc-reason-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.fc-lp .fc-reason-cards {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space) * 2);
  margin-top: calc(var(--space) * 4);
}

.fc-lp .fc-reason-card {
  position: relative;
  background: var(--bg-white);
  border-radius: calc(var(--space) * 1.5);
  padding: calc(var(--space) * 3) calc(var(--space) * 3) calc(var(--space) * 3) calc(var(--space) * 8);
  margin-left: calc(var(--space) * 3);
  display: flex;
  align-items: center;
  gap: calc(var(--space) * 3);
}

.fc-lp .fc-reason-num {
  position: absolute;
  left: calc(var(--space) * -3);
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-main);
  color: var(--bg-white);
  font-size: var(--fs-h2);
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
}

.fc-lp .fc-reason-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  margin: 0;
  align-self: center;
}

.fc-lp .fc-reason-content {
  flex: 1;
}

.fc-lp .fc-reason-card .fc-h3 {
  color: var(--text-head);
  margin: 0 0 calc(var(--space) * 1);
}

.fc-lp .fc-reason-card p {
  margin: 0;
}

/* =============================================================
   働き方・導入パターン（飛び出すネイビーラベル）
   ============================================================= */
.fc-lp .fc-pattern-bg {
  background: var(--bg-section);
}

.fc-lp .fc-pattern-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--space) * 3);
  margin-top: calc(var(--space) * 5);
  align-items: stretch;
}

.fc-lp .fc-pattern-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background: var(--bg-white);
  border-radius: calc(var(--space) * 1.5);
  padding: calc(var(--space) * 6) calc(var(--space) * 3) calc(var(--space) * 3);
  margin-top: calc(var(--space) * 3);
}

.fc-lp .fc-pattern-label {
  position: absolute;
  top: calc(var(--space) * -2);
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-deep);
  color: var(--bg-white);
  font-size: var(--fs-note);
  font-weight: bold;
  line-height: var(--lh-head);
  white-space: normal;
  width: 75%;
  text-align: center;
  padding: calc(var(--space) * 1) calc(var(--space) * 4);
  border-radius: 50px;
  margin-bottom: calc(var(--space) * 4);
}

.fc-lp .fc-pattern-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: calc(var(--space) * 1);
  margin-bottom: calc(var(--space) * 2);
}

.fc-lp .fc-pattern-card .fc-h3 {
  color: var(--brand-main);
  text-align: center;
  min-height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 calc(var(--space) * 2);
}

/* 本文ラッパー */
.fc-lp .fc-pattern-body {
  margin-top: 0;
}

.fc-lp .fc-pattern-card p {
  font-size: var(--fs-body);
  color: var(--text-main);
  margin-top: 0;
}

/* =============================================================
   安心のサポート体制（開講前 / ≫ / 開講後）
   ============================================================= */
.fc-lp .fc-support-bg {
  background: var(--bg-white);
}

/* 見出し：左右に装飾画像 */
.fc-lp .fc-support-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(var(--space) * 3);
  margin-bottom: calc(var(--space) * 4);
}

.fc-lp .fc-support-title-deco {
  width: 24px;
  height: auto;
  flex-shrink: 0;
}

.fc-lp .fc-support-title-deco--right {
  transform: scaleX(-1);
}

.fc-lp .fc-support-wrap {
  position: relative;
}

/* 2カラム：gap 16px・矢印の absolute 基準 */
.fc-lp .fc-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(var(--space) * 2);
  align-items: stretch;
  position: relative;
}

/* カラム共通 */
.fc-lp .fc-support-col {
  border-radius: calc(var(--space) * 1.5);
  overflow: hidden;
}

/* 開講前：青枠・縦flex（3項目を均等に伸ばす） */
.fc-lp .fc-support-pre {
  border: 2px solid var(--brand-main);
  background: var(--bg-section);
  display: flex;
  flex-direction: column;
}

.fc-lp .fc-support-pre .fc-support-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fc-lp .fc-support-pre .fc-support-item {
  flex: 1;
}

/* 開講後：オレンジ枠 */
.fc-lp .fc-support-post {
  border: 2px solid var(--brand-cta);
  background: var(--bg-tint);
}

/* ヘッダー帯：逆台形（clip-path） */
.fc-lp .fc-support-col-header {
  text-align: center;
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--bg-white);
  padding: 0;
  letter-spacing: 0.1em;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 10% 100%);
  margin: 0 auto calc(var(--space) * 2);
  width: 40%;
}

.fc-lp .fc-support-pre-header {
  background: var(--brand-main);
}

.fc-lp .fc-support-post-header {
  background: var(--brand-cta);
}

/* サブテキスト */
.fc-lp .fc-support-col-sub {
  font-size: var(--fs-body) !important;
  color: var(--text-main);
  text-align: center !important;
  line-height: var(--lh-body);
  padding: calc(var(--space) * 1.5) calc(var(--space) * 2);
  margin: 0;
  font-weight: bold;
}

.fc-lp .fc-support-pre .fc-support-col-sub {
  color: var(--brand-main);
}

.fc-lp .fc-support-post .fc-support-col-sub {
  color: var(--brand-cta);
}

/* リスト */
.fc-lp .fc-support-list {
  list-style: none;
  padding: calc(var(--space) * 1) calc(var(--space) * 2) calc(var(--space) * 2);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--space) * 1.5);
}

/* 各項目：白い角丸カード */
.fc-lp .fc-support-item {
  display: flex;
  align-items: center;
  gap: calc(var(--space) * 2);
  background: var(--bg-white);
  border-radius: calc(var(--space) * 1);
  padding: calc(var(--space) * 2) calc(var(--space) * 2);
  font-size: var(--fs-body);
  color: var(--text-head);
  font-weight: 500;
}

/* アイコン画像 */
.fc-lp .fc-support-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
}

.fc-lp .fc-support-sub {
  color: var(--text-main);
  font-weight: normal;
}

/* 中央矢印：2カラム境界・縦中央に絶対配置 */
.fc-lp .fc-support-arrow-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.fc-lp .fc-support-arrow-img {
  width: 56px;
  height: auto;
}

/* =============================================================
   先輩パートナーの声（カードレイアウト）
   ============================================================= */
.fc-lp .fc-voice-bg {
  background: var(--brand-main);
}

.fc-lp .fc-voice-bg .fc-h2 {
  color: var(--bg-white);
  margin-bottom: 4px;
}

.fc-lp .fc-voice-bg .fc-lead {
  color: var(--bg-white);
  margin-bottom: 60px;
  margin-top: 0;
}

.fc-lp .fc-voice-cards {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space) * 2);
  margin-top: calc(var(--space) * 4);
}

.fc-lp .fc-voice-card {
  display: flex;
  align-items: center;
  gap: calc(var(--space) * 3);
  border-radius: calc(var(--space) * 1.5);
  padding: calc(var(--space) * 3);
}

.fc-lp .fc-voice-card--white {
  background: #fbfbf0;
}

.fc-lp .fc-voice-card--blue {
  background: var(--bg-section);
}

.fc-lp .fc-voice-photo {
  width: 86px;
  height: 100px;
  object-fit: cover;
  border-radius: calc(var(--space) * 1);
  flex-shrink: 0;
}

.fc-lp .fc-voice-body {
  flex: 1;
}

.fc-lp .fc-voice-title-row {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--space) * 1.5);
  margin-bottom: calc(var(--space) * 1);
}

.fc-lp .fc-voice-label {
  display: inline-block;
  background: var(--brand-cta);
  color: var(--bg-white);
  font-size: var(--fs-note);
  font-weight: bold;
  padding: calc(var(--space) * 0.5) calc(var(--space) * 1.5);
  border-radius: calc(var(--space) * 0.75);
  white-space: nowrap;
  flex-shrink: 0;
}

.fc-lp .fc-voice-card .fc-h3 {
  font-size: var(--fs-h3);
  color: var(--text-head);
  margin: 0;
}

.fc-lp .fc-voice-card p {
  font-size: var(--fs-body);
  color: var(--text-main);
  margin: 0;
}

/* =============================================================
   講師養成講座（YouTube iframe）
   ============================================================= */
.fc-lp .fc-instructor-bg {
  background: var(--bg-page);
}

.fc-lp .fc-instructor-video {
  width: 100%;
  max-width: 720px;
  margin: calc(var(--space) * 4) auto 0;
}

.fc-lp .fc-instructor-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  display: block;
  border-radius: calc(var(--space) * 1.5);
}

/* =============================================================
   収益シミュレーション（左：表 / 右：画像）
   ============================================================= */
.fc-lp .fc-simulation-bg {
  background: var(--bg-section);
}

.fc-lp .fc-simulation {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: calc(var(--space) * 4);
}

.fc-lp .fc-simulation-top {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: calc(var(--space) * 3);
  width: 90%;
  margin: 0 auto calc(var(--space) * 2);
}

.fc-lp .fc-simulation-lead {
  color: var(--brand-deep);
  font-size: var(--fs-lead);
  font-weight: normal;
  align-self: flex-end;
  margin: 0;
}

.fc-lp .fc-simulation-img {
  width: 150px;
  height: auto;
  flex-shrink: 0;
}

.fc-lp .fc-simulation-table {
  width: 90%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: calc(var(--space) * 1.5);
  border: 1px solid var(--brand-main);
  overflow: hidden;
}

.fc-lp .fc-simulation-table th {
  padding: calc(var(--space) * 1.5) calc(var(--space) * 2);
  font-size: var(--fs-body);
  line-height: var(--lh-head);
  border-right: 1px solid var(--brand-main);
  border-bottom: 1px solid var(--brand-main);
  border-top: none;
  border-left: none;
  text-align: center;
}

.fc-lp .fc-simulation-table td {
  padding: calc(var(--space) * 1.5) calc(var(--space) * 2);
  font-size: var(--fs-body);
  line-height: var(--lh-head);
  border-right: 1px solid var(--brand-main);
  border-bottom: 1px solid var(--brand-main);
  border-top: none;
  border-left: none;
  text-align: left;
}


.fc-lp .fc-simulation-table th:last-child,
.fc-lp .fc-simulation-table td:last-child {
  border-right: none;
}

.fc-lp .fc-simulation-table tbody tr:last-child td {
  border-bottom: none;
}

.fc-lp .fc-simulation-table thead th {
  background: var(--brand-main);
  color: var(--bg-white);
  font-weight: bold;
}

.fc-lp .fc-simulation-table tbody td {
  background: var(--bg-white);
  color: var(--brand-deep);
}

.fc-lp .fc-simulation-table td strong {
  color: var(--brand-deep);
}

.fc-lp .fc-simulation-table td:first-child {
  text-align: left;
}

/* 太字行 */
.fc-lp .fc-simulation-table .fc-bold-row td:first-child {
  font-weight: bold;
}

/* インデント行（字下げ・細字） */
.fc-lp .fc-simulation-table .fc-indent-row td:first-child {
  padding-left: calc(var(--space) * 4);
  font-weight: normal;
}

.fc-lp .fc-simulation-profit td {
  color: var(--brand-cta) !important;
}

.fc-lp .fc-simulation-profit td strong {
  font-weight: bold !important;
  color: var(--brand-cta) !important;
}

.fc-lp .fc-simulation-profit td:last-child {
  color: var(--brand-deep) !important;
  font-weight: normal !important;
}

/* =============================================================
   開校までのステップ（左タイムライン / 右写真）
   ============================================================= */
.fc-lp .fc-steps-bg {
  background: var(--bg-white);
}

.fc-lp .fc-steps {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: calc(var(--space) * 5);
  align-items: start;
  margin-top: calc(var(--space) * 4);
}

.fc-lp .fc-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

/* タイムライン縦線 */
.fc-lp .fc-steps-list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-main);
}

.fc-lp .fc-step-item {
  display: flex;
  align-items: flex-start;
  gap: calc(var(--space) * 2);
  padding: calc(var(--space) * 2) 0 calc(var(--space) * 2) calc(var(--space) * 7);
  position: relative;
  font-size: var(--fs-body);
}

.fc-lp .fc-step-item > span {
  font-size: var(--fs-body);
  font-weight: bold;
  line-height: var(--lh-head);
  color: var(--text-head);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* 丸ポチ */
.fc-lp .fc-step-item::before {
  content: "";
  position: absolute;
  left: 12px;
  top: calc(var(--space) * 2 + 12px);
  transform: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--brand-main);
}

.fc-lp .fc-step-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  margin-top: 2px;
}

.fc-lp .fc-step-item > span {
  font-size: var(--fs-body);
  font-weight: bold;
  line-height: var(--lh-head);
  color: var(--text-head);
}

.fc-lp .fc-steps-photos {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space) * 1);
  align-items: flex-start;
  padding-top: calc(var(--space) * 4);
}

.fc-lp .fc-steps-photo-circle:first-child {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.fc-lp .fc-steps-photo-circle:last-child {
  width: 230px;
  height: 230px;
  object-fit: cover;
  border-radius: 50%;
  align-self: flex-end;
}

.fc-lp .fc-steps-photo-circle {
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* =============================================================
   セクション見出し下余白の統一
   ============================================================= */
.fc-lp .fc-reason-bg .fc-lead,
.fc-lp .fc-pattern-bg .fc-h2,
.fc-lp .fc-support-title,
.fc-lp .fc-simulation-bg .fc-h2,
.fc-lp .fc-steps-bg .fc-h2,
.fc-lp .fc-faq-bg .fc-h2 {
  margin-bottom: 60px;
}

.fc-lp .fc-reason-bg .fc-h2 {
  margin-bottom: 4px;
}

/* =============================================================
   よくある質問（FAQ）
   白い角丸カード・Qラベル・シェブロン
   ============================================================= */
.fc-lp .fc-faq-bg {
  background: var(--bg-section);
}

.fc-lp .fc-faq-list {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space) * 2);
  max-width: 800px;
  margin: calc(var(--space) * 4) auto 0;
}

.fc-lp .fc-faq-item {
  background: var(--bg-white);
  border-radius: calc(var(--space) * 1.5);
  overflow: hidden;
}

.fc-lp .fc-faq-item summary {
  list-style: none;
}
.fc-lp .fc-faq-item summary::-webkit-details-marker {
  display: none;
}

.fc-lp .fc-faq-q {
  display: flex;
  align-items: center;
  gap: calc(var(--space) * 2);
  padding: calc(var(--space) * 2.5) calc(var(--space) * 3);
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: bold;
  color: var(--text-head);
}

.fc-lp .fc-faq-q-label {
  font-size: var(--fs-h3);
  font-weight: bold;
  color: var(--brand-main);
  flex-shrink: 0;
  line-height: 1;
}

.fc-lp .fc-faq-q-text {
  flex: 1;
}

.fc-lp .fc-faq-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--brand-main);
  border-bottom: 3px solid var(--brand-main);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform 0.2s;
  margin-top: -4px;
}

.fc-lp .fc-faq-item[open] .fc-faq-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.fc-lp .fc-faq-a {
  padding: 0 calc(var(--space) * 3) calc(var(--space) * 2.5) calc(var(--space) * 7);
  border-top: 1px solid var(--bg-section);
}

.fc-lp .fc-faq-a p {
  font-size: var(--fs-body);
  color: var(--text-main);
  margin: calc(var(--space) * 2) 0 0;
}

.fc-lp .fc-step-highlight {
  font-size: calc(var(--fs-body) * 1.3);
  font-weight: bold;
  line-height: var(--lh-head);
}

/* =============================================================
   最終CTA
   ============================================================= */
.fc-lp .fc-finalcta-bg {
  background: var(--bg-tint);
}

.fc-lp .fc-finalcta-lead {
  color: var(--brand-deep);
  text-align: center !important;
  font-weight: normal;
}

.fc-lp .fc-finalcta-bg .fc-h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-head);
  margin-bottom: calc(var(--space) * 3);
}

/* =============================================================
   スマホ追加対応（≤768px）
   ============================================================= */
@media (max-width: 768px) {

  /* 悩み：写真をstaticで下に戻す */
  .fc-lp .fc-worry-text {
    padding-right: 0;
  }
  .fc-lp .fc-worry-photo {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: calc(var(--space) * 2) 0 calc(var(--space) * 3);
    display: block;
  }

  .fc-lp .fc-worry-photo img {
    width: 60%;
    height: auto;
    border-radius: calc(var(--space) * 1);
    margin: 0 auto;
    display: block;
  }

  /* 悩み：見出し中央揃え */
  .fc-lp .fc-worry-text .fc-h2 {
    text-align: center;
    margin-right: 0;
  }

  /* 悩み：オレンジ枠ボックス中央揃え */
  .fc-lp .fc-worry-resolve {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: calc(var(--space) * 2);
    gap: calc(var(--space) * 1);
  }

  .fc-lp .fc-worry-bulb {
    font-size: 32px;
    padding: 0;
  }

  .fc-lp .fc-worry-resolve p {
    font-size: 16px;
    text-align: center !important;
    margin: 0;
  }

  .fc-lp .fc-worry-resolve-big {
    font-size: 24px;
  }

  .fc-lp .fc-finalcta-bg .fc-btn-main {
    font-size: 24px;
  }

  /* SP専用改行の切り替え */
  .fc-lp .fc-br-pc { display: none; }
  .fc-lp .fc-br-sp { display: inline; }
  .fc-lp .fc-br-sp-block {
    display: block;
  }
  .fc-lp .fc-support-col-sub {
    text-align: center !important;
  }

  .fc-lp .fc-support-item {
    padding: calc(var(--space) * 0.5) calc(var(--space) * 2);
  }

  /* CTA：ボタン中央揃え・幅100% */
  .fc-lp .fc-cta-btns {
    justify-content: center;
  }
  .fc-lp .fc-cta-btns .fc-btn-main,
  .fc-lp .fc-cta-btns .fc-btn-sub,
  .fc-lp .fc-finalcta-bg .fc-cta-btns .fc-btn-main,
  .fc-lp .fc-finalcta-bg .fc-cta-btns .fc-btn-sub {
    flex: none;
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .fc-lp .fc-cta-bg .fc-cta-btns .fc-btn-main,
  .fc-lp .fc-cta-bg .fc-cta-btns .fc-btn-sub {
    flex: none;
    width: 90%;
    min-width: 0;
    justify-content: center;
  }

  /* 選ばれる理由：数字の丸は上辺から飛び出す・gap で食い込み防止 */
  .fc-lp .fc-reason-cards {
    gap: calc(var(--space) * 4);
  }
  .fc-lp .fc-reason-card {
    padding: calc(var(--space) * 5) calc(var(--space) * 3) calc(var(--space) * 3);
    margin-left: 0;
    flex-direction: column;
    align-items: center;
  }
  .fc-lp .fc-reason-num {
    position: absolute;
    left: 50%;
    top: calc(var(--space) * -3);
    transform: translateX(-50%);
  }
  .fc-lp .fc-reason-card .fc-h3 {
    text-align: center;
  }
  .fc-lp .fc-reason-card p {
    text-align: center;
  }

  /* 働き方：縦積み */
  .fc-lp .fc-pattern-cards {
    grid-template-columns: 1fr;
  }

  /* サポート体制：縦積み */
  .fc-lp .fc-support {
    grid-template-columns: 1fr;
    gap: calc(var(--space) * 2);
  }
  .fc-lp .fc-support-arrow-wrap {
    display: none;
  }

  /* 先輩パートナーの声：カードを縦積み・写真を中央に */
  .fc-lp .fc-voice-card {
    flex-direction: column;
    align-items: center;
  }
  .fc-lp .fc-voice-photo {
    margin: 0 auto;
    display: block;
  }
  .fc-lp .fc-voice-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(var(--space) * 0.75);
  }

  /* 収益シミュレーション：1カラム・画像を上に */
  .fc-lp .fc-simulation-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .fc-lp .fc-simulation-img {
    order: -1;
    margin: 0 auto;
    width: 80px;
  }
  .fc-lp .fc-simulation-lead {
    order: 1;
    text-align: center !important;
  }

  /* 収益シミュレーション：表を全幅・文字サイズを小さく・インデントなし */
  .fc-lp .fc-simulation-table {
    width: 100%;
  }
  .fc-lp .fc-simulation-table th,
  .fc-lp .fc-simulation-table td {
    font-size: 14px;
    padding: calc(var(--space) * 1) calc(var(--space) * 1);
  }
  .fc-lp .fc-simulation-table .fc-indent-row td:first-child {
    padding-left: calc(var(--space) * 1.5);
  }

  /* 備考列のフォントを小さく */
  .fc-lp .fc-simulation-table td:last-child,
  .fc-lp .fc-simulation-table th:last-child {
    font-size: 12px;
  }

  /* 列幅：項目35% / 金額25% / 備考35% */
  .fc-lp .fc-simulation-table td:first-child,
  .fc-lp .fc-simulation-table th:first-child {
    width: 35%;
  }
  .fc-lp .fc-simulation-table td:nth-child(2),
  .fc-lp .fc-simulation-table th:nth-child(2) {
    width: 25%;
  }
  .fc-lp .fc-simulation-table td:nth-child(3),
  .fc-lp .fc-simulation-table th:nth-child(3) {
    width: 35%;
  }

  /* ステップ：1カラム
  .fc-lp .fc-steps {
    grid-template-columns: 1fr;
  }
  .fc-lp .fc-steps-photos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: calc(var(--space) * 2);
    padding-top: 0;
    max-width: 80%; 
    margin: 0 auto;
  }
  .fc-lp .fc-steps-photo-circle {
    width: calc(50% - var(--space));
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
  }
  .fc-lp .fc-steps-photo-circle:first-child,
  .fc-lp .fc-steps-photo-circle:last-child {
    width: calc(50% - var(--space));
    height: auto;
  } */

  /* パターンカード */
  .fc-lp .fc-pattern-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background: var(--bg-white);
    border-radius: calc(var(--space) * 1.5);
    padding: calc(var(--space) * 3) calc(var(--space) * 3) calc(var(--space) * 2);
    margin-top: calc(var(--space) * 3);
  }

  .fc-lp .fc-pattern-card .fc-h3 {
    color: var(--brand-main);
    text-align: center;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  /* 声カード：テキスト中央揃え */
  .fc-lp .fc-voice-body {
    flex: 1;
    text-align: center;
  }

  .fc-lp .fc-voice-label {
    display: inline-block;
    background: var(--brand-cta);
    color: var(--bg-white);
    font-size: var(--fs-note);
    font-weight: bold;
    padding: calc(var(--space) * 0.5) calc(var(--space) * 1.5);
    border-radius: calc(var(--space) * 0.75);
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0 auto;
  }

  .fc-lp .fc-voice-card .fc-h3 {
    text-align: center;
    margin: 0 auto;
  }
}

/* =============================================================
   開校までのステップ：650px以下でスマホ表示に切り替え
   ============================================================= */
@media (max-width: 650px) {
  .fc-lp .fc-steps {
    grid-template-columns: 1fr;
  }
  .fc-lp .fc-steps-photos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: calc(var(--space) * 2);
    padding-top: 0;
    max-width: 80%;
    margin: 0 auto;
  }
  .fc-lp .fc-steps-photo-circle,
  .fc-lp .fc-steps-photo-circle:first-child,
  .fc-lp .fc-steps-photo-circle:last-child {
    width: calc(50% - var(--space));
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
  }
}

@media (min-width: 650px) and (max-width: 950px) {
.fc-lp .fc-steps {
grid-template-columns: 1fr 250px
}
}

@media (max-width: 390px) {
  .fc-lp .fc-mv-catch {
    font-size: 22px;
  }

  .fc-lp .fc-mv-catch-big {
    font-size: 34px;
  }

  .fc-lp .fc-mv-sp-catch .fc-mv-eyebrow {
    display: block;
    text-align: center;
    font-size: 16px;
    margin: 0 auto calc(var(--space) * 1.5);
    white-space: normal;
    line-height: 1.4;
  }

  .fc-lp .fc-mv-desc {
    font-size: 14px;
  }

  .fc-lp .fc-finalcta-bg .fc-btn-main {
    font-size: 20px;
  }

  .fc-lp .fc-worry-resolve p {
    font-size: 14px;
  }

  .fc-lp .fc-worry-resolve-big {
    font-size: 20px;
  }
	.fc-lp .fc-btn-main {
    font-size: 18px;
  }
	
	.fc-lp .fc-btn-main .fc-btn-arrow {
    width: 10px;
    height: 10px;
	}
	.fc-lp .fc-btn-main {
    gap: calc(var(--space) * 1.5);
	}
	.fc-lp .fc-btn-icon{
    width: 22px;
    height: 22px;
}
	.fc-lp .fc-btn-sub-main {
    font-size: 19px;
	}
}

@media (min-width:1950px) {
.fc-lp .fc-mv {grid-template-columns: 3fr 0.5fr; padding: 100px var(--sec-pad-x) var(--sec-pad-bottom) var(--sec-pad-x) !important;}
.fc-lp .fc-mv-catch-big {font-size: 100px;}
.fc-lp .fc-mv-eyebrow { font-size: 30px; }
.fc-lp .fc-mv-btn-wrap .fc-btn-main {margin-top: 40px;}
.fc-lp .fc-mv-btn-wrap {margin: 0 8%;}
}