/* =========================================================
   HERO - COMPLETE REPLACE (Front page / top-lp only)
   - 右下ぼかし（発光/円/ブロブ）なし
   - 文字は “右寄せ & 少し下げる”
   - 白い四角パネルは使わない（帯だけうっすら）
   - 見出しは #3165a8（ブランド青）
   - オレンジ→ピンクの下線は “長め”
   - 既存の ::before/::after 装飾を全部止めてから作る
========================================================= */

/* 0) HERO土台 */
.top-lp #top.top-hero{
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;

  /* 写真：歪ませずズーム（人物を少し大きく） */
  background-size: 125% auto !important;     /* 115〜145で調整 */
  background-position: 20% 45% !important;   /* 15〜30%で微調整 */
  background-repeat: no-repeat !important;
}

/* 1) 既存の装飾（円/ブロブ/オーバーレイ/帯）を全停止 */
.top-lp #top.top-hero::before,
.top-lp #top.top-hero::after,
.top-lp #top.top-hero .top-hero__content::before,
.top-lp #top.top-hero .top-hero__content::after,
.top-lp #top.top-hero .top-hero__inner::before,
.top-lp #top.top-hero .top-hero__inner::after{
  content: none !important;
  display: none !important;
  background: none !important;
}

/* 2) テキスト全体の位置：右寄せ & 少し下げる（人物に被せない） */
.top-lp #top.top-hero .top-hero__content{
  min-height: clamp(440px, 55vh, 600px) !important;
  display: grid !important;
  justify-items: end !important;
  align-items: end !important;

  /* “縦に下げたい”は上を増やす */
  padding: clamp(56px, 8vh, 110px) 0 clamp(40px, 7vh, 80px) !important;
}

/* 3) 文字ブロック（外側の白パネルは作らない） */
.top-lp #top.top-hero .top-hero__inner{
  width: min(680px, 92%) !important;
  margin-right: clamp(14px, 6vw, 72px) !important;
  text-align: left !important;

  /* ここは “透明” */
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* 4) 見出し＋本文の背後だけ、うっすら“帯”を敷く（白板じゃない） */
.top-lp #top.top-hero .top-hero__headline,
.top-lp #top.top-hero .top-hero__tagline{
  display: inline-block !important;
  border-radius: 18px !important;

  /* うっすらガラス帯（昔の白板にならない濃さ） */
  background: rgba(255,255,255,0.42) !important;
  border: 1px solid rgba(49,101,168,0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;

  box-shadow: 0 18px 50px rgba(0,0,0,0.08) !important;
}

/* 5) 上のピル（折り返しが気になるやつ） */
.top-lp #top.top-hero .top-hero__subcopy{
  display: inline-block !important;
  white-space: nowrap !important;  /* PCは1行固定 */
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.55) !important;
  border: 1px solid rgba(49,101,168,0.16) !important;

  color: #3165a8 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  margin: 0 0 14px !important;
}

/* 6) 見出し（青にする・古い影やフィルターを完全に殺す） */
.top-lp #top.top-hero .top-hero__headline{
  padding: 18px 20px 16px !important;
  margin: 0 0 14px !important;
}

.top-lp #top.top-hero .top-hero__main-text,
.top-lp #top.top-hero .top-hero__main-text *{
  color: #3165a8 !important;
  -webkit-text-fill-color: #3165a8 !important;

  text-shadow: none !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;

  font-weight: 900 !important;
  line-height: 1.1 !important;
  letter-spacing: 0.01em !important;
  font-size: clamp(40px, 4.8vw, 64px) !important;
}

/* 7) 下線（オレンジ→ピンク）※長めにする */
.top-lp #top.top-hero .top-hero__main-text{
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 12px !important;
}

.top-lp #top.top-hero .top-hero__main-text::after{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 2px !important;

  width: min(420px, 90%) !important;  /* ←ここが“長さ” */
  height: 8px !important;
  border-radius: 999px !important;

  background: linear-gradient(90deg, #E39B2F 0%, #ff4fa3 100%) !important;
  opacity: 0.95 !important;
  z-index: -1 !important; /* 文字の後ろ */
}

/* 8) 本文（読みやすい濃いめグレー青） */
.top-lp #top.top-hero .top-hero__tagline{
  padding: 14px 18px !important;
  margin: 0 0 18px !important;
  color: rgba(18, 44, 86, 0.82) !important;
  font-weight: 700 !important;
  line-height: 1.9 !important;
  text-shadow: none !important;
}

/* 9) CTA（既存のオレンジを主役のまま、少しだけ今っぽく） */
.top-lp #top.top-hero .top-hero__cta{
  box-shadow: 0 14px 30px rgba(227,155,47,0.22) !important;
  border-radius: 14px !important;
}

/* 10) SP（スマホは折り返し許容 & 右寄せ弱める） */
@media (max-width: 768px){
  .top-lp #top.top-hero{
    background-size: 155% auto !important;
    background-position: 18% 35% !important;
  }

  .top-lp #top.top-hero .top-hero__content{
    justify-items: center !important;
    padding: 64px 0 52px !important;
  }

  .top-lp #top.top-hero .top-hero__inner{
    margin-right: 0 !important;
    width: min(680px, 92%) !important;
  }

  .top-lp #top.top-hero .top-hero__subcopy{
    white-space: normal !important; /* スマホは安全に折り返しOK */
  }

  .top-lp #top.top-hero .top-hero__main-text::after{
    width: min(320px, 90%) !important;
    height: 7px !important;
  }
}

/* ================================
   Hero 改善CSS（SWELL / トップのみ）
   置き場所：swell_child/assets/css/lp-overrides.css
   ※セレクタは SWELL で出がちなものを広めに拾っています
================================ */

/* トップページだけ */
body.home {
  --ds-accent: #de982f;          /* CTA色 */
  --ds-blue: #2f66c6;            /* 見出し青（必要なら調整） */
  --ds-panel: rgba(255, 255, 255, 0.90);
  --ds-panel-strong: rgba(255, 255, 255, 0.94);
  --ds-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
  --ds-radius: 18px;
  --ds-text: #17324d;
}

/* 1) Heroの「対象範囲」：SWELLでありがちなHeroラッパーをまとめて指定 */
body.home :is(
  .p-mainVisual,
  .p-mainVisual__inner,
  .p-hero,
  .top-hero,
  .c-hero,
  .l-topHead,
  .top-lp
) {
  position: relative;
}

/* 2) 背景に薄いオーバーレイ（文字の可読性UP / 崩しにくい） */
body.home :is(.p-mainVisual, .p-hero, .top-hero, .c-hero, .l-topHead, .top-lp)::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* 画像上の白飛び/コントラスト不足を補正 */
  background:
    radial-gradient(1200px 600px at 35% 45%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 55%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.08) 55%, rgba(0, 0, 0, 0.18));
  z-index: 0;
}

/* 3) Hero内のコンテンツを前面に */
body.home :is(.p-mainVisual, .p-hero, .top-hero, .c-hero, .l-topHead, .top-lp) * {
  position: relative;
  z-index: 1;
}

/* 4) 見出し/キャッチの“白パネル”を上品に（角丸・影・余白） */
body.home :is(.p-mainVisual__catch, .p-mainVisual__content, .p-hero__content, .top-hero__content, .c-hero__content, .l-topHead__content, .top-lp__content) {
  max-width: 760px;
  margin-left: clamp(16px, 5vw, 64px);
  margin-right: 16px;
}

/* メイン見出しのパネル（画像の白枠っぽいところ想定） */
body.home :is(.p-mainVisual__catch, .p-hero__catch, .top-hero__catch, .c-hero__catch, .l-topHead__catch, .top-lp__catch) {
  background: var(--ds-panel-strong);
  border-radius: var(--ds-radius);
  box-shadow: var(--ds-shadow);
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2.6vw, 34px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* 5) 小さなピル（「ビジネスパーソンのための…」）を整える */
body.home :is(.p-mainVisual__label, .p-hero__label, .top-hero__label, .c-hero__label, .l-topHead__label, .top-lp__label, .hero-label, .mv-label) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: clamp(12px, 1.3vw, 14px);
  color: var(--ds-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(47, 102, 198, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  margin-bottom: 12px;
}

/* 6) メイン見出し（大きい青文字） */
body.home :is(.p-mainVisual__catch h1, .p-mainVisual__catch .c-title, .p-hero__catch h1, .top-hero__catch h1, .c-hero__catch h1, .l-topHead__catch h1, .top-lp__catch h1, .hero-title, .mv-title) {
  color: var(--ds-blue);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0.02em;
  font-size: clamp(34px, 4.8vw, 64px);
  margin: 0;
  text-wrap: balance;
}

/* 7) 見出し下のアクセントライン（スクショの下線イメージ） */
body.home :is(.p-mainVisual__catch h1, .p-hero__catch h1, .top-hero__catch h1, .c-hero__catch h1, .l-topHead__catch h1, .top-lp__catch h1, .hero-title, .mv-title) em,
body.home :is(.p-mainVisual__catch h1, .p-hero__catch h1, .top-hero__catch h1, .c-hero__catch h1, .l-topHead__catch h1, .top-lp__catch h1, .hero-title, .mv-title) strong {
  font-style: normal;
}
body.home :is(.p-mainVisual__catch, .p-hero__catch, .top-hero__catch, .c-hero__catch, .l-topHead__catch, .top-lp__catch) .ds-underline {
  display: block;
  height: 6px;
  border-radius: 999px;
  margin-top: 10px;
  background: linear-gradient(90deg, var(--ds-accent), #f2c25e, #ff5aa3);
}

/* 8) サブコピー（下の説明文の白ボックス想定） */
body.home :is(.p-mainVisual__lead, .p-mainVisual__text, .p-hero__lead, .top-hero__lead, .c-hero__lead, .l-topHead__lead, .top-lp__lead, .hero-lead, .mv-lead) {
  background: var(--ds-panel);
  border-radius: calc(var(--ds-radius) - 4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 14px 18px;
  margin-top: 12px;
  color: var(--ds-text);
  font-weight: 600;
  line-height: 1.75;
  font-size: clamp(14px, 1.5vw, 16px);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* 9) CTA（ボタン）色を #de982f へ統一（Hero内だけに寄せる） */
body.home :is(.p-mainVisual, .p-hero, .top-hero, .c-hero, .l-topHead, .top-lp)
  :is(.swl-button, .c-btn, a[class*="btn"]) {
  background: var(--ds-accent);
  border-color: var(--ds-accent);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(222, 152, 47, 0.34);
  padding: 14px 22px;
  transition: transform 0.12s ease, filter 0.12s ease, box-shadow 0.12s ease;
  text-decoration: none;
}

body.home :is(.p-mainVisual, .p-hero, .top-hero, .c-hero, .l-topHead, .top-lp)
  :is(.swl-button, .c-btn, a[class*="btn"]):hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(222, 152, 47, 0.42);
}

/* 10) CTAの“置き方”を安定させる（下に行き過ぎ/被り対策） */
body.home :is(.p-mainVisual__btn, .p-hero__btn, .top-hero__btn, .c-hero__btn, .l-topHead__btn, .top-lp__btn, .hero-cta, .mv-cta) {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* 11) モバイル最適化（崩れやすいポイントだけ最小） */
@media (max-width: 768px) {
  body.home :is(.p-mainVisual__catch, .p-hero__catch, .top-hero__catch, .c-hero__catch, .l-topHead__catch, .top-lp__catch) {
    margin-left: 16px;
    margin-right: 16px;
    padding: 16px 16px;
  }

  body.home :is(.p-mainVisual__lead, .p-mainVisual__text, .p-hero__lead, .top-hero__lead, .c-hero__lead, .l-topHead__lead, .top-lp__lead, .hero-lead, .mv-lead) {
    margin-left: 16px;
    margin-right: 16px;
  }

  body.home :is(.p-mainVisual, .p-hero, .top-hero, .c-hero, .l-topHead, .top-lp)
    :is(.swl-button, .c-btn, a[class*="btn"]) {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
  }
}



/* =========================================================
   HERO 改善（命中版 / top-hero 固定）
   - 装飾を止める（丸/ブロブ/擬似要素）
   - 文字ブロックを右寄せ・少し下げ
   - 見出しの可読性UP（薄いガラス帯）
   - CTAを #de982f に統一
========================================================= */

/* Heroラッパーを確定：id=top かつ class=top-hero を想定（OVERRIDE由来） */
.top-lp #top.top-hero{
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;

  /* 背景：歪ませずズーム（必要なら数値調整） */
  background-size: 125% auto !important;
  background-position: 20% 45% !important;
  background-repeat: no-repeat !important;
}

/* Hero内の擬似要素＆装飾を停止（“右下の光”などを止める） */
.top-lp #top.top-hero::before,
.top-lp #top.top-hero::after,
.top-lp #top.top-hero *::before,
.top-lp #top.top-hero *::after{
  /* 強めに止める：副作用が出たら scope を狭める */
  box-shadow: none !important;
}

/* 特定の装飾が擬似要素で出ている場合は「非表示」も併用 */
.top-lp #top.top-hero::before,
.top-lp #top.top-hero::after{
  content: none !important;
  display: none !important;
  background: none !important;
}

/* コンテンツ位置：右寄せ＆少し下げ（崩しにくいグリッド） */
.top-lp #top.top-hero .top-hero__content{
  min-height: clamp(440px, 55vh, 620px) !important;
  display: grid !important;
  justify-items: end !important;
  align-items: end !important;
  padding: clamp(58px, 8vh, 120px) 0 clamp(42px, 7vh, 86px) !important;
}

/* 文字ブロック幅と余白 */
.top-lp #top.top-hero .top-hero__inner{
  width: min(720px, 92%) !important;
  margin-right: clamp(14px, 6vw, 72px) !important;
  text-align: left !important;
}

/* 上のピル（ビジネスパーソン…） */
.top-lp #top.top-hero .top-hero__subcopy{
  display: inline-block !important;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.60) !important;
  border: 1px solid rgba(49,101,168,0.16) !important;
  color: #3165a8 !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  margin: 0 0 14px !important;
}

/* 見出しの“ガラス帯” */
.top-lp #top.top-hero .top-hero__headline{
  display: inline-block !important;
  padding: 18px 20px 16px !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,0.44) !important;
  border: 1px solid rgba(49,101,168,0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08) !important;
  margin: 0 0 14px !important;
}

/* 見出しテキスト（青） */
.top-lp #top.top-hero .top-hero__main-text,
.top-lp #top.top-hero .top-hero__main-text *{
  color: #3165a8 !important;
  -webkit-text-fill-color: #3165a8 !important;
  text-shadow: none !important;
  filter: none !important;
  opacity: 1 !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0.01em !important;
  font-size: clamp(40px, 4.8vw, 64px) !important;
}

/* 下線（オレンジ→ピンク） */
.top-lp #top.top-hero .top-hero__main-text{
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 12px !important;
}
.top-lp #top.top-hero .top-hero__main-text::after{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 2px !important;
  width: min(420px, 92%) !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #de982f 0%, #ff4fa3 100%) !important;
  opacity: 0.95 !important;
  z-index: -1 !important;
}

/* 説明文の“ガラス帯” */
.top-lp #top.top-hero .top-hero__tagline{
  display: inline-block !important;
  padding: 14px 18px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,0.46) !important;
  border: 1px solid rgba(49,101,168,0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08) !important;
  margin: 0 0 18px !important;

  color: rgba(18, 44, 86, 0.84) !important;
  font-weight: 700 !important;
  line-height: 1.7 !important;
  text-shadow: none !important;
}

/* CTA（SWELLボタン系をまとめて命中） */
.top-lp #top.top-hero :is(
  .top-hero__cta,
  .swl-button,
  .c-btn,
  a.swell-block-button__link,
  a.wp-block-button__link,
  .wp-block-button__link,
  a[class*="btn"]
){
  background: #de982f !important;
  border-color: #de982f !important;
  color: #fff !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  border-radius: 14px !important;
  box-shadow: 0 14px 30px rgba(222,152,47,0.22) !important;
  text-decoration: none !important;
}

/* CTA hover */
.top-lp #top.top-hero :is(
  .top-hero__cta,
  .swl-button,
  .c-btn,
  a.swell-block-button__link,
  a.wp-block-button__link,
  .wp-block-button__link,
  a[class*="btn"]
):hover{
  filter: brightness(0.97) !important;
  transform: translateY(-1px) !important;
}

/* SP調整 */
@media (max-width: 768px){
  .top-lp #top.top-hero{
    background-size: 155% auto !important;
    background-position: 18% 35% !important;
  }
  .top-lp #top.top-hero .top-hero__content{
    justify-items: center !important;
    padding: 64px 0 52px !important;
  }
  .top-lp #top.top-hero .top-hero__inner{
    margin-right: 0 !important;
    width: min(720px, 92%) !important;
  }
  .top-lp #top.top-hero .top-hero__main-text::after{
    width: min(320px, 92%) !important;
    height: 7px !important;
  }
  .top-lp #top.top-hero :is(
    .top-hero__cta,
    .swl-button,
    .c-btn,
    a.swell-block-button__link,
    a.wp-block-button__link,
    .wp-block-button__link,
    a[class*="btn"]
  ){
    width: 100% !important;
    justify-content: center !important;
  }
}

/* =========================================================
   調整①：文字ブロック（青で囲った部分）を「右下」に寄せる
   調整②：CTAボタンの2行折返しを解消して“きれいに”
   ※ lp-overrides.css の末尾に追記（DEBUG札の下でOK）
========================================================= */

/* 1) 文字ブロック全体を右下へ（PC） */
.top-lp #top.top-hero .top-hero__content{
  /* 右寄せ＆下寄せは維持しつつ、余白で“右下”へ寄せる */
  justify-items: end !important;
  align-items: end !important;

  /* ここが効きます：右と下の余白を増やす */
  padding-right: clamp(16px, 6vw, 96px) !important;
  padding-bottom: clamp(24px, 6vh, 80px) !important;
}

/* ブロック自体も少し右下へ（微調整：数値は好みで） */
.top-lp #top.top-hero .top-hero__inner{
  margin-right: 0 !important; /* 二重で右に行きすぎるのを防ぐ */
  transform: translate(clamp(0px, 2vw, 28px), clamp(0px, 2vh, 22px)) !important;
}

/* 2) CTAの“2行に割れる”のを止める：CTAコンテナを横並びに固定（PC） */
.top-lp #top.top-hero :is(.top-hero__btn, .top-hero__ctaWrap, .top-hero__cta-area, .top-hero__buttons, .top-hero__ctas){
  display: flex !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;         /* ← 折り返し禁止 */
  align-items: center !important;
  justify-content: flex-start !important;
  margin-top: 14px !important;
}

/* CTAボタン（リンク/ボタンブロック含む）を“1行表示”に */
.top-lp #top.top-hero :is(
  .top-hero__cta,
  .swl-button,
  .c-btn,
  a.swell-block-button__link,
  a.wp-block-button__link,
  .wp-block-button__link,
  a[class*="btn"]
){
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  white-space: nowrap !important;       /* ← 文字を折り返さない */
  line-height: 1 !important;
  padding: 14px 22px !important;

  /* “きれい”寄せ：角丸＆影は控えめに上品に */
  border-radius: 999px !important;
  box-shadow: 0 12px 26px rgba(222,152,47,0.22) !important;
}

/* ボタン内のspan等が折り返し原因になるケースにも保険 */
.top-lp #top.top-hero :is(
  .top-hero__cta,
  .swl-button,
  .c-btn,
  a.swell-block-button__link,
  a.wp-block-button__link,
  .wp-block-button__link,
  a[class*="btn"]
) *{
  white-space: nowrap !important;
}

/* 3) 右側に出てる“小さなオレンジ要素”がCTAの一部なら消す（不要ならON）
   ※これが別要素だった場合に備えて、まずはコメントアウトで様子見推奨 */
/*
.top-lp #top.top-hero :is(.top-hero__badge, .top-hero__mini, .top-hero__icon, .top-hero__mark){
  display:none !important;
}
*/

/* 4) SPは縦積みで見やすく（折返しよりキレイ） */
@media (max-width: 768px){
  .top-lp #top.top-hero .top-hero__content{
    padding-right: 0 !important;
    padding-bottom: 46px !important;
  }

  .top-lp #top.top-hero .top-hero__inner{
    transform: none !important;
  }

  .top-lp #top.top-hero :is(.top-hero__btn, .top-hero__ctaWrap, .top-hero__cta-area, .top-hero__buttons, .top-hero__ctas){
    flex-direction: column !important;
    align-items: stretch !important;
    flex-wrap: wrap !important;
  }

  .top-lp #top.top-hero :is(
    .top-hero__cta,
    .swl-button,
    .c-btn,
    a.swell-block-button__link,
    a.wp-block-button__link,
    .wp-block-button__link,
    a[class*="btn"]
  ){
    width: 100% !important;
  }
}

/* =========================================================
   文字ブロックを「もっと右へ」「少し下へ」
   - 女性に被らないよう右側の余白へ寄せる
   - 画面幅で崩れにくい（padding + max-width + translate微調整）
========================================================= */

/* Hero全体：右と下の“安全余白”を増やす */
.top-lp #top.top-hero .top-hero__content{
  justify-items: end !important;
  align-items: end !important;

  /* 右に寄せる（大きめに） */
  padding-right: clamp(24px, 9vw, 180px) !important;

  /* 下に下げる（少し大きめに） */
  padding-bottom: clamp(28px, 7vh, 130px) !important;
}

/* 文字ブロック：幅を抑えつつ右下へ“気持ち”寄せる */
.top-lp #top.top-hero .top-hero__inner{
  /* 右側に寄せたときの見た目が締まる幅 */
  width: min(640px, 92%) !important;

  /* 右端に寄せる（念のため） */
  margin-left: auto !important;
  margin-right: 0 !important;

  /* 最後の微調整（必要に応じて数値だけ触る） */
  transform: translate(clamp(8px, 2.8vw, 40px), clamp(10px, 2.4vh, 34px)) !important;
}

/* サブコピー（上のピル）が中央寄りに見える場合：右寄せに統一 */
.top-lp #top.top-hero .top-hero__subcopy{
  margin-left: auto !important;
  margin-right: 0 !important;
}

/* 見出し・本文の帯：右側に寄せた時に“膨張”しないよう少しだけ締める */
.top-lp #top.top-hero .top-hero__headline{
  max-width: 100% !important;
}
.top-lp #top.top-hero .top-hero__tagline{
  max-width: 100% !important;
}

/* CTA：文字が2行にならないよう（前の対策の保険） */
.top-lp #top.top-hero :is(.top-hero__cta, .swl-button, .c-btn, a.swell-block-button__link, a.wp-block-button__link, .wp-block-button__link, a[class*="btn"]){
  white-space: nowrap !important;
}

/* SP：人物に被る問題はPCより小さいので、寄せすぎを戻す */
@media (max-width: 768px){
  .top-lp #top.top-hero .top-hero__content{
    padding-right: 0 !important;
    padding-bottom: 52px !important;
  }
  .top-lp #top.top-hero .top-hero__inner{
    width: min(680px, 92%) !important;
    transform: none !important;
  }
}

/* =========================================
   背景写真：女性をもう少し左＋少し下へ
========================================= */

.top-lp #top.top-hero{
  /* 横位置を左へ（数値を下げると左に寄る） */
  background-position: 60% 52% !important;
}

/* =========================================
   career-potential：追加版
========================================= */


/* career-potential：成果物ブロック（追記） */
.top-lp .top-career-potential__deliverables{
  margin-top:24px;
  border:1px solid rgba(0,91,171,.18);
  border-radius:14px;
  background:#fff;
  padding:18px;
}
.top-lp .top-career-potential__deliverables-title{
  margin:0 0 12px;
  font-size:18px;
}
.top-lp .top-career-potential__deliverables-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.top-lp .top-career-potential__deliverable{
  background:#f8fbff;
  border:1px solid rgba(49,101,168,.18);
  border-radius:12px;
  padding:12px;
}
.top-lp .top-career-potential__deliverable h4{
  margin:0 0 6px;
  font-size:15px;
  color:#005bab;
}
.top-lp .top-career-potential__deliverable p{ margin:0; line-height:1.6; }

.top-lp .top-career-potential__cta{
  margin-top:12px;
  text-align:center;
}
.top-lp .top-career-potential__cta-note{
  margin-top:8px;
  font-size:13px;
  opacity:.9;
}

@media (max-width: 768px){
  .top-lp .top-career-potential__deliverables-grid{ grid-template-columns:1fr; }
}

/* =========================================
   Declaration section / flat wide layout
   ========================================= */
.top-lp .top-declaration {
  position: relative;
  padding: 56px 0 60px;
  background:
    linear-gradient(180deg, #f7f9fc 0%, #f3f7fb 100%);
  overflow: hidden;
}

.top-lp .top-declaration__container {
  position: relative;
}

.top-lp .top-declaration__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: center;
}

.top-lp .top-declaration__text {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.top-lp .top-declaration__lead,
.top-lp .top-declaration__body,
.top-lp .top-declaration__message {
  margin: 0;
}

.top-lp .top-declaration__lead {
  font-size: clamp(1.7rem, 1.25rem + 0.5vw, 2rem);
  line-height: 1.85;
  font-weight: 600;
  color: #16283d;
  letter-spacing: 0.01em;
}

.top-lp .top-declaration__lead strong {
  color: #005bab;
  font-weight: 700;
}

.top-lp .top-declaration__body {
  margin-top: 18px;
  font-size: clamp(1.42rem, 1.15rem + 0.22vw, 1.58rem);
  line-height: 1.9;
  color: #425466;
}

.top-lp .top-declaration__message {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 91, 171, 0.18);
  font-size: clamp(1.45rem, 1.18rem + 0.25vw, 1.62rem);
  line-height: 1.85;
  font-weight: 700;
  color: #102a43;
}

.top-lp .top-declaration__message span {
  display: block;
}

/* visual */
.top-lp .top-declaration__visual {
  position: relative;
  min-height: 320px;
  background: transparent;
}

.top-lp .top-declaration__pattern,
.top-lp .top-declaration__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.top-lp .top-declaration__pattern--grid {
  background-image:
    linear-gradient(rgba(0, 91, 171, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 91, 171, 0.14) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 1;
}

.top-lp .top-declaration__pattern--rings::before,
.top-lp .top-declaration__pattern--rings::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(0, 91, 171, 0.18);
}

.top-lp .top-declaration__pattern--rings::before {
  width: 220px;
  height: 220px;
  top: 10px;
  right: 24px;
}

.top-lp .top-declaration__pattern--rings::after {
  width: 300px;
  height: 300px;
  bottom: -90px;
  left: -10px;
}

.top-lp .top-declaration__pattern--diagonal::before,
.top-lp .top-declaration__pattern--diagonal::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(0, 91, 171, 0.16);
  transform-origin: left center;
}

.top-lp .top-declaration__pattern--diagonal::before {
  width: 180px;
  top: 82px;
  left: 110px;
  transform: rotate(18deg);
}

.top-lp .top-declaration__pattern--diagonal::after {
  width: 220px;
  bottom: 72px;
  right: 40px;
  transform: rotate(-24deg);
}

.top-lp .top-declaration__network line {
  stroke: rgba(0, 91, 171, 0.28);
  stroke-width: 1.5;
}

.top-lp .top-declaration__node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #005bab;
}

.top-lp .top-declaration__node::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(0, 91, 171, 0.12);
}

.top-lp .top-declaration__node--1 { top: 66px; left: 78px; }
.top-lp .top-declaration__node--2 { top: 116px; left: 202px; }
.top-lp .top-declaration__node--3 { top: 86px; right: 138px; }
.top-lp .top-declaration__node--4 { bottom: 106px; left: 168px; }
.top-lp .top-declaration__node--5 { bottom: 78px; right: 118px; }
.top-lp .top-declaration__node--6 { top: 176px; right: 58px; }

/* wider feeling on large screens */
@media (min-width: 1280px) {
  .top-lp .top-declaration__grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
    gap: 56px;
  }

  .top-lp .top-declaration__visual {
    min-height: 360px;
  }
}

@media (max-width: 960px) {
  .top-lp .top-declaration {
    padding: 44px 0 48px;
  }

  .top-lp .top-declaration__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .top-lp .top-declaration__text {
    max-width: none;
  }

  .top-lp .top-declaration__visual {
    min-height: 220px;
  }
}

@media (max-width: 767px) {
  .top-lp .top-declaration {
    padding: 36px 0 40px;
  }

  .top-lp .top-declaration__lead {
    line-height: 1.75;
  }

  .top-lp .top-declaration__body {
    margin-top: 14px;
    line-height: 1.8;
  }

  .top-lp .top-declaration__message {
    margin-top: 16px;
    padding-top: 14px;
    line-height: 1.75;
  }

  .top-lp .top-declaration__visual {
    min-height: 180px;
  }

  .top-lp .top-declaration__pattern--grid {
    background-size: 24px 24px;
  }

  .top-lp .top-declaration__node {
    width: 10px;
    height: 10px;
  }
}

/* =========================================
   Declaration width optimization
   ========================================= */

.top-lp .top-declaration__grid{
  grid-template-columns: minmax(0,1.4fr) minmax(320px,0.6fr);
  gap:60px;
}

.top-lp .top-declaration__text{
  max-width:1100px;
}

.top-lp .top-declaration__lead{
  font-size:clamp(1.8rem,1.2rem + .6vw,1.75rem);
  line-height:1.75;
}

.top-lp .top-declaration__body{
  font-size:clamp(1.5rem,1.1rem + .25vw,1.45rem);
  line-height:1.8;
}

.top-lp .top-declaration__message{
  font-size:clamp(1.55rem,1.15rem + .3vw,1.55rem);
  line-height:1.75;
}

/* visual slightly larger */
.top-lp .top-declaration__visual{
  min-height:340px;
}

@media (min-width:1200px){

.top-lp .top-declaration__visual{
  transform:translateX(40px);
}

}

/* =========================================
   Persona / Problems section
   ========================================= */
.top-lp .top-persona{
  padding: 72px 0 84px;
  background: #ffffff;
}

.top-lp .top-persona__container{
  max-width: 1180px;
}

.top-lp .top-persona__header{
  text-align: center;
  margin-bottom: 42px;
}

.top-lp .top-persona__eyebrow{
  margin: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #005bab;
}

.top-lp .top-persona__title{
  margin: 0;
  font-size: clamp(2.4rem, 1.8rem + .8vw, 3.2rem);
  line-height: 1.35;
  font-weight: 700;
  color: #16283d;
}

.top-lp .top-persona__lead{
  margin: 16px auto 0;
  max-width: 760px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #5a6b7b;
}

.top-lp .top-persona__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 26px;
}

.top-lp .top-persona__card{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-lp .top-persona__figure{
  position: relative;
  z-index: 2;
  width: 132px;
  margin-bottom: -10px;
}

.top-lp .top-persona__figure img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.top-lp .top-persona__box{
  position: relative;
  width: 100%;
  min-height: 170px;
  padding: 28px 22px 22px;
  background: #cfe7e3;
  text-align: center;
}

.top-lp .top-persona__box::before{
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #cfe7e3;
}

.top-lp .top-persona__card-title{
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.65;
  font-weight: 700;
  color: #16283d;
}

.top-lp .top-persona__card-text{
  margin: 10px 0 0;
  font-size: 1.38rem;
  line-height: 1.8;
  color: #32475b;
}

.top-lp .top-persona__cta{
  margin-top: 34px;
  text-align: center;
}

.top-lp .top-persona__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #005bab;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

.top-lp .top-persona__button:hover{
  opacity: .92;
  transform: translateY(-2px);
}

/* 画像を“四角く見せない”ための微調整 */
.top-lp .top-persona__figure--1{
  transform: rotate(-3deg);
}
.top-lp .top-persona__figure--2{
  transform: rotate(2deg);
}
.top-lp .top-persona__figure--3{
  transform: rotate(-2deg);
}
.top-lp .top-persona__figure--4{
  transform: rotate(2deg);
}
.top-lp .top-persona__figure--5{
  transform: rotate(-3deg);
}
.top-lp .top-persona__figure--6{
  transform: rotate(1deg);
}

@media (max-width: 960px){
  .top-lp .top-persona{
    padding: 60px 0 70px;
  }

  .top-lp .top-persona__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .top-lp .top-persona{
    padding: 48px 0 56px;
  }

  .top-lp .top-persona__header{
    margin-bottom: 30px;
  }

  .top-lp .top-persona__lead{
    font-size: 1.4rem;
    line-height: 1.8;
  }

  .top-lp .top-persona__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .top-lp .top-persona__figure{
    width: 112px;
  }

  .top-lp .top-persona__box{
    min-height: auto;
    padding: 24px 18px 18px;
  }

  .top-lp .top-persona__card-title{
    font-size: 1.62rem;
    line-height: 1.6;
  }

  .top-lp .top-persona__card-text{
    font-size: 1.34rem;
    line-height: 1.75;
  }

  .top-lp .top-persona__button{
    width: 100%;
    min-width: 0;
  }
}

/* =========================================
   Persona / Problems section - typography tuning
   ========================================= */

.top-lp .top-persona__lead{
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 1.12rem;   /* 以前 1.5rem */
  line-height: 1.75;
  color: #5a6b7b;
}

.top-lp .top-persona__box{
  position: relative;
  width: 100%;
  min-height: 150px;
  padding: 22px 18px 18px;
  background: #cfe7e3;
  text-align: center;
}

.top-lp .top-persona__box::before{
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #cfe7e3;
}

.top-lp .top-persona__card-title{
  margin: 0;
  font-size: 0.96rem;   /* 以前 1.75rem */
  line-height: 1.55;
  font-weight: 700;
  color: #16283d;
}

.top-lp .top-persona__card-text{
  margin: 7px 0 0;
  font-size: 0.72rem;   /* 以前 1.38rem */
  line-height: 1.65;
  color: #32475b;
}

@media (max-width: 767px){
  .top-lp .top-persona__lead{
    font-size: 1rem;
    line-height: 1.7;
  }

  .top-lp .top-persona__box{
    min-height: auto;
    padding: 20px 16px 16px;
  }

  .top-lp .top-persona__card-title{
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .top-lp .top-persona__card-text{
    font-size: 0.68rem;
    line-height: 1.6;
  }
}

.top-lp .top-persona__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 15px 28px;
  border-radius: 999px;
  background: #005bab;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, opacity .2s ease;
}

/* =========================================
   Persona / Problems section - illustration layout fix
   ========================================= */

.top-lp .top-persona__card{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-lp .top-persona__figure{
  position: relative;
  z-index: 2;
  width: 176px;              /* 以前 132px */
  margin-bottom: 12px;       /* 以前 -10px */
}

.top-lp .top-persona__figure img{
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 傾きはなし */
.top-lp .top-persona__figure--1,
.top-lp .top-persona__figure--2,
.top-lp .top-persona__figure--3,
.top-lp .top-persona__figure--4,
.top-lp .top-persona__figure--5,
.top-lp .top-persona__figure--6{
  transform: none;
}

.top-lp .top-persona__box{
  position: relative;
  width: 100%;
  min-height: 150px;
  padding: 18px 18px 18px;   /* 上paddingも少し整理 */
  background: #cfe7e3;
  text-align: center;
  border-radius: 14px;
}

.top-lp .top-persona__box::before{
  content: "";
  position: absolute;
  top: -8px;                 /* 以前 -10px or -12px */
  left: 50%;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #cfe7e3;
}

.top-lp .top-persona__card-title{
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
  font-weight: 700;
  color: #16283d;
}

.top-lp .top-persona__card-text{
  margin: 7px 0 0;
  font-size: 0.72rem;
  line-height: 1.6;
  color: #32475b;
}

@media (max-width: 960px){
  .top-lp .top-persona__figure{
    width: 160px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px){
  .top-lp .top-persona__figure{
    width: 136px;
    margin-bottom: 8px;
  }

  .top-lp .top-persona__box{
    padding: 16px 14px 14px;
    border-radius: 12px;
  }

  .top-lp .top-persona__box::before{
    top: -7px;
    border-left-width: 8px;
    border-right-width: 8px;
    border-bottom-width: 8px;
  }
}

.top-lp .top-persona__figure{
  width: 208px;
  margin-bottom: 18px;
}

.top-lp .top-persona__box{
  padding: 18px 18px 18px;
  border-radius: 16px;
}

.top-lp .top-persona__box::before{
  top: -7px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #cfe7e3;
}

.top-lp .top-persona__figure{
  position: relative;
}

.top-lp .top-persona__figure::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 72%;
  height: 12px;
  background: rgba(0, 0, 0, 0.06);
  filter: blur(10px);
  border-radius: 999px;
  z-index: -1;
}

/* =========================================
   Why Reskilling section tuning
   ========================================= */

.top-lp .top-reskilling-explanation__header{
  margin-bottom: 40px;
}

.top-lp .top-reskilling-explanation__intro{
  max-width: 860px;
  margin: 22px auto 0;
}

.top-lp .top-reskilling-explanation__intro-text{
  font-size: 1.45rem;
  line-height: 1.9;
  color: #32475b;
}

.top-lp .top-reskilling-explanation__intro-text + .top-reskilling-explanation__intro-text{
  margin-top: 12px;
}

.top-lp .top-reskilling-explanation__intro-highlight{
  color: #005bab;
  font-weight: 700;
}

.top-lp .top-reskilling-explanation__shift{
  margin-top: 0;
}

.top-lp .top-reskilling-explanation__shift-title{
  font-size: 2.2rem;
  line-height: 1.45;
}

.top-lp .top-reskilling-explanation__shift-lead{
  font-size: 1.4rem;
  line-height: 1.8;
}

.top-lp .top-reskilling-explanation__shift-item{
  font-size: 1.45rem;
  line-height: 1.75;
}

.top-lp .top-reskilling-explanation__shift-note{
  font-size: 1.35rem;
  line-height: 1.8;
}

.top-lp .top-reskilling-explanation__blocks{
  margin-top: 44px;
}

.top-lp .top-reskilling-explanation__block{
  padding: 28px 22px;
}

.top-lp .top-reskilling-explanation__block-title{
  font-size: 1.7rem;
  line-height: 1.45;
}

.top-lp .top-reskilling-explanation__block-text{
  font-size: 1.34rem;
  line-height: 1.8;
}

.top-lp .top-reskilling-explanation__hero-box{
  margin-top: 44px;
}

.top-lp .top-reskilling-explanation__hero-lead{
  font-size: 1.4rem;
  line-height: 1.8;
}

.top-lp .top-reskilling-explanation__hero-point{
  font-size: 1.42rem;
  line-height: 1.75;
}

.top-lp .top-reskilling-explanation__hero-note{
  font-size: 1.34rem;
  line-height: 1.8;
}

@media (max-width: 767px){
  .top-lp .top-reskilling-explanation__intro-text,
  .top-lp .top-reskilling-explanation__shift-lead,
  .top-lp .top-reskilling-explanation__shift-item,
  .top-lp .top-reskilling-explanation__shift-note,
  .top-lp .top-reskilling-explanation__block-text,
  .top-lp .top-reskilling-explanation__hero-lead,
  .top-lp .top-reskilling-explanation__hero-point,
  .top-lp .top-reskilling-explanation__hero-note{
    font-size: 1.28rem;
    line-height: 1.75;
  }

  .top-lp .top-reskilling-explanation__shift-title{
    font-size: 1.85rem;
  }

  .top-lp .top-reskilling-explanation__block-title{
    font-size: 1.55rem;
  }
}

/* =========================================
   Why Reskilling Now - redesigned
   ========================================= */

.top-lp .top-reskilling-explanation{
  padding: 84px 0 96px;
  background: #fff;
}

.top-lp .top-reskilling-explanation__container{
  max-width: 1180px;
}

.top-lp .top-reskilling-explanation__header{
  text-align: center;
  margin-bottom: 34px;
}

.top-lp .top-reskilling-explanation__intro{
  max-width: 860px;
  margin: 20px auto 0;
}

.top-lp .top-reskilling-explanation__intro-text{
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #32475b;
}

.top-lp .top-reskilling-explanation__intro-text + .top-reskilling-explanation__intro-text{
  margin-top: 12px;
}

.top-lp .top-reskilling-explanation__intro-highlight{
  color: #005bab;
  font-weight: 700;
}

/* summary strip */
.top-lp .top-reskilling-explanation__summary{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.top-lp .top-reskilling-explanation__summary-item{
  padding: 20px 18px;
  border-radius: 14px;
  background: #f5f8fc;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-reskilling-explanation__summary-title{
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.45;
  color: #16324f;
}

.top-lp .top-reskilling-explanation__summary-text{
  margin: 8px 0 0;
  font-size: 1.3rem;
  line-height: 1.75;
  color: #54657a;
}

/* shift */
.top-lp .top-reskilling-explanation__shift{
  margin-top: 42px;
}

.top-lp .top-reskilling-explanation__shift-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.top-lp .top-reskilling-explanation__shift-image img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

.top-lp .top-reskilling-explanation__shift-body{
  padding: 8px 0;
}

.top-lp .top-reskilling-explanation__shift-label{
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef5fb;
  color: #005bab;
  font-size: 1.25rem;
  font-weight: 700;
}

.top-lp .top-reskilling-explanation__shift-title{
  margin: 14px 0 0;
  font-size: 2.35rem;
  line-height: 1.45;
  color: #16283d;
}

.top-lp .top-reskilling-explanation__shift-lead{
  margin: 14px 0 0;
  font-size: 1.45rem;
  line-height: 1.85;
  color: #32475b;
}

.top-lp .top-reskilling-explanation__shift-list{
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.top-lp .top-reskilling-explanation__shift-item{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.42rem;
  line-height: 1.8;
  color: #24384d;
}

.top-lp .top-reskilling-explanation__shift-item + .top-reskilling-explanation__shift-item{
  margin-top: 10px;
}

.top-lp .top-reskilling-explanation__shift-check{
  color: #e39b30;
  font-weight: 700;
  line-height: 1.7;
}

.top-lp .top-reskilling-explanation__shift-note{
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid #e39b30;
  background: #fbfcfe;
  font-size: 1.34rem;
  line-height: 1.8;
  color: #32475b;
}

/* 3 cards */
.top-lp .top-reskilling-explanation__blocks{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 44px;
}

.top-lp .top-reskilling-explanation__block{
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-reskilling-explanation__block-image img{
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.top-lp .top-reskilling-explanation__block-title{
  margin: 18px 18px 0;
  font-size: 1.7rem;
  line-height: 1.45;
  color: #16324f;
}

.top-lp .top-reskilling-explanation__block-text{
  margin: 10px 18px 20px;
  font-size: 1.34rem;
  line-height: 1.8;
  color: #54657a;
}

/* hero box */
.top-lp .top-reskilling-explanation__hero-box{
  margin-top: 48px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #0c2f5a 0%, #143f72 100%);
}

.top-lp .top-reskilling-explanation__hero-content{
  padding: 38px 34px 36px;
}

.top-lp .top-reskilling-explanation__hero-badge{
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .03em;
}

.top-lp .top-reskilling-explanation__hero-title{
  margin: 16px 0 0;
  font-size: 2.4rem;
  line-height: 1.45;
  color: #fff;
}

.top-lp .top-reskilling-explanation__hero-lead{
  margin: 14px 0 0;
  font-size: 1.42rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.88);
}

.top-lp .top-reskilling-explanation__hero-reasons{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.top-lp .top-reskilling-explanation__hero-reason{
  padding: 18px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
}

.top-lp .top-reskilling-explanation__hero-number{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffd39a;
}

.top-lp .top-reskilling-explanation__hero-reason-text{
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.75;
  color: #fff;
}

.top-lp .top-reskilling-explanation__hero-note{
  margin: 20px 0 0;
  font-size: 1.34rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

/* responsive */
@media (max-width: 960px){
  .top-lp .top-reskilling-explanation{
    padding: 68px 0 76px;
  }

  .top-lp .top-reskilling-explanation__summary,
  .top-lp .top-reskilling-explanation__blocks,
  .top-lp .top-reskilling-explanation__hero-reasons{
    grid-template-columns: 1fr;
  }

  .top-lp .top-reskilling-explanation__shift-grid{
    grid-template-columns: 1fr;
  }

  .top-lp .top-reskilling-explanation__shift-image img{
    min-height: 320px;
  }
}

@media (max-width: 767px){
  .top-lp .top-reskilling-explanation{
    padding: 54px 0 60px;
  }

  .top-lp .top-reskilling-explanation__intro-text,
  .top-lp .top-reskilling-explanation__shift-lead,
  .top-lp .top-reskilling-explanation__shift-item,
  .top-lp .top-reskilling-explanation__shift-note,
  .top-lp .top-reskilling-explanation__summary-text,
  .top-lp .top-reskilling-explanation__block-text,
  .top-lp .top-reskilling-explanation__hero-lead,
  .top-lp .top-reskilling-explanation__hero-reason-text,
  .top-lp .top-reskilling-explanation__hero-note{
    font-size: 1.28rem;
    line-height: 1.75;
  }

  .top-lp .top-reskilling-explanation__summary-title{
    font-size: 1.42rem;
  }

  .top-lp .top-reskilling-explanation__shift-title{
    font-size: 1.95rem;
  }

  .top-lp .top-reskilling-explanation__block-title{
    font-size: 1.55rem;
  }

  .top-lp .top-reskilling-explanation__hero-title{
    font-size: 2rem;
  }

  .top-lp .top-reskilling-explanation__hero-content{
    padding: 28px 20px 28px;
  }

  .top-lp .top-reskilling-explanation__block-image img{
    height: 160px;
  }
}

/* =========================================
   Why Reskilling - shift block tuning
   ========================================= */
.top-lp .top-reskilling-explanation__shift{
  margin-top: 38px;
}

.top-lp .top-reskilling-explanation__shift-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.top-lp .top-reskilling-explanation__shift-image img{
  display: block;
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.top-lp .top-reskilling-explanation__shift-body{
  position: relative;
}

.top-lp .top-reskilling-explanation__shift-sticky{
  position: sticky;
  top: 96px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-reskilling-explanation__shift-label{
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf3fb;
  color: #005bab;
  font-size: 1.1rem;
  font-weight: 700;
}

.top-lp .top-reskilling-explanation__shift-title{
  margin: 12px 0 0;
  font-size: 1.9rem;
  line-height: 1.45;
  color: #16283d;
}

.top-lp .top-reskilling-explanation__shift-lead{
  margin: 12px 0 0;
  font-size: 1.24rem;
  line-height: 1.72;
  color: #32475b;
}

.top-lp .top-reskilling-explanation__shift-list{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.top-lp .top-reskilling-explanation__shift-item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.top-lp .top-reskilling-explanation__shift-item + .top-reskilling-explanation__shift-item{
  margin-top: 10px;
}

.top-lp .top-reskilling-explanation__shift-check{
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: #005bab;
  position: relative;
}

.top-lp .top-reskilling-explanation__shift-check::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.top-lp .top-reskilling-explanation__shift-item-text{
  font-size: 1.2rem;
  line-height: 1.7;
  color: #24384d;
}

.top-lp .top-reskilling-explanation__shift-note{
  margin-top: 16px;
  padding: 14px 14px 0 14px;
  border-top: 1px solid rgba(0, 91, 171, 0.1);
  font-size: 1.18rem;
  line-height: 1.72;
  color: #32475b;
}

@media (max-width: 960px){
  .top-lp .top-reskilling-explanation__shift-grid{
    grid-template-columns: 1fr;
  }

  .top-lp .top-reskilling-explanation__shift-sticky{
    position: static;
  }

  .top-lp .top-reskilling-explanation__shift-image img{
    min-height: 300px;
  }
}

/* =========================================
   Why Reskilling - shift layout fix
   ========================================= */

.top-lp .top-reskilling-explanation__shift{
  margin-top: 38px;
}

.top-lp .top-reskilling-explanation__shift-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: stretch; /* start ではなく stretch */
}

.top-lp .top-reskilling-explanation__shift-image{
  height: 100%;
}

.top-lp .top-reskilling-explanation__shift-image img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* sticky card */
.top-lp .top-reskilling-explanation__shift-body{
  position: relative;
}

.top-lp .top-reskilling-explanation__shift-sticky{
  position: sticky;
  top: 92px;
  padding: 20px 20px 18px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-reskilling-explanation__shift-label{
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eaf3fb;
  color: #005bab;
  font-size: 1.05rem;
  font-weight: 700;
}

.top-lp .top-reskilling-explanation__shift-title{
  margin: 12px 0 0;
  font-size: 1.78rem;
  line-height: 1.42;
  color: #16283d;
}

.top-lp .top-reskilling-explanation__shift-lead{
  margin: 12px 0 0;
  font-size: 1.16rem;
  line-height: 1.68;
  color: #32475b;
}

.top-lp .top-reskilling-explanation__shift-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.top-lp .top-reskilling-explanation__shift-item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.top-lp .top-reskilling-explanation__shift-item + .top-reskilling-explanation__shift-item{
  margin-top: 10px;
}

/* 丸とチェックを中央で安定表示 */
.top-lp .top-reskilling-explanation__shift-check{
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: #005bab;
  flex-shrink: 0;
}

.top-lp .top-reskilling-explanation__shift-check::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -58%) rotate(45deg);
}

.top-lp .top-reskilling-explanation__shift-item-text{
  font-size: 1.12rem;
  line-height: 1.65;
  color: #24384d;
}

.top-lp .top-reskilling-explanation__shift-note{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 91, 171, 0.10);
  font-size: 1.12rem;
  line-height: 1.68;
  color: #32475b;
}

/* 画像が低くなりすぎるのを防ぐ */
.top-lp .top-reskilling-explanation__shift-grid{
  min-height: 520px;
}

@media (max-width: 960px){
  .top-lp .top-reskilling-explanation__shift-grid{
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .top-lp .top-reskilling-explanation__shift-sticky{
    position: static;
  }

  .top-lp .top-reskilling-explanation__shift-image img{
    min-height: 320px;
    height: auto;
  }
}

@media (max-width: 767px){
  .top-lp .top-reskilling-explanation__shift-title{
    font-size: 1.62rem;
  }

  .top-lp .top-reskilling-explanation__shift-lead,
  .top-lp .top-reskilling-explanation__shift-item-text,
  .top-lp .top-reskilling-explanation__shift-note{
    font-size: 1.06rem;
    line-height: 1.62;
  }

  .top-lp .top-reskilling-explanation__shift-sticky{
    padding: 18px 16px 16px;
  }
}

/* =========================================
   Why Reskilling - softer layout
   ========================================= */

.top-lp .top-reskilling-explanation__shift-grid{
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: stretch;
  min-height: auto;
}

.top-lp .top-reskilling-explanation__shift-image{
  height: auto;
}

.top-lp .top-reskilling-explanation__shift-image img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
}

/* stickyをやめる */
.top-lp .top-reskilling-explanation__shift-sticky{
  position: static;
  padding: 22px 22px 20px;
  border-radius: 18px;
  background: #fbfcfe;
  border: 1px solid rgba(0, 91, 171, 0.06);
  box-shadow: none;
}

.top-lp .top-reskilling-explanation__shift-label{
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef5fb;
  color: #4c79a8;
  font-size: 1rem;
  font-weight: 700;
}

.top-lp .top-reskilling-explanation__shift-title{
  margin: 12px 0 0;
  font-size: 1.58rem;
  line-height: 1.45;
  color: #16324f;
}

.top-lp .top-reskilling-explanation__shift-lead{
  margin: 12px 0 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #4f6275;
}

.top-lp .top-reskilling-explanation__shift-list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.top-lp .top-reskilling-explanation__shift-item{
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 91, 171, 0.06);
}

.top-lp .top-reskilling-explanation__shift-item:first-child{
  border-top: none;
  padding-top: 0;
}

.top-lp .top-reskilling-explanation__shift-check{
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background: #7ea8d3;
}

.top-lp .top-reskilling-explanation__shift-check::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -58%) rotate(45deg);
}

.top-lp .top-reskilling-explanation__shift-item-text{
  font-size: 1.05rem;
  line-height: 1.68;
  color: #33485d;
}

.top-lp .top-reskilling-explanation__shift-note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border-top: none;
  background: #f5f8fc;
  font-size: 1.04rem;
  line-height: 1.72;
  color: #4f6275;
}

/* 下の3カードも少しやわらかく */
.top-lp .top-reskilling-explanation__block{
  border: 1px solid rgba(0, 91, 171, 0.06);
  border-radius: 16px;
}

.top-lp .top-reskilling-explanation__block-image img{
  height: 150px;
}

.top-lp .top-reskilling-explanation__block-title{
  margin: 16px 16px 0;
  font-size: 1.24rem;
  line-height: 1.45;
}

.top-lp .top-reskilling-explanation__block-text{
  margin: 8px 16px 18px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #54657a;
}

@media (max-width: 960px){
  .top-lp .top-reskilling-explanation__shift-grid{
    grid-template-columns: 1fr;
  }

  .top-lp .top-reskilling-explanation__shift-image img{
    max-height: none;
    height: auto;
  }
}

.top-reskilling-explanation__shift-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:36px;
}

.top-reskilling-explanation__shift-sticky{
  position:sticky;
  top:120px;
  padding:26px 28px;
  border-radius:18px;

  background:#f7f9fc;
  border:1px solid rgba(0,91,171,.06);
}

/* =========================================
   Why Reskilling - fill left column space
   ========================================= */

.top-lp .top-reskilling-explanation__shift-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 28px;
  align-items: stretch;
}

.top-lp .top-reskilling-explanation__shift-image{
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.top-lp .top-reskilling-explanation__shift-image-main{
  flex: 1 1 auto;
}

.top-lp .top-reskilling-explanation__shift-image-main img{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 18px;
}

.top-lp .top-reskilling-explanation__shift-caption{
  padding: 16px 18px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid rgba(0, 91, 171, 0.07);
}

.top-lp .top-reskilling-explanation__shift-caption-text{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #425466;
}

@media (max-width: 960px){
  .top-lp .top-reskilling-explanation__shift-image-main img{
    min-height: 300px;
    height: auto;
  }
}

.top-lp .top-reskilling-explanation__shift-caption-label{
  margin: 0 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #005bab;
}

.top-reskilling-explanation__shift-image{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.top-reskilling-explanation__shift-photo img{
  width:100%;
  height:auto;
  border-radius:16px;
  display:block;
}

.top-reskilling-explanation__shift-caption{
  padding:16px 18px;
  background:#f7f9fc;
  border-radius:14px;
  border:1px solid rgba(0,91,171,.08);
}

.top-reskilling-explanation__shift-caption-label{
  font-size:.9rem;
  font-weight:700;
  color:#005bab;
  margin-bottom:6px;
}

.top-reskilling-explanation__shift-caption-text{
  font-size:1rem;
  line-height:1.7;
  color:#3a4a5a;
}


.top-reskilling-explanation__data{
  background:#f4f8fc;
  padding:80px 0;
}

.top-reskilling-explanation__data-inner{
  max-width:1000px;
  margin:auto;
}

.top-reskilling-explanation__data-header{
  text-align:center;
  margin-bottom:40px;
}

.top-reskilling-explanation__data-badge{
  display:inline-block;
  background:#e6f1fb;
  color:#0f6cbd;
  padding:6px 14px;
  border-radius:20px;
  font-size:.85rem;
  margin-bottom:12px;
}

.top-reskilling-explanation__data-title{
  font-size:1.8rem;
  color:#1a357d;
  margin-bottom:14px;
}

.top-reskilling-explanation__data-lead{
  color:#556575;
  font-size:.95rem;
}

.top-reskilling-explanation__data-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin:40px 0;
}

.top-reskilling-explanation__data-card{
  background:#fff;
  border-radius:14px;
  padding:24px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
}

.top-reskilling-explanation__data-number{
  font-weight:700;
  color:#0f6cbd;
  display:block;
  margin-bottom:10px;
}

.top-reskilling-explanation__data-note{
  text-align:center;
  color:#455468;
  font-size:.9rem;
}

.top-reskilling-explanation__data-card{
  position:relative;
  background:#fff;
  border-radius:14px;
  padding:26px;
  box-shadow:0 10px 24px rgba(0,0,0,.05);
}

.top-reskilling-explanation__data-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  border-radius:14px 14px 0 0;
  background:linear-gradient(90deg,#0f6cbd,#00a692);
}

.top-reskilling-explanation__data-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  transition:.25s;
}

.top-reskilling-explanation__data-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:36px;
  height:36px;
  border-radius:50%;
  background:#e6f1fb;
  color:#0f6cbd;
  font-weight:700;
  margin-bottom:12px;
}
.top-reskilling-explanation__data-note{
  text-align:center;
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid #dbe5ef;
  color:#4b5c6d;
}

/* =========================================
   Career Potential redesign
   ========================================= */
.top-lp .top-career-potential{
  padding: 84px 0;
  background: #fff;
}

.top-lp .top-career-potential__header{
  text-align: center;
  margin-bottom: 30px;
}

.top-lp .top-career-potential__subtitle{
  margin-top: 14px;
}

.top-lp .top-career-potential__deliverables{
  padding: 26px 24px;
  border-radius: 20px;
  background: #f8fbff;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-career-potential__deliverables-title{
  margin: 0 0 18px;
  font-size: 1.7rem;
  line-height: 1.45;
  color: #16324f;
}

.top-lp .top-career-potential__deliverables-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.top-lp .top-career-potential__deliverable{
  padding: 18px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-career-potential__deliverable h4{
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.5;
  color: #16324f;
}

.top-lp .top-career-potential__deliverable p{
  margin: 8px 0 0;
  font-size: 1.18rem;
  line-height: 1.72;
  color: #54657a;
}

.top-lp .top-career-potential__summary{
  margin-top: 22px;
  text-align: center;
}

.top-lp .top-career-potential__description{
  font-size: 1.24rem;
  line-height: 1.8;
  color: #425466;
}

.top-lp .top-career-potential__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.top-lp .top-career-potential__card{
  padding: 22px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-career-potential__card--accent{
  background: #0c2f5a;
  border-color: #0c2f5a;
}

.top-lp .top-career-potential__card-title{
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #16324f;
}

.top-lp .top-career-potential__card-text{
  margin: 10px 0 0;
  font-size: 1.18rem;
  line-height: 1.72;
  color: #54657a;
}

.top-lp .top-career-potential__card--accent .top-career-potential__card-title,
.top-lp .top-career-potential__card--accent .top-career-potential__card-text{
  color: #fff;
}

.top-lp .top-career-potential__cta{
  margin-top: 24px;
  text-align: center;
}

.top-lp .top-career-potential__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #e39b30;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
}

.top-lp .top-career-potential__cta-note{
  margin-top: 10px;
  font-size: 1.1rem;
  color: #6b7280;
}

@media (max-width: 960px){
  .top-lp .top-career-potential__deliverables-grid,
  .top-lp .top-career-potential__grid{
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Career Consultation redesign
   ========================================= */
.top-lp .top-consult{
  padding: 84px 0;
  background: #fff;
}

.top-lp .top-consult__header{
  text-align: center;
  margin-bottom: 24px;
}

.top-lp .top-consult__lead{
  font-size: 1.22rem;
  line-height: 1.75;
  color: #54657a;
}

.top-lp .top-consult__content{
  margin-top: 22px;
}

.top-lp .top-consult-contrast__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.top-lp .top-consult-contrast__card{
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-consult-contrast__head{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.top-lp .top-consult-contrast__title{
  margin: 0;
  font-size: 1.52rem;
  line-height: 1.45;
  color: #16324f;
}

.top-lp .top-consult-contrast__list{
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-lp .top-consult-contrast__item{
  padding: 12px 14px;
  border-radius: 12px;
  background: #f8fafc;
  font-size: 1.16rem;
  line-height: 1.68;
  color: #425466;
}

.top-lp .top-consult-contrast__item + .top-consult-contrast__item{
  margin-top: 10px;
}

.top-lp .top-consult-contrast__foot{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 1.14rem;
  line-height: 1.68;
  font-weight: 700;
}

.top-lp .top-consult-story{
  margin-top: 24px;
}

.top-lp .top-consult-story__inner{
  padding: 24px 22px;
  border-radius: 18px;
  background: #fbfcfe;
  border: 1px solid rgba(0, 91, 171, 0.08);
}

.top-lp .top-consult-story__kicker{
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: #6b7280;
}

.top-lp .top-consult-story__title{
  margin: 0;
  font-size: 1.82rem;
  line-height: 1.48;
  color: #16324f;
}

.top-lp .top-consult-story__lead{
  margin: 14px 0 0;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #54657a;
}

.top-lp .top-consult-story__bullets{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.top-lp .top-consult-story__bullets li{
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 91, 171, 0.08);
  font-size: 1.16rem;
  line-height: 1.68;
  color: #425466;
}

.top-lp .top-consult-story__bullets li + li{
  margin-top: 10px;
}

.top-lp .top-consult__cta{
  margin-top: 24px;
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff7eb;
  border: 1px solid rgba(227, 155, 48, 0.18);
  text-align: center;
}

.top-lp .top-consult__cta-text{
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.75;
  color: #425466;
}

.top-lp .top-consult__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  margin-top: 14px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #e39b30;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 960px){
  .top-lp .top-consult-contrast__grid{
    grid-template-columns: 1fr;
  }
}

.top-career-potential {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.top-career-potential__container {
  max-width: 1080px;
}

.top-career-potential__header {
  text-align: center;
  margin-bottom: 56px;
}

.top-career-potential__title {
  margin-top: 14px;
  font-size: 32px;
  line-height: 1.4;
  color: #1a357d;
}

.top-career-potential__subtitle {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.top-career-potential__hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.top-career-potential__photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 108, 189, 0.12);
}

.top-career-potential__photo {
  display: block;
  width: 100%;
  height: auto;
}

.top-career-potential__hero-highlight {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 700;
  color: #1a357d;
}

.top-career-potential__hero-description {
  font-size: 15px;
  line-height: 2;
  color: #334155;
}

.top-career-potential__section-title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #1a357d;
}

.top-career-potential__plan {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid #dbe7f3;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 108, 189, 0.06);
}

.top-career-potential__plan-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-career-potential__plan-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
  border: 1px solid #e3edf7;
}

.top-career-potential__plan-number {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6cbd 0%, #1a357d 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.06em;
}

.top-career-potential__plan-body h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.5;
  color: #0f172a;
}

.top-career-potential__plan-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.top-career-potential__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 30px 0 34px;
}

.top-career-potential__flow-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(15, 108, 189, 0.15) 0%, rgba(15, 108, 189, 0.7) 100%);
  border-radius: 999px;
}

.top-career-potential__flow-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f6cbd 0%, #00a692 100%);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(15, 108, 189, 0.18);
}

.top-career-potential__flow-label {
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
}

.top-career-potential__benefit-block {
  margin-bottom: 44px;
}

.top-career-potential__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.top-career-potential__benefit {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e3edf7;
  box-shadow: 0 12px 28px rgba(15, 108, 189, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-career-potential__benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f6cbd 0%, #00a692 100%);
}

.top-career-potential__benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 108, 189, 0.1);
}

.top-career-potential__benefit-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 15px;
  font-weight: 700;
}

.top-career-potential__benefit h4 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
  color: #1a357d;
}

.top-career-potential__benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
}

.top-career-potential__cta {
  text-align: center;
  margin-top: 12px;
}

.top-career-potential__cta-note {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 767px) {
  .top-career-potential {
    padding: 84px 0;
  }

  .top-career-potential__title {
    font-size: 26px;
  }

  .top-career-potential__hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top-career-potential__plan {
    padding: 24px 18px;
  }

  .top-career-potential__plan-item {
    padding: 16px;
  }

  .top-career-potential__benefits {
    grid-template-columns: 1fr;
  }

  .top-career-potential__flow {
    margin: 24px 0 28px;
  }
}

.top-career-potential {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.top-career-potential__container {
  max-width: 1080px;
}

.top-career-potential__header {
  text-align: center;
  margin-bottom: 56px;
}

.top-career-potential__title {
  margin-top: 14px;
  font-size: 32px;
  line-height: 1.4;
  color: #1a357d;
}

.top-career-potential__subtitle {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.top-career-potential__hero {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.top-career-potential__photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 108, 189, 0.12);
}

.top-career-potential__photo {
  display: block;
  width: 100%;
  height: auto;
}

.top-career-potential__hero-highlight {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 700;
  color: #1a357d;
}

.top-career-potential__hero-description {
  font-size: 15px;
  line-height: 2;
  color: #334155;
}

.top-career-potential__section-title {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  color: #1a357d;
}

.top-career-potential__plan {
  max-width: 860px;
  margin: 0 auto;
  padding: 36px;
  border: 1px solid #dbe7f3;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 108, 189, 0.06);
}

.top-career-potential__plan-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-career-potential__plan-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
  border: 1px solid #e3edf7;
}

.top-career-potential__plan-number {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6cbd 0%, #1a357d 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
  letter-spacing: 0.06em;
}

.top-career-potential__plan-body h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.5;
  color: #0f172a;
}

.top-career-potential__plan-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.top-career-potential__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 30px 0 34px;
}

.top-career-potential__flow-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(15, 108, 189, 0.15) 0%, rgba(15, 108, 189, 0.7) 100%);
  border-radius: 999px;
}

.top-career-potential__flow-arrow {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f6cbd 0%, #00a692 100%);
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 24px rgba(15, 108, 189, 0.18);
}

.top-career-potential__flow-label {
  font-size: 13px;
  line-height: 1.7;
  color: #64748b;
  text-align: center;
}

.top-career-potential__benefit-block {
  margin-bottom: 44px;
}

.top-career-potential__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.top-career-potential__benefit {
  position: relative;
  padding: 28px 22px 24px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e3edf7;
  box-shadow: 0 12px 28px rgba(15, 108, 189, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-career-potential__benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 52px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f6cbd 0%, #00a692 100%);
}

.top-career-potential__benefit:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 108, 189, 0.1);
}

.top-career-potential__benefit-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 15px;
  font-weight: 700;
}

.top-career-potential__benefit h4 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
  color: #1a357d;
}

.top-career-potential__benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #475569;
}

.top-career-potential__compare {
  margin-top: 56px;
  margin-bottom: 44px;
  padding: 40px 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #dbe7f3;
  box-shadow: 0 12px 30px rgba(15, 108, 189, 0.05);
}

.top-career-potential__compare-header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.top-career-potential__compare-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.top-career-potential__compare-lead {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.9;
  color: #475569;
}

.top-career-potential__compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.top-career-potential__compare-card {
  padding: 26px 22px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.top-career-potential__compare-card--warn {
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
  border-color: #f3dfb3;
}

.top-career-potential__compare-card--ok {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-color: #cfe2f6;
}

.top-career-potential__compare-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.top-career-potential__compare-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 700;
  flex: 0 0 auto;
}

.top-career-potential__compare-card--warn .top-career-potential__compare-icon {
  background: #fff3d6;
  color: #b7791f;
}

.top-career-potential__compare-card--ok .top-career-potential__compare-icon {
  background: #e8f3ff;
  color: #0f6cbd;
}

.top-career-potential__compare-head h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #1e293b;
}

.top-career-potential__compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.top-career-potential__compare-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.top-career-potential__compare-list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: #94a3b8;
}

.top-career-potential__compare-card--warn .top-career-potential__compare-list li::before {
  background: #d6a64f;
}

.top-career-potential__compare-card--ok .top-career-potential__compare-list li::before {
  background: #0f6cbd;
}

.top-career-potential__compare-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #e5edf5;
  font-size: 13px;
  line-height: 1.8;
  color: #64748b;
}

.top-career-potential__cta {
  text-align: center;
  margin-top: 12px;
}

.top-career-potential__cta-note {
  margin-top: 10px;
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 767px) {
  .top-career-potential {
    padding: 84px 0;
  }

  .top-career-potential__title {
    font-size: 26px;
  }

  .top-career-potential__hero {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .top-career-potential__plan {
    padding: 24px 18px;
  }

  .top-career-potential__plan-item {
    padding: 16px;
  }

  .top-career-potential__benefits {
    grid-template-columns: 1fr;
  }

  .top-career-potential__compare {
    margin-top: 40px;
    padding: 24px 16px;
    border-radius: 20px;
  }

  .top-career-potential__compare-grid {
    grid-template-columns: 1fr;
  }

  .top-career-potential__compare-head h4 {
    font-size: 16px;
  }

  .top-career-potential__flow {
    margin: 24px 0 28px;
  }
}

.top-reassurance {
  padding: 72px 0 32px;
}

.top-reassurance__container {
  max-width: 1080px;
}

.top-reassurance__inner {
  padding: 36px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fbff 0%, #fefefe 100%);
  border: 1px solid #dbe7f3;
}

.top-reassurance__header {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.top-reassurance__badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: 700;
}

.top-reassurance__title {
  font-size: 28px;
  line-height: 1.5;
  color: #1a357d;
}

.top-reassurance__lead {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.top-reassurance__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.top-reassurance__point {
  padding: 22px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
}

.top-reassurance__point h3 {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.5;
  color: #1e293b;
}

.top-reassurance__point p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

@media (max-width: 767px) {
  .top-reassurance {
    padding: 56px 0 20px;
  }

  .top-reassurance__inner {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .top-reassurance__title {
    font-size: 24px;
  }

  .top-reassurance__points {
    grid-template-columns: 1fr;
  }
}


.top-skills .top-skills__grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  align-items: stretch !important;
}

.top-skills .top-skills__card {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  display: flex;
  flex-direction: column;
}

.top-skills .top-skills__image-wrapper {
  width: 100%;
  overflow: hidden;
}

.top-skills .top-skills__image {
  display: block;
  width: 100%;
  height: auto;
}

.top-skills .top-skills__description {
  flex-grow: 1;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .top-skills .top-skills__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .top-skills .top-skills__grid {
    grid-template-columns: 1fr !important;
  }
}

/* =========================================
   reskilling summary section
   ========================================= */

.top-reskilling-explanation__summary {
  margin-top: 56px;
}

.top-reskilling-explanation__summary-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;

  padding: 40px;
  border-radius: 28px;

  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #dbe7f3;

  box-shadow: 0 16px 40px rgba(15,108,189,0.06);
}

/* 左テキスト */

.top-reskilling-explanation__summary-heading {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.4;
  color: #1a357d;
}

.top-reskilling-explanation__summary-lead {
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.top-reskilling-explanation__summary-list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
}

.top-reskilling-explanation__summary-list li {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

.top-reskilling-explanation__summary-list strong {
  color: #1a357d;
}

.top-reskilling-explanation__summary-connection {
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

/* 右画像 */

.top-reskilling-explanation__summary-photo {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.top-reskilling-explanation__summary-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* tablet */

@media (max-width: 1023px) {

  .top-reskilling-explanation__summary-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .top-reskilling-explanation__summary-heading {
    font-size: 24px;
  }

}

/* mobile */

@media (max-width: 767px) {

  .top-reskilling-explanation__summary {
    margin-top: 40px;
  }

  .top-reskilling-explanation__summary-inner {
    padding: 22px;
  }

  .top-reskilling-explanation__summary-photo img {
    min-height: 260px;
  }

}

/* =========================================
   Why Reskilling summary
   ========================================= */
.top-reskilling-explanation__summary {
  margin-top: 48px;
}

.top-reskilling-explanation__summary-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 40px;
  align-items: center;

  padding: 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #dbe7f3;
  box-shadow: 0 14px 36px rgba(15, 108, 189, 0.06);
}

.top-reskilling-explanation__summary-content {
  min-width: 0;
}

.top-reskilling-explanation__summary-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

.top-reskilling-explanation__summary-heading {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.45;
  color: #1a357d;
}

.top-reskilling-explanation__summary-lead {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 2;
  color: #334155;
}

.top-reskilling-explanation__summary-text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 2;
  color: #475569;
}

.top-reskilling-explanation__summary-text:last-child {
  margin-bottom: 0;
}

.top-reskilling-explanation__summary-visual {
  min-width: 0;
}

.top-reskilling-explanation__summary-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 108, 189, 0.12);
}

/* tablet */
@media (max-width: 1023px) {
  .top-reskilling-explanation__summary-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .top-reskilling-explanation__summary-heading {
    font-size: 26px;
  }

  .top-reskilling-explanation__summary-image {
    min-height: 320px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .top-reskilling-explanation__summary {
    margin-top: 36px;
  }

  .top-reskilling-explanation__summary-inner {
    padding: 22px 18px;
    border-radius: 20px;
    gap: 22px;
  }

  .top-reskilling-explanation__summary-heading {
    font-size: 22px;
  }

  .top-reskilling-explanation__summary-lead,
  .top-reskilling-explanation__summary-text {
    font-size: 14px;
    line-height: 1.9;
  }

  .top-reskilling-explanation__summary-image {
    min-height: 240px;
    border-radius: 18px;
  }
}


.top-reskilling-explanation__summary {
  margin-top: 48px;
}

.top-reskilling-explanation__summary-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #dbe7f3;
  box-shadow: 0 12px 30px rgba(15, 108, 189, 0.06);
}

.top-reskilling-explanation__summary-content {
  min-width: 0;
}

.top-reskilling-explanation__summary-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.top-reskilling-explanation__summary-heading {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.45;
  color: #1a357d;
}

.top-reskilling-explanation__summary-text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.top-reskilling-explanation__summary-connection {
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid #dbe7f3;
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

.top-reskilling-explanation__summary-visual {
  min-width: 0;
}

.top-reskilling-explanation__summary-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(15, 108, 189, 0.12);
}

@media (max-width: 1023px) {
  .top-reskilling-explanation__summary-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .top-reskilling-explanation__summary-heading {
    font-size: 24px;
  }

  .top-reskilling-explanation__summary-image {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .top-reskilling-explanation__summary {
    margin-top: 36px;
  }

  .top-reskilling-explanation__summary-inner {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .top-reskilling-explanation__summary-heading {
    font-size: 21px;
  }

  .top-reskilling-explanation__summary-text,
  .top-reskilling-explanation__summary-connection {
    font-size: 14px;
    line-height: 1.85;
  }

  .top-reskilling-explanation__summary-image {
    min-height: 220px;
    border-radius: 16px;
  }
}

/* ===============================
   Why Reskilling summary
   =============================== */

.top-reskilling-explanation__summary {
  margin-top: 48px;
}

.top-reskilling-explanation__summary-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #dbe7f3;
  box-shadow: 0 12px 30px rgba(15, 108, 189, 0.06);
}

.top-reskilling-explanation__summary-content {
  min-width: 0;
}

.top-reskilling-explanation__summary-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.top-reskilling-explanation__summary-heading {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.45;
  color: #1a357d;
}

.top-reskilling-explanation__summary-text {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.top-reskilling-explanation__summary-connection {
  margin: 4px 0 0;
  padding-top: 16px;
  border-top: 1px solid #dbe7f3;
  font-size: 15px;
  line-height: 1.9;
  color: #334155;
}

.top-reskilling-explanation__summary-visual {
  min-width: 0;
}

.top-reskilling-explanation__summary-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(15, 108, 189, 0.12);
}

.top-reskilling-explanation__summary,
.top-reskilling-explanation__summary * {
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .top-reskilling-explanation__summary-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .top-reskilling-explanation__summary-heading {
    font-size: 24px;
  }

  .top-reskilling-explanation__summary-image {
    min-height: 280px;
  }
}

@media (max-width: 767px) {
  .top-reskilling-explanation__summary {
    margin-top: 36px;
  }

  .top-reskilling-explanation__summary-inner {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .top-reskilling-explanation__summary-heading {
    font-size: 21px;
  }

  .top-reskilling-explanation__summary-text,
  .top-reskilling-explanation__summary-connection {
    font-size: 14px;
    line-height: 1.85;
  }

  .top-reskilling-explanation__summary-image {
    min-height: 220px;
    border-radius: 16px;
  }
}

.top-reskilling-explanation__data-lead--sub {
  margin-top: 12px;
}

.top-reskilling-explanation__data-header {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.top-reskilling-explanation__data-lead {
  font-size: 15px;
  line-height: 1.9;
  color: #475569;
}

.top-reskilling-explanation__data-lead strong {
  color: #1a357d;
}

/* =========================================
   Why Reskilling - Data section redesign
   ========================================= */

.top-reskilling-explanation__data-inner {
  padding: 56px 48px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f9ff 100%);
}

.top-reskilling-explanation__data-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.top-reskilling-explanation__data-copy {
  min-width: 0;
}

.top-reskilling-explanation__data-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eaf3ff;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.top-reskilling-explanation__data-title {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.45;
  color: #1a357d;
}

.top-reskilling-explanation__data-lead {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.95;
  color: #475569;
}

.top-reskilling-explanation__data-lead--sub {
  margin-bottom: 0;
}

.top-reskilling-explanation__data-lead strong {
  color: #1a357d;
}

.top-reskilling-explanation__data-visual {
  min-width: 0;
}

.top-reskilling-explanation__data-main-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(15, 108, 189, 0.12);
}

.top-reskilling-explanation__data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.top-reskilling-explanation__data-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: #fff;
  border-top: 4px solid #0f6cbd;
  box-shadow: 0 10px 24px rgba(15, 108, 189, 0.05);
}

.top-reskilling-explanation__data-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 12px;
  font-weight: 700;
}

.top-reskilling-explanation__data-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #1e293b;
}

.top-reskilling-explanation__data-bottom {
  margin-top: 8px;
}

.top-reskilling-explanation__data-bottom-photo {
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 16px;
  box-shadow: 0 16px 32px rgba(15, 108, 189, 0.1);
}

.top-reskilling-explanation__data-bottom-image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.top-reskilling-explanation__data-note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #d6e5f2;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
  color: #475569;
}

.top-reskilling-explanation__data-note strong {
  color: #1a357d;
}

@media (max-width: 1023px) {
  .top-reskilling-explanation__data-inner {
    padding: 40px 28px;
  }

  .top-reskilling-explanation__data-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .top-reskilling-explanation__data-title {
    font-size: 28px;
  }

  .top-reskilling-explanation__data-grid {
    grid-template-columns: 1fr;
  }

  .top-reskilling-explanation__data-main-image {
    min-height: 300px;
  }

  .top-reskilling-explanation__data-bottom-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .top-reskilling-explanation__data-inner {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .top-reskilling-explanation__data-title {
    font-size: 24px;
  }

  .top-reskilling-explanation__data-lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .top-reskilling-explanation__data-main-image {
    min-height: 220px;
    border-radius: 18px;
  }

  .top-reskilling-explanation__data-card {
    padding: 18px 16px;
  }

  .top-reskilling-explanation__data-card p {
    font-size: 14px;
  }

  .top-reskilling-explanation__data-bottom-image {
    height: 180px;
    border-radius: 16px;
  }

  .top-reskilling-explanation__data-note {
    font-size: 13px;
    text-align: left;
  }
}
.top-reskilling-explanation__data-bottom-image {
  display: block;
  width: 100%;
  height: 70px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .top-reskilling-explanation__data-bottom-image {
    height: 110px;
  }
}
.top-reskilling-explanation__data-bottom-image {
  height: 130px;
  object-fit: cover;
}

.top-reskilling-explanation__data-bottom-image {
  display: block;
  width: 100%;
  max-height: 140px;
  object-fit: cover;
}

.top-reskilling-explanation__data-bottom-image {
  display: block;
  width: 100%;
  max-height: 140px;
  object-fit: cover;
}

<section id="career-potential" class="top-career-potential">
  <div class="l-container top-career-potential__container">

    <header class="top-career-potential__header">
      <div class="top-career-potential__badge">
        <span class="top-career-potential__badge-text">Reskilling × Career Design</span>
      </div>

      <h2 class="top-career-potential__title">
        リスキリング×キャリア相談で、<br>
        “学び直し”を成果につなげる
      </h2>

      <p class="top-career-potential__subtitle">
        何を学ぶかの前に、今までの経験をどう活かせるかを一緒に整理します。
      </p>
    </header>

    <div class="top-career-potential__hero">
      <div class="top-career-potential__photo-wrap">
        <img
          src="/wp-content/themes/swell_child/images/career-potential-main.jpg"
          alt="キャリア相談を通じて学び直しの方向性を整理するイメージ"
          class="top-career-potential__photo"
        >
      </div>

      <div class="top-career-potential__hero-text">
        <p class="top-career-potential__hero-highlight">
          学び直しは、知識を増やすことが目的ではありません。
        </p>
        <p class="top-career-potential__hero-description">
          仕事で使える形に落とし込み、提案や意思決定に活かせるようになることで、
          学びは成果につながります。まずは今までの経験を整理し、
          どこに強みがあり、どんな選択肢があるのかを明確にします。
        </p>
      </div>
    </div>

    <section class="top-career-potential__compare" aria-labelledby="career-potential-compare">
      <div class="top-career-potential__compare-header">
        <p class="top-career-potential__compare-kicker">迷っている段階でも大丈夫です</p>
        <h3 id="career-potential-compare" class="top-career-potential__section-title">
          学びを成果につなげやすい進め方があります
        </h3>
        <p class="top-career-potential__compare-lead">
          何を学ぶかを急いで決めるより、今の経験をどう活かすかを整理してから始める方が、
          学びは実務やキャリアにつながりやすくなります。
        </p>
      </div>

      <div class="top-career-potential__compare-grid">
        <article class="top-career-potential__compare-card top-career-potential__compare-card--warn">
          <div class="top-career-potential__compare-head">
            <span class="top-career-potential__compare-icon" aria-hidden="true">⚠</span>
            <h4>遠回りになりやすい進め方</h4>
          </div>

          <ul class="top-career-potential__compare-list">
            <li>何を目指すか決めずに学び始める</li>
            <li>業務と結びつかない内容を選んでしまう</li>
            <li>独学だけで進めて迷いやすくなる</li>
          </ul>

          <p class="top-career-potential__compare-foot">
            学び方とキャリア設計が分かれていると、継続もしづらくなります。
          </p>
        </article>

        <article class="top-career-potential__compare-card top-career-potential__compare-card--ok">
          <div class="top-career-potential__compare-head">
            <span class="top-career-potential__compare-icon" aria-hidden="true">✓</span>
            <h4>相談から始める進め方</h4>
          </div>

          <ul class="top-career-potential__compare-list">
            <li>今の経験をどう活かすかを整理する</li>
            <li>どんなキャリアにつなげたいかを考える</li>
            <li>学ぶ順番と実務での活かし方を一緒に決める</li>
          </ul>

          <p class="top-career-potential__compare-foot">
            方向性が見えると、学び直しが成果につながりやすくなります。
          </p>
        </article>
      </div>
    </section>

    <div class="top-career-potential__info-grid">

      <section class="top-career-potential__panel top-career-potential__panel--plan" aria-labelledby="career-potential-plan">
        <h3 id="career-potential-plan" class="top-career-potential__panel-title">
          相談で一緒に作るもの
        </h3>

        <ul class="top-career-potential__list">
          <li class="top-career-potential__item">
            <span class="top-career-potential__item-number">01</span>
            <div class="top-career-potential__item-body">
              <h4>キャリア棚卸しメモ</h4>
              <p>経験・強み・価値観を整理し、「活かせる形」に言語化します。</p>
            </div>
          </li>

          <li class="top-career-potential__item">
            <span class="top-career-potential__item-number">02</span>
            <div class="top-career-potential__item-body">
              <h4>選択肢マップ</h4>
              <p>現職強化／転換／副業など、現実的な選択肢を整理します。</p>
            </div>
          </li>

          <li class="top-career-potential__item">
            <span class="top-career-potential__item-number">03</span>
            <div class="top-career-potential__item-body">
              <h4>30/60/90日リスキリング計画</h4>
              <p>学ぶ内容・順番・アウトプットを、続けられる計画に落とします。</p>
            </div>
          </li>
        </ul>
      </section>

      <section class="top-career-potential__panel top-career-potential__panel--benefit" aria-labelledby="career-potential-benefit">
        <h3 id="career-potential-benefit" class="top-career-potential__panel-title">
          相談後に見えやすくなること
        </h3>

        <div class="top-career-potential__benefits">
          <article class="top-career-potential__benefit">
            <div class="top-career-potential__benefit-icon">再</div>
            <div>
              <h4>経験が“再現性”になる</h4>
              <p>感覚や属人的な判断をデータで言語化できると、成果が再現しやすくなります。</p>
            </div>
          </article>

          <article class="top-career-potential__benefit">
            <div class="top-career-potential__benefit-icon">決</div>
            <div>
              <h4>意思決定に近づく</h4>
              <p>根拠を持って提案できると、会議・企画・施策の中心に入りやすくなります。</p>
            </div>
          </article>

          <article class="top-career-potential__benefit">
            <div class="top-career-potential__benefit-icon">変</div>
            <div>
              <h4>変化に強いキャリア設計へ</h4>
              <p>AIやDXで業務が変わっても、問いを立てて価値を出す力は残ります。</p>
            </div>
          </article>
        </div>
      </section>

    </div>

    <div class="top-career-potential__cta">
      <a href="#apply" class="top-career-potential__button">無料キャリア相談へ進む</a>
      <p class="top-career-potential__cta-note">※「転職するか未定」の段階でも大丈夫です</p>
    </div>

  </div>
</section>

/* ===============================
   Career Potential info grid reset
   =============================== */

.top-career-potential .top-career-potential__info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 36px;
  margin-bottom: 24px;
}

.top-career-potential .top-career-potential__info-card {
  padding: 28px 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #dbe7f3;
  box-shadow: 0 12px 28px rgba(15, 108, 189, 0.05);
  min-width: 0;
}

.top-career-potential .top-career-potential__info-title {
  margin: 0 0 18px;
  font-size: 22px;
  line-height: 1.5;
  color: #1a357d;
}

/* 左：相談で一緒に作るもの */
.top-career-potential .top-career-potential__plan-list {
  display: grid;
  gap: 14px;
}

.top-career-potential .top-career-potential__plan-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e3edf7;
}

.top-career-potential .top-career-potential__plan-number {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6cbd 0%, #1a357d 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.top-career-potential .top-career-potential__plan-text h4 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.5;
  color: #1e293b;
}

.top-career-potential .top-career-potential__plan-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

/* 右：相談後に見えやすくなること */
.top-career-potential .top-career-potential__benefit-list {
  display: grid;
  gap: 14px;
}

.top-career-potential .top-career-potential__benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fbff;
  border: 1px solid #e3edf7;
}

.top-career-potential .top-career-potential__benefit-badge {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #eef6ff;
  color: #0f6cbd;
  font-size: 14px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.top-career-potential .top-career-potential__benefit-text h4 {
  margin: 0 0 6px;
  font-size: 16px;
  line-height: 1.5;
  color: #1a357d;
}

.top-career-potential .top-career-potential__benefit-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
}

/* 以前の縦並び・小カード影響を切る */
.top-career-potential .top-career-potential__panel,
.top-career-potential .top-career-potential__panel--plan,
.top-career-potential .top-career-potential__panel--benefit,
.top-career-potential .top-career-potential__benefits,
.top-career-potential .top-career-potential__benefit,
.top-career-potential .top-career-potential__list,
.top-career-potential .top-career-potential__item {
  all: unset;
  box-sizing: border-box;
}

/* スマホは縦 */
@media (max-width: 1023px) {
  .top-career-potential .top-career-potential__info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .top-career-potential .top-career-potential__info-card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .top-career-potential .top-career-potential__info-title {
    font-size: 19px;
  }

  .top-career-potential .top-career-potential__plan-row,
  .top-career-potential .top-career-potential__benefit-row {
    padding: 14px;
    border-radius: 14px;
  }
}
