@charset "UTF-8";
/* =====================================================================
   AIテイラーメイドトレーニング LP
   Figma: 【LP】AI Personal Training_2026.08 (1440px基準)
   ===================================================================== */

:root {
  --navy: #1b1e4b;        /* Port Gore : ダークセクション背景 */
  --navy-90: #23264f;
  --orange: #ff6a39;      /* Burning Orange : CTA */
  --orange-dark: #f2551f;
  --portage: #9da0f0;     /* ダーク上のアクセント文字 */
  --moonraker: #c7c9f5;   /* Moon Raker : 薄い番号・破線・区切り */
  --red: #e24b4b;         /* Mandy : 92% 等の強調数値 */
  --royal: #4b4fe8;       /* Royal Blue : 番号・✓・アクセント */
  --arrow: #7c80f0;       /* Portage : フロー矢印 */
  --comet: #5a5d80;       /* Comet : 本文サブ */
  --martinique: #2a2c4a;  /* Martinique : リスト本文 */
  --indigo: #4b4fe8;      /* アイコン・図のライン */
  --indigo-bg: #eef0ff;
  --athens: #edeef3;      /* Athens Gray : フロー外枠 */
  --snuff: #e3e4f0;       /* ボーダー */
  --ink: #1b1e4b;         /* 本文（濃紺） */
  --ink-2: #4a4d6b;       /* 本文サブ */
  --bg-gray: #f5f6fb;
  --white: #ffffff;
  --green: #16a37b;       /* 助成・成果のポジティブ */
  --font-jp: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-num: "Manrope", var(--font-jp);
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-jp); color: var(--ink); line-height: 1.7; background: var(--white); overflow-x: hidden; }
img { max-width: none; display: block; }
a { color: inherit; text-decoration: none; }

.lp-scale { width: 1440px; transform-origin: top left; }

/* reCAPTCHAバッジ非表示（他ページと同挙動） */
.grecaptcha-badge { opacity: 0; pointer-events: none; visibility: hidden; }

/* 共通インナー */
.inner { max-width: var(--maxw); margin: 0 auto; padding: 0 40px; width: 100%; }

/* 共通CTA（オレンジ丸ボタン） */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--orange); color: var(--white); font-weight: 700; font-size: 17px;
  min-height: 60px; padding: 20px 34px; border-radius: 999px;
  box-shadow: 0 6px 10px rgba(10,12,40,.35); white-space: nowrap;
  transition: background .2s;
}
.btn-cta:hover { background: var(--orange-dark); }
.btn-cta--sm { min-height: 52px; font-size: 16px; padding: 14px 28px; }

/* 共通セクション見出し */
.sec-head { text-align: center; }
.sec-head__sub { display: inline-block; color: var(--indigo); font-weight: 700; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.sec-head__ttl { font-size: 34px; font-weight: 700; line-height: 1.4; margin: 0; }
.sec-head__lead { font-size: 16px; color: var(--ink-2); margin: 18px 0 0; }

/* =========================================================
   Header（固定）
   ========================================================= */
.header {
  position: fixed; top: 0; left: 0; width: 1440px; transform-origin: top left; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(3px);
  padding: 0 100px;
}
.header__row { display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: 0 auto; padding: 16px 40px; }
.header__logo img { height: 26px; width: auto; }
.header__nav { display: flex; align-items: center; gap: 24px; }
.header__btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 12px 22px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.header__btn--ghost { border: 1px solid var(--snuff); color: var(--navy); background: var(--white); }
.header__btn--cta { background: var(--orange); color: var(--white); }
.header__btn--cta:hover { background: var(--orange-dark); }

/* =========================================================
   MV
   ========================================================= */
.mv { position: relative; background: var(--navy); min-height: 620px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.mv__bg { position: absolute; inset: 0 0 0 48%; overflow: hidden; }
.mv__bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 82%; }
.mv__bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, rgba(27,30,75,.72) 12%, rgba(27,30,75,.14) 34%, rgba(27,30,75,0) 60%); }
.mv__inner { position: relative; width: 1240px; max-width: 1240px; padding: 96px 40px; }
.mv__content { display: flex; flex-direction: column; gap: 22px; max-width: 680px; }
.mv__label { color: var(--portage); font-weight: 700; font-size: 13px; letter-spacing: 1.3px; }
.mv__title { color: var(--white); font-weight: 700; font-size: 68px; line-height: 1.02; letter-spacing: -1.36px; margin: 0; text-shadow: 0 1px 14px rgba(10,12,40,.45); }
.mv__sub { color: var(--white); font-weight: 700; font-size: 30px; line-height: 1.55; margin: 0; text-shadow: 0 1px 12px rgba(10,12,40,.45); }
.mv__desc { color: var(--moonraker); font-weight: 400; font-size: 19px; line-height: 1.9; margin: 0; text-shadow: 0 1px 10px rgba(10,12,40,.45); }
.mv__actions { margin-top: 6px; }

/* =========================================================
   Problem
   ========================================================= */
.problem { background: var(--white); padding: 100px 0; }
.problem__ttl { text-align: center; font-size: 34px; font-weight: 700; line-height: 1.5; margin: 0 0 56px; }
.problem__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.pcard__img { width: 100%; height: 222px; object-fit: cover; border-radius: 10px; }
.pcard__ttl { font-size: 22px; font-weight: 700; margin: 22px 0 12px; }
.pcard__txt { font-size: 16px; color: var(--ink-2); margin: 0; }

/* =========================================================
   Band（92%）
   ========================================================= */
.band { background: var(--navy); padding: 100px 0; }
.band__row { display: flex; align-items: center; justify-content: center; gap: 72px; }
.band__num { position: relative; flex-shrink: 0; display: flex; align-items: baseline; color: var(--red); }
.band__num-pre { color: var(--portage); font-size: 22px; font-weight: 700; align-self: flex-start; margin-top: 30px; }
.band__num-fig { font-family: var(--font-num); font-weight: 700; font-size: 180px; line-height: 1; letter-spacing: -9px; }
.band__num-unit { font-family: var(--font-num); font-weight: 700; font-size: 56px; }
.band__body { max-width: 800px; }
.band__lead { color: var(--portage); font-size: 17px; margin: 0 0 10px; }
.band__ttl { color: var(--white); font-size: 30px; font-weight: 700; line-height: 1.65; margin: 0; }

/* =========================================================
   USP
   ========================================================= */
.usp { background: var(--bg-gray); padding: 103px 0; }
.usp .sec-head__ttl { font-size: 38px; }
.usp__blocks { display: flex; flex-direction: column; gap: 32px; margin-top: 44px; }
.usp-block { background: var(--white); border-radius: 16px; padding: 44px 40px; display: grid; grid-template-columns: 330px 1fr; gap: 40px; align-items: center; }
.usp-block__no { font-family: var(--font-num); font-size: 56px; font-weight: 700; color: var(--royal); line-height: 1; letter-spacing: -1.68px; }
.usp-block__ttl { font-size: 26px; font-weight: 700; margin: 15px 0 15px; line-height: 1.5; }
.usp-block__txt { font-size: 17px; color: var(--comet); margin: 0; line-height: 1.9; }
.usp-flow { background: var(--athens); border-radius: 12px; padding: 24px 20px; }
.usp-flow__row { display: flex; align-items: center; justify-content: center; gap: 8px; }
.usp-flow__card { background: var(--white); border-radius: 12px; width: 144px; min-height: 122px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px; padding: 18px 10px; text-align: center; flex-shrink: 0; }
.usp-flow__card img { width: 46px; height: 46px; }
.usp-flow__card span { font-size: 13px; font-weight: 700; line-height: 1.5; color: var(--navy); }
.usp-flow__card--down { margin-top: 44px; }
.usp-flow__arrow { color: var(--arrow); font-size: 19px; font-weight: 700; flex-shrink: 0; }

/* =========================================================
   USP2（研修設計内容 3列）
   ========================================================= */
.design { background: var(--white); padding: 119px 0 120px; }
.design .sec-head__ttl { font-size: 38px; }
.design__cols { display: flex; align-items: stretch; margin-top: 56px; }
.dcol { flex: 1; background: var(--white); border: 1px solid var(--snuff); border-radius: 12px; padding: 36px 32px; }
.dcol__no { font-family: var(--font-num); font-size: 48px; font-weight: 700; color: var(--moonraker); line-height: 1; letter-spacing: -1.44px; }
.dcol__ttl { font-size: 22px; font-weight: 700; margin: 16px 0 12px; line-height: 1.5; }
.dcol__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.dcol__list li { position: relative; padding-left: 28px; font-size: 17px; line-height: 1.7; color: var(--martinique); }
.dcol__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--royal); font-size: 17px; font-weight: 700; }
.dcol__sep { display: flex; align-items: center; color: var(--moonraker); font-size: 28px; font-weight: 700; padding: 0 8px; }
.design__note { background: var(--bg-gray); border-radius: 16px; padding: 44px 40px; text-align: center; font-size: 30px; font-weight: 700; line-height: 1.6; margin: 56px 0 0; color: var(--navy); }
.design__note em { font-family: var(--font-num); color: var(--royal); font-style: normal; }

/* =========================================================
   ROI
   ========================================================= */
.roi { background: var(--bg-gray); padding: 95px 0 96px; }
.roi .sec-head__ttl { font-size: 38px; }
.roi .sec-head__lead { font-size: 19px; }
/* タブ（上角丸＋下線） */
.roi__tabs { display: flex; gap: 8px; width: 100%; border-bottom: 1px solid var(--snuff); margin-top: 20px; }
.roi__tab { padding: 18px 40px; border: 1px solid var(--snuff); border-bottom: none; border-radius: 12px 12px 0 0; background: var(--white); font-weight: 700; font-size: 19px; color: var(--comet); cursor: pointer; user-select: none; transition: background .15s, color .15s; }
.roi__tab:hover { color: var(--navy); }
.roi__tab.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); cursor: default; }
.roi__panel { padding-top: 28px; }
.roi__panel.is-hidden { display: none; }
.roi__meta { display: inline-block; background: var(--athens); color: var(--comet); font-weight: 700; font-size: 12px; letter-spacing: .24px; padding: 8px 16px; border-radius: 999px; }
/* セクション番号ラベル（薄い番号＋青ラベル） */
.roi-secnum { display: flex; gap: 10px; align-items: center; font-size: 13px; font-weight: 700; letter-spacing: 1.3px; padding-top: 40px; }
.roi-secnum--first { padding-top: 15px; }
.roi-secnum__no { font-family: var(--font-num); color: var(--moonraker); }
.roi-secnum__label { color: var(--royal); }
/* 01 成果目標 */
.roi-goal { display: flex; align-items: baseline; gap: 14px; padding-top: 12px; }
.roi-goal__label { font-size: 30px; font-weight: 700; color: var(--navy); }
.roi-goal__fig { font-family: var(--font-num); font-size: 76px; font-weight: 700; color: var(--royal); line-height: 1; letter-spacing: -3px; }
.roi-goal__unit { font-family: var(--font-num); font-size: 36px; font-weight: 700; color: var(--royal); }
/* 02 カリキュラム（4テキスト列・アイコン無し） */
.roi-cur { display: flex; gap: 32px; padding-top: 14px; }
.roi-cur__col { flex: 1; min-width: 0; }
.roi-cur__cat { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; color: var(--comet); margin: 0 0 10px; }
.roi-cur__ttl { font-size: 19px; font-weight: 700; color: var(--navy); margin: 0 0 10px; line-height: 1.6; }
.roi-cur__txt { font-size: 14px; color: var(--comet); margin: 0; line-height: 1.85; }
/* 03 試算（3テキスト列・カード無し） */
.roi-calc { display: flex; gap: 40px; padding-top: 14px; padding-bottom: 40px; }
.roi-calc__col { flex: 1; min-width: 0; }
.roi-calc__label { font-size: 13px; color: var(--comet); margin: 0 0 8px; }
.roi-calc__fig { font-family: var(--font-num); font-size: 38px; font-weight: 700; color: var(--navy); margin: 0; letter-spacing: -1.14px; line-height: 1.1; }
.roi-calc__fig small { font-family: var(--font-jp); font-size: 17px; font-weight: 400; margin-right: 6px; }
.roi-calc__fig--roi { font-size: 52px; color: var(--royal); letter-spacing: -2px; }
.roi-calc__note { font-size: 12px; color: var(--comet); margin: 6px 0 0; line-height: 1.6; }
/* 04 受講後の変化（白カード） */
.roi-voice { background: var(--white); border: 1px solid var(--snuff); border-radius: 16px; padding: 40px; }
.roi-voice .roi-secnum { padding-top: 0; }
.roi-voice__ttl { font-size: 22px; font-weight: 700; color: var(--navy); margin: 14px 0 14px; }
.roi-voice__txt { font-size: 17px; color: var(--comet); margin: 0; line-height: 1.95; }
.roi__disc { font-size: 12px; color: var(--comet); margin: 27px 0 0; line-height: 1.9; }

/* =========================================================
   資料請求ブロック（SEC）
   ========================================================= */
.material { background: var(--navy); padding: 120px 0; color: #fff; }
.material__ttl { text-align: center; font-size: 30px; font-weight: 700; color: #fff; margin: 0 0 48px; line-height: 1.6; }
.material__row { display: flex; gap: 64px; align-items: center; justify-content: center; padding-bottom: 40px; }
.material__img { width: 576px; flex-shrink: 0; }
.material__img img { width: 100%; height: auto; border-radius: 10px; }
.material__list { width: 519px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }
.material__item { display: flex; gap: 12px; align-items: baseline; }
.material__check { color: var(--arrow); font-size: 17px; font-weight: 700; flex-shrink: 0; }
.material__item b { color: #fff; font-size: 19px; font-weight: 700; }
.material__item small { color: var(--portage); font-size: 14px; font-weight: 500; margin-left: 8px; }
.material__btn { display: inline-flex; align-items: center; justify-content: center; border: 1px solid #fff; color: #fff; background: transparent; font-weight: 700; font-size: 17px; min-height: 60px; padding: 20px 34px; border-radius: 999px; margin-top: 6px; }
.material__btn:hover { background: rgba(255,255,255,.1); }
.material__cta { border-top: 1px solid rgba(199,201,245,.3); padding-top: 63px; text-align: center; }
.material__cta-ttl { font-size: 30px; font-weight: 700; color: #fff; margin: 0 0 7px; }
.material__cta-sub { font-size: 19px; color: #fff; margin: 0 0 4px; }
.material__cta-note { font-size: 17px; color: var(--portage); margin: 0 0 27px; }

/* =========================================================
   Price
   ========================================================= */
.price { background: var(--white); padding: 119px 0 120px; }
.price .sec-head__ttl { font-size: 38px; }
.price__body { display: flex; gap: 56px; align-items: center; justify-content: center; padding-top: 55px; }
.price__left { width: 439px; flex-shrink: 0; }
.price__normal { font-family: var(--font-num); font-weight: 400; font-size: 17px; color: var(--comet); margin: 0 0 12px; }
.price__main { display: flex; align-items: flex-end; gap: 10px; }
.price__main .lbl { font-size: 22px; font-weight: 700; color: var(--navy); padding-bottom: 14px; }
.price__main .fig { font-family: var(--font-num); font-weight: 700; font-size: 104px; color: var(--navy); line-height: .9; letter-spacing: -5.2px; }
.price__right { width: 664px; flex-shrink: 0; }
.price__label { font-size: 13px; font-weight: 700; letter-spacing: 1.3px; color: var(--royal); margin: 0 0 8px; }
.price__subtotal { font-family: var(--font-num); font-size: 19px; font-weight: 700; color: var(--navy); margin: 0 0 4px; }
.price__subnote { font-size: 14px; color: var(--comet); margin: 0 0 13px; }
.price__desc { font-size: 17px; color: var(--comet); margin: 0 0 22px; line-height: 1.9; }
.price__desc strong { color: var(--navy); font-weight: 700; }
.price__disc { font-size: 12px; color: var(--comet); margin: 38px 0 0; line-height: 1.7; }
.price__disc + .price__disc { margin-top: 6px; }

/* =========================================================
   Service
   ========================================================= */
.service { background: var(--bg-gray); padding: 119px 0 120px; }
.service .sec-head { align-items: center; }
.service .sec-head__ttl { font-size: 38px; }
.service__diagram { display: flex; align-items: center; gap: 72px; margin: 56px 0 0; }
/* 放射状ダイアグラム（460×440 の絶対配置） */
.service__radial { position: relative; width: 460px; height: 440px; flex-shrink: 0; }
.service__ring { position: absolute; left: 62px; top: 62px; width: 336px; height: 336px; border: 1px dashed var(--moonraker); border-radius: 50%; }
.service__hub { position: absolute; left: 146px; top: 146px; width: 168px; height: 168px; background: var(--navy); border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; }
.service__hub small { font-size: 12px; color: var(--portage); letter-spacing: .5px; margin-bottom: 2px; }
.service__hub b { font-size: 17px; line-height: 1.5; }
.service__node { position: absolute; width: 124px; height: 124px; background: #fff; border-radius: 50%; box-shadow: 0 6px 16px rgba(10,12,40,.08); display: flex; align-items: center; justify-content: center; text-align: center; font-size: 13px; font-weight: 700; color: var(--navy); line-height: 1.5; padding: 8px; }
.service__node--1 { left: 168px; top: 0; font-size: 11px; }
.service__node--2 { left: 328px; top: 116px; font-size: 12px; }
.service__node--3 { left: 267px; top: 304px; }
.service__node--4 { left: 69px;  top: 304px; }
.service__node--5 { left: 8px;   top: 116px; }
.service__text { flex: 1; }
.service__text h3 { font-size: 22px; font-weight: 700; margin: 0 0 24px; line-height: 1.7; }
.service__text p { font-size: 17px; color: var(--comet); margin: 0 0 16px; line-height: 2; }
.service__text p:last-child { margin-bottom: 0; }

/* =========================================================
   Form
   ========================================================= */
.form-sec { background: var(--navy); padding: 120px 0; }
.form-wrap { display: flex; justify-content: space-between; align-items: flex-start; }
.form-side { width: 460px; flex-shrink: 0; color: #fff; }
.form-side__ttl { font-size: 38px; font-weight: 700; color: #fff; line-height: 1.45; margin: 0 0 18px; letter-spacing: -.76px; }
.form-side__sub { font-size: 19px; color: var(--portage); line-height: 1.9; margin: 0 0 26px; }
.form-side__tel-label { font-size: 19px; color: var(--portage); margin: 0; }
.form-side__tel { font-family: var(--font-num); font-size: 38px; font-weight: 700; color: #fff; margin: 0 0 14px; letter-spacing: .76px; }
.form-side__addr { border-top: 1px solid rgba(199,201,245,.3); padding-top: 32px; font-size: 17px; color: var(--portage); line-height: 1.9; margin: 0; }
.form-side__doc { border-top: 1px solid rgba(199,201,245,.3); margin-top: 32px; padding-top: 40px; }
.form-side__doc-label { font-size: 14px; font-weight: 700; letter-spacing: 1.4px; color: var(--arrow); margin: 0 0 20px; }
.form-side__doc-row { display: flex; gap: 24px; align-items: center; }
.form-side__doc-img { width: 200px; flex-shrink: 0; }
.form-side__doc-img img { width: 100%; height: auto; border-radius: 6px; }
.form-side__doc-list { display: flex; flex-direction: column; gap: 10px; }
.form-side__doc-item { display: flex; gap: 10px; align-items: baseline; }
.form-side__doc-item .chk { color: var(--arrow); font-size: 19px; flex-shrink: 0; }
.form-side__doc-item span { color: #fff; font-size: 19px; }
.form-main { width: 540px; flex-shrink: 0; background: #fff; border-radius: 16px; padding: 44px 40px; }
.form-main__note { font-size: 13px; color: var(--comet); margin: 0 0 28px; }
.form-field { margin-bottom: 22px; }
.form-field__label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; border: 1px solid var(--snuff); border-radius: 10px; padding: 14px 16px; font-size: 17px; font-family: inherit; background: #fff; color: var(--ink);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #757575; }
.form-field textarea { min-height: 110px; resize: vertical; }
.form-radio { display: flex; gap: 28px; }
.form-radio label { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; color: var(--martinique); white-space: nowrap; }
.form-agree { display: flex; align-items: flex-start; gap: 12px; font-size: 13.5px; color: var(--martinique); margin: 20px 0; line-height: 1.7; }
.form-agree a { color: var(--royal); font-weight: 700; text-decoration: underline; }
.form-submit { display: flex; align-items: center; justify-content: center; width: 100%; text-align: center; background: var(--athens); color: var(--comet); font-weight: 700; font-size: 19px; min-height: 62px; padding: 20px; border-radius: 999px; border: none; cursor: pointer; }
.form-submit:hover { background: #e2e3ee; }
/* 無料相談で整理できること（CTA型） */
.form-cta__label { font-size: 14px; font-weight: 700; letter-spacing: .4px; color: var(--arrow); margin: 0 0 12px; }
.form-cta__ttl { font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.55; margin: 0 0 24px; }
.form-cta__list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.form-cta__list li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.6; color: var(--martinique); }
.form-cta__list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--royal); font-size: 15px; font-weight: 700; }
.form-cta__primary { display: flex; width: 100%; min-height: 62px; font-size: 19px; margin: 0; }
.form-cta__divider { border: 0; border-top: 1px solid var(--snuff); margin: 28px 0 20px; }
.form-cta__subnote { font-size: 13px; color: var(--comet); margin: 0 0 12px; }
.form-cta__doc { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 56px; padding: 16px; border: 1px solid var(--snuff); border-radius: 999px; background: var(--white); color: var(--navy); font-weight: 700; font-size: 17px; text-align: center; transition: background .15s; }
.form-cta__doc:hover { background: var(--bg-gray); }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--navy); padding: 36px 40px; text-align: center; }
.footer__copy { font-family: var(--font-num); font-size: 12px; color: var(--portage); margin: 0; line-height: 1.9; }

/* =========================================================
   Page top
   ========================================================= */
.page-top { position: fixed; right: 24px; bottom: 24px; width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 90; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.page-top.is-visible { opacity: 1; visibility: visible; }
.page-top::before { content: ""; width: 12px; height: 12px; border-top: 2px solid #fff; border-right: 2px solid #fff; transform: rotate(-45deg); margin-top: 4px; }
