/* ============================================================
   出張型AIスキル実践活用研修 LP
   Design System: 参考LP「シャイン」準拠(design_shine_lp.md)
   ============================================================ */
:root {
  --color-main: #0079aa;
  --color-main-dark: #005f8f;
  --color-main-light: #dff3fb;
  --color-bg-blue: #eaf7fc;
  --color-bg-light: #f6fbfd;
  --color-accent: #fff13b;
  --color-accent-deep: #ffe22e;
  --color-text: #1f4d63;
  --color-text-dark: #10384d;
  --color-text-light: #6f8792;
  --color-white: #ffffff;

  --font-ja: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Montserrat", "Poppins", sans-serif;
  --font-script: "Dancing Script", cursive;

  --container: 1080px;
  --container-narrow: 860px;
  --shadow-card: 0 16px 30px rgba(0, 72, 110, 0.14);
  --shadow-button: 0 10px 22px rgba(0, 121, 170, 0.24);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-ja);
  color: var(--color-text);
  font-size: 14px;
  line-height: 2.1;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
picture { display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* ---------- 共通見出し ---------- */
.section-en {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-main);
  line-height: 1.2;
}
.section-sub-ja {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-text-light);
  margin-top: 6px;
}
.section-title {
  font-size: 28px;
  line-height: 1.7;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 18px;
}
.marker {
  background: linear-gradient(transparent 62%, var(--color-accent) 62%);
  font-weight: 700;
}
.label-badge {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  margin-bottom: 12px;
}

/* ---------- 三角形装飾（ずらし重ね） ---------- */
.tri { position: absolute; pointer-events: none; }
.tri::before,
.tri::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
/* 手前の三角形 */
.tri::after { background: var(--tri-color); }
/* 奥にずらした三角形 */
.tri::before {
  background: var(--tri-color-back, var(--tri-color));
  opacity: .32;
  transform: translate(26%, -20%);
}
/* 大きい青は3枚重ね（::afterの影で中間の1枚を追加） */
.tri-blue {
  width: 64px; height: 56px;
  --tri-color: #9bdff2;
  --tri-color-back: var(--color-main);
}
.tri-blue::after { filter: drop-shadow(11px -8px 0 rgba(0, 121, 170, .34)); }
.tri-blue::before { opacity: .16; transform: translate(38%, -30%); }
.tri-yellow {
  width: 40px; height: 36px;
  --tri-color: var(--color-accent);
  --tri-color-back: var(--color-main);
}
.tri-navy {
  width: 48px; height: 42px;
  --tri-color: var(--color-main);
  --tri-color-back: #9bdff2;
  opacity: .85;
}
.tri-navy::before { opacity: .55; }
.tri-sm { transform: scale(.6); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  line-height: 1.4;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); opacity: .94; }
.btn-primary {
  background: var(--color-main);
  color: #fff;
  box-shadow: var(--shadow-button);
}
.btn-entry {
  background: var(--color-accent);
  color: var(--color-text-dark);
  box-shadow: 0 10px 22px rgba(255, 226, 46, 0.4);
}
.btn .arrow { font-family: var(--font-en); font-weight: 800; }
.btn-note {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--color-main-dark);
  margin-bottom: 8px;
  text-align: center;
}

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  padding: 0 0 0 28px;
  box-shadow: 0 2px 12px rgba(0, 80, 120, .06);
}
.header-logo { display: flex; align-items: baseline; gap: 10px; }
.header-logo .logo-mark {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-main);
  letter-spacing: .04em;
  white-space: nowrap;
}
.header-logo .logo-mark span { color: var(--color-text-dark); }
.header-logo .logo-ja { font-size: 10px; font-weight: 700; color: var(--color-text-light); letter-spacing: .1em; }
.header-right { display: flex; align-items: center; height: 100%; }
.nav { display: flex; gap: 26px; margin-right: 28px; }
.nav a { display: block; text-align: center; line-height: 1.5; }
.nav a .en { font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; color: var(--color-text-dark); display: block; }
.nav a .ja { font-size: 9px; color: var(--color-text-light); display: block; }
.nav a:hover .en { color: var(--color-main); }
.header-cta { display: flex; height: 100%; }
.header-cta a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 108px; height: 100%;
  font-family: var(--font-en); font-size: 12px; font-weight: 800; letter-spacing: .1em;
  line-height: 1.4;
}
.header-cta a small { font-size: 9px; font-family: var(--font-ja); font-weight: 700; letter-spacing: .06em; }
.header-cta .h-entry { background: var(--color-accent); color: var(--color-text-dark); }
.header-cta .h-contact { background: var(--color-main); color: #fff; }
.header-cta a:hover { opacity: .88; }

/* ============================================================
   ファーストビュー
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(90deg, #e9f8fd 0%, #ffffff 55%, #dff3fb 100%);
  overflow: hidden;
  padding: 108px 0 64px;
}
/* 完成ビジュアル画像(文字入り)をそのまま表示 */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 24px 52px rgba(0, 80, 120, 0.18);
}
/* ---------- ヒーローCTA(外周を光が走るボタン) ---------- */
.hero-cta {
  position: absolute;
  left: 5%;
  bottom: 4.2%;
  width: 45%;
  min-width: 250px;
  padding: 4px; /* リングの太さ */
  border-radius: 999px;
  z-index: 3;
  filter:
    drop-shadow(0 12px 24px rgba(8, 26, 60, .30))
    drop-shadow(0 0 10px rgba(255, 205, 70, .32));
  transition: transform .22s ease;
}
.hero-cta:hover { transform: translateY(-2px); }

/* ベースの金リング(常時見える) */
.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(120deg,
    #e8b93c 0%,
    #ffe9a8 28%,
    #d9a72e 52%,
    #ffefc0 76%,
    #e8b93c 100%);
  box-shadow: 0 0 18px rgba(255, 205, 70, .5);
}

/* 外周を一周する光 */
.hero-cta__beam {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  overflow: hidden;
}
.hero-cta__beam::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 320%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%) rotate(0deg);
  background: conic-gradient(
    transparent 0deg,
    transparent 95deg,
    rgba(255, 244, 200, .55) 130deg,
    #fff3c4 155deg,
    #ffffff 172deg,
    #ffd75e 180deg,
    transparent 200deg,
    transparent 275deg,
    rgba(255, 244, 200, .55) 310deg,
    #fff3c4 335deg,
    #ffffff 352deg,
    #ffd75e 358deg,
    transparent 360deg);
  animation: ctaBeam 2.6s linear infinite;
  opacity: .55;
}
@keyframes ctaBeam {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ボタン本体(画像のデザインに合わせた紺×ゴールド) */
.hero-cta__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: clamp(48px, 6vw, 64px);
  border-radius: 999px;
  background: linear-gradient(180deg, #24407c 0%, #16295a 52%, #0c1c42 100%);
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.65vw, 19px);
  letter-spacing: .08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22);
  overflow: hidden;
}
.hero-cta__btn .arrow {
  color: #ffc72e;
  font-family: var(--font-en);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.hero-cta:hover .hero-cta__btn .arrow { transform: translateX(4px); }
/* ホバー時の内側光沢スイープ */
.hero-cta__btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 46%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
}
.hero-cta:hover .hero-cta__btn::after { animation: btnShine .7s ease forwards; }

/* SEO・スクリーンリーダー用の非表示テキスト */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.hero-script {
  position: absolute;
  z-index: 1;
  top: 90px;
  left: -20px;
  font-family: var(--font-script);
  font-size: 170px;
  color: rgba(255,255,255,0.85);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0,121,170,.06);
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-copy-area { max-width: 640px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 18px;
  margin-bottom: 22px;
}
.hero-copy {
  font-size: 44px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--color-text-dark);
  font-weight: 900;
  margin-bottom: 20px;
}
.hero-subcatch {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--color-main-dark);
  margin-bottom: 14px;
}
.hero-subcatch b {
  background: linear-gradient(transparent 68%, var(--color-main-light) 68%);
}
.hero-copy .accent-line { background: linear-gradient(transparent 68%, var(--color-accent) 68%); }
.hero-lead {
  font-size: 15px;
  line-height: 2.2;
  color: var(--color-text);
  margin-bottom: 30px;
  font-weight: 500;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.hero-badges span {
  background: #fff;
  border: 1.5px solid var(--color-main);
  color: var(--color-main-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 16px;
}
.hero-badges .badge-fill { background: var(--color-main); color: #fff; }
.hero .tri-1 { bottom: 28px; left: 3%; }
.hero .tri-2 { top: 120px; right: 3%; }

/* ---------- 助成金 帯 ---------- */
.hero-strip {
  background: var(--color-main-dark);
  color: #fff;
  padding: 18px 0;
}
.hero-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 34px;
  font-weight: 700;
  letter-spacing: .06em;
}
.hero-strip .big { font-size: 20px; }
.hero-strip .big b { color: var(--color-accent); font-size: 30px; font-family: var(--font-en); letter-spacing: .02em; }
.hero-strip .note { font-size: 11px; opacity: .8; font-weight: 500; width: 100%; text-align: center; line-height: 1.6; }

/* ============================================================
   セクション共通
   ============================================================ */
section { padding: 90px 0; position: relative; overflow: hidden; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--color-white); }
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.problem-list li {
  position: relative;
  background: var(--color-bg-light);
  border-left: 4px solid var(--color-main);
  padding: 16px 20px 16px 54px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.8;
}
.problem-list li::before {
  content: "";
  position: absolute;
  left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--color-main);
  border-radius: 50%;
}
.problem-list li::after {
  content: "";
  position: absolute;
  left: 24px; top: 50%;
  transform: translateY(-62%) rotate(45deg);
  width: 6px; height: 11px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
}
.problem-photo { position: relative; }
.problem-photo img { box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 5 / 4; height: auto; object-fit: cover; }
.problem-photo .tri { top: -20px; right: -14px; }
.problem-answer {
  margin-top: 60px;
  text-align: center;
}
.problem-answer .lead-in { font-size: 15px; font-weight: 700; color: var(--color-text-light); letter-spacing: .12em; margin-bottom: 8px; }
.problem-answer .answer-copy {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.8;
  color: var(--color-text-dark);
  letter-spacing: .06em;
}
.problem-answer .answer-copy .marker { font-weight: 900; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--color-white); padding-top: 0; }
.about-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo img { box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 5 / 4; height: auto; object-fit: cover; }
.about-photo .tri-a { bottom: -24px; right: -18px; }
.about-photo .tri-b { top: -18px; left: -22px; }
.about-text .body-text { margin-top: 20px; }
.about .tri-bg-1 { top: 40px; right: 6%; opacity: .7; }
.about .tri-bg-2 { bottom: 60px; right: 12%; }

/* ============================================================
   REASON(選ばれる理由)
   ============================================================ */
.reason {
  background: linear-gradient(165deg, #ffffff 0%, #ffffff 12%, #eaf7fc 12%, #eaf7fc 88%, #ffffff 88%);
  padding: 120px 0;
}
.reason-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 64px; }
.reason-head .head-photo img { box-shadow: var(--shadow-card); width: 100%; aspect-ratio: 4 / 3; height: auto; object-fit: cover; }
.reason-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.support-card {
  background: #fff;
  padding: 44px 26px 34px;
  box-shadow: var(--shadow-card);
  position: relative;
  text-align: center;
}
.support-card__number {
  position: absolute;
  top: 0; left: 0;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 8px 14px;
}
.support-card img { width: 78%; height: auto; margin: 0 auto 20px; }
.support-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 12px;
}
.support-card h3 .marker { font-weight: 700; }
.support-card p { font-size: 13px; line-height: 2; text-align: left; }
.reason .tri-r1 { top: 80px; right: 8%; }
.reason .tri-r2 { bottom: 100px; left: 5%; }

/* ============================================================
   WORKS(効率化できる業務)
   ============================================================ */
.works { background: var(--color-white); }
.works-head { text-align: center; margin-bottom: 56px; }
.works-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.work-item {
  background: var(--color-bg-light);
  border-top: 3px solid var(--color-main);
  padding: 30px 14px 24px;
  text-align: center;
}
.work-item .icon { width: 52px; height: 52px; margin: 0 auto 16px; }
.work-item .icon svg { width: 100%; height: 100%; stroke: var(--color-main); fill: none; stroke-width: 1.6; }
.work-item h3 { font-size: 15px; font-weight: 700; color: var(--color-text-dark); line-height: 1.7; }
.works-note {
  margin-top: 44px;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-dark);
  letter-spacing: .06em;
  line-height: 2;
}

/* ============================================================
   PRICE(助成金)
   ============================================================ */
.price {
  background: linear-gradient(165deg, #ffffff 0%, #ffffff 10%, #eaf7fc 10%, #eaf7fc 100%);
  padding-bottom: 110px;
}
.price-head { text-align: center; margin-bottom: 56px; }
.price-box {
  background: #fff;
  box-shadow: var(--shadow-card);
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 48px;
  position: relative;
}
.price-box::before {
  content: "助成金活用可";
  position: absolute;
  top: -22px; left: -14px;
  background: var(--color-text-dark);
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 10px 26px;
  transform: rotate(-3deg);
  box-shadow: 0 8px 18px rgba(0,40,70,.2);
}
.price-main { display: grid; grid-template-columns: 1fr 1.5fr; gap: 36px; align-items: center; }
.price-rate { text-align: center; border-right: 1px solid #d8ecf5; padding-right: 20px; }
.price-rate .rate-label { font-size: 15px; font-weight: 700; color: var(--color-text-dark); }
.price-rate .rate-num {
  font-family: var(--font-en);
  font-size: 92px;
  font-weight: 800;
  color: var(--color-main);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.price-rate .rate-num small { font-size: 34px; }
.price-rate .rate-suffix { font-size: 22px; font-weight: 900; color: var(--color-text-dark); }
.price-rate .rate-note { font-size: 11px; color: var(--color-text-light); line-height: 1.6; margin-top: 6px; }
.price-compare { text-align: center; }
.price-compare .was { font-size: 14px; font-weight: 700; color: var(--color-text-light); }
.price-compare .was b { font-size: 26px; font-family: var(--font-en); text-decoration: line-through; text-decoration-color: var(--color-main); text-decoration-thickness: 3px; color: var(--color-text); letter-spacing: .02em; }
.price-compare .arrow-down {
  font-family: var(--font-en);
  color: var(--color-main);
  font-size: 26px;
  line-height: 1.2;
  margin: 4px 0;
  font-weight: 800;
}
.price-compare .now-label { display: inline-block; background: var(--color-main); color: #fff; font-size: 13px; font-weight: 700; padding: 3px 16px; letter-spacing: .1em; margin-bottom: 4px; }
.price-compare .now {
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 800;
  color: var(--color-main-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  background: linear-gradient(transparent 72%, var(--color-accent) 72%);
  display: inline-block;
  padding: 0 8px;
}
.price-compare .now small { font-size: 22px; font-family: var(--font-ja); font-weight: 900; }
.price-support {
  margin-top: 44px;
  text-align: center;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .08em;
  color: var(--color-text-dark);
}
.price-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.price-tags span {
  background: var(--color-text-dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 7px 20px;
}
.price .tri-p1 { top: 60px; left: 6%; }
.price .tri-p2 { bottom: 80px; right: 7%; }

/* ============================================================
   TARGET(対象施設)
   ============================================================ */
.target { background: var(--color-white); }
.target-head { text-align: center; margin-bottom: 50px; }
.target-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 980px; margin: 0 auto; }
.target-item {
  background: #fff;
  border: 1.5px solid #cbe7f3;
  border-bottom: 3px solid var(--color-main);
  padding: 26px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.8;
}
.target-note { text-align: center; margin-top: 26px; font-size: 13px; color: var(--color-text-light); }

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum {
  background: linear-gradient(165deg, #ffffff 0%, #ffffff 14%, #f6fbfd 14%, #f6fbfd 100%);
}
.curriculum-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.curriculum-table { background: #fff; box-shadow: var(--shadow-card); }
.curriculum-table .row {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid #e4f2f8;
}
.curriculum-table .row:last-child { border-bottom: none; }
.curriculum-table .cat {
  background: var(--color-bg-blue);
  color: var(--color-main-dark);
  font-weight: 700;
  font-size: 13px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
}
.curriculum-table .desc { padding: 16px 20px; font-size: 13px; line-height: 1.9; }
.curriculum-extra { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.curriculum-extra span {
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  letter-spacing: .04em;
}
.curriculum-extra span.yl { background: var(--color-accent); color: var(--color-text-dark); }
.curriculum-text .body-text { margin-top: 20px; }

/* ============================================================
   FLOW
   ============================================================ */
.flow { background: var(--color-main); padding: 100px 0; }
.flow-head { text-align: center; margin-bottom: 60px; }
.flow-head .section-en { color: #fff; }
.flow-head .section-sub-ja { color: rgba(255,255,255,.75); }
.flow-head .section-title { color: #fff; }
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; max-width: 960px; margin: 0 auto; }
.flow-step { text-align: center; position: relative; padding: 0 14px; }
.flow-step:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -9px; top: 52px;
  color: var(--color-accent);
  font-size: 15px;
}
.flow-step .circle {
  width: 118px; height: 118px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,50,80,.2);
}
.flow-step .circle .num { font-family: var(--font-en); font-size: 13px; font-weight: 800; color: var(--color-main); letter-spacing: .08em; }
.flow-step .circle svg { width: 40px; height: 40px; stroke: var(--color-main); fill: none; stroke-width: 1.6; margin-top: 4px; }
.flow-step h3 { color: #fff; font-size: 16px; font-weight: 700; line-height: 1.7; margin-bottom: 8px; }
.flow-step p { color: rgba(255,255,255,.85); font-size: 12px; line-height: 1.9; text-align: left; }
.flow-cta { text-align: center; margin-top: 60px; }

/* ============================================================
   VOICE(お客様の声)
   ============================================================ */
.voice {
  background:
    linear-gradient(rgba(234,247,252,.9), rgba(234,247,252,.9)),
    var(--color-bg-blue);
  padding: 110px 0;
  position: relative;
}
.voice-head { text-align: center; margin-bottom: 54px; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 940px;
  margin: 0 auto;
}
.voice-card {
  background: #fff;
  padding: 42px 38px 34px;
  position: relative;
  box-shadow: var(--shadow-card);
  border-radius: 4px;
}
.voice-card::before {
  content: "\201C";
  font-family: var(--font-en);
  position: absolute;
  top: 6px;
  left: 26px;
  font-size: 82px;
  line-height: 1;
  color: var(--color-main-light);
  z-index: 0;
}
.voice-stars { position: relative; z-index: 1; color: var(--color-accent-deep); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.voice-card h3 {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.7;
  margin-bottom: 14px;
}
.voice-card p { position: relative; z-index: 1; font-size: 13px; line-height: 2; }
.voice-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e2eff5;
}
.voice-avatar {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-person .name { font-size: 13px; font-weight: 700; color: var(--color-text-dark); line-height: 1.5; }
.voice-person .role { font-size: 11px; color: var(--color-text-light); line-height: 1.5; }
.voice-note { text-align: center; margin-top: 34px; font-size: 11px; color: var(--color-text-light); }
.voice .tri-m1 { top: 70px; left: 8%; }
.voice .tri-m2 { bottom: 70px; right: 6%; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--color-white); }
.faq-head { text-align: center; margin-bottom: 50px; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { background: #fff; border: 1.5px solid #d8ecf5; margin-bottom: 16px; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 54px 20px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text-dark);
  position: relative;
  line-height: 1.8;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "＋";
  position: absolute;
  right: 20px; top: 20px;
  color: var(--color-main);
  font-size: 20px;
  font-weight: 400;
  transition: transform .25s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-q {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--color-main);
  color: #fff;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-a {
  display: flex;
  gap: 16px;
  padding: 0 22px 22px;
  font-size: 13.5px;
  line-height: 2;
}
.faq-a .faq-q { background: var(--color-accent); color: var(--color-text-dark); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 130px 0;
  background:
    linear-gradient(rgba(0, 95, 143, 0.78), rgba(0, 121, 170, 0.72)),
    url("images/06.png") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.final-cta .cta-script {
  position: absolute;
  top: 40px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-script);
  font-size: 120px;
  color: rgba(255,255,255,.12);
  white-space: nowrap;
  pointer-events: none;
}
.final-cta h2 {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.9;
  letter-spacing: .08em;
  margin-bottom: 16px;
  position: relative;
}
.final-cta .cta-lead { color: rgba(255,255,255,.92); font-size: 15px; font-weight: 500; margin-bottom: 44px; position: relative; }
.cta-buttons { display: flex; justify-content: center; gap: 24px; position: relative; flex-wrap: wrap; }
.cta-buttons .btn { min-width: 300px; height: 66px; font-size: 16px; }
.cta-buttons .col { display: flex; flex-direction: column; }
.cta-buttons .btn-note { color: rgba(255,255,255,.9); }
.cta-tel { margin-top: 34px; color: #fff; position: relative; }
.cta-tel .tel-label { font-size: 12px; font-weight: 700; letter-spacing: .1em; opacity: .85; }
.cta-tel .tel-num { font-family: var(--font-en); font-size: 34px; font-weight: 800; letter-spacing: .04em; line-height: 1.4; }
.cta-tel .tel-num a { color: #fff; }

/* ============================================================
   CONTACT FORM (最終CTA内・ページ内フォーム)
   ============================================================ */
.cta-form-wrap { position: relative; margin-top: 56px; }
.cta-form {
  max-width: 760px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 18px;
  padding: 40px 44px 44px;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 47, 71, 0.32);
  border-top: 6px solid var(--color-accent);
}
.cta-form .form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--color-text-dark);
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.cta-form .form-title small { display: block; font-family: var(--font-en); font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--color-main); margin-bottom: 8px; }
.cta-form .form-desc { text-align: center; font-size: 12px; color: var(--color-text-light); line-height: 1.8; margin-bottom: 28px; }
.form-field { margin-bottom: 20px; }
.form-field > label,
.form-field .field-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}
.badge-req, .badge-any {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 7px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: .04em;
}
.badge-req { background: #e8443b; color: #fff; }
.badge-any { background: #dfe8ec; color: var(--color-text-light); }
.cta-form input[type="text"],
.cta-form input[type="tel"],
.cta-form input[type="email"],
.cta-form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  border: 1.5px solid #cfe4ee;
  border-radius: 9px;
  padding: 13px 14px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.cta-form textarea { resize: vertical; min-height: 108px; line-height: 1.7; }
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: #a9bcc5; }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(0, 121, 170, 0.14);
}
/* サービス種別チェックボックス */
.svc-fieldset { border: none; padding: 0; margin: 0 0 20px; }
.svc-legend { font-size: 14px; font-weight: 700; color: var(--color-text-dark); margin-bottom: 4px; padding: 0; }
.svc-note { font-size: 12px; color: var(--color-text-light); margin-bottom: 12px; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}
.svc-check { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 14px; color: var(--color-text); }
.svc-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.svc-check .box {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  border: 1.5px solid #b7d3df;
  border-radius: 5px;
  background: #fff;
  position: relative;
  transition: background .15s, border-color .15s;
}
.svc-check .box::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .15s;
}
.svc-check input:checked + .box { background: var(--color-main); border-color: var(--color-main); }
.svc-check input:checked + .box::after { transform: rotate(45deg) scale(1); }
.svc-check input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(0, 121, 170, 0.18); }
.svc-other-row { display: flex; align-items: center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.svc-other-input { flex: 1 1 220px; }
.svc-other-input[hidden] { display: none; }
/* 送信同意 */
.agree-box {
  background: var(--color-main-light);
  border: 1.5px solid #bfe3f1;
  border-radius: 10px;
  padding: 16px 18px;
  margin: 4px 0 24px;
}
.agree-check { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 14px; font-weight: 700; color: var(--color-text-dark); line-height: 1.5; }
.agree-check input { position: absolute; opacity: 0; width: 0; height: 0; }
.agree-check .box {
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border: 1.5px solid var(--color-main);
  border-radius: 5px;
  background: #fff;
  position: relative;
  margin-top: 1px;
  transition: background .15s;
}
.agree-check .box::after {
  content: "";
  position: absolute;
  left: 7px; top: 3px;
  width: 5px; height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .15s;
}
.agree-check input:checked + .box { background: var(--color-main); }
.agree-check input:checked + .box::after { transform: rotate(45deg) scale(1); }
.agree-check input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(0, 121, 170, 0.2); }
.form-submit {
  width: 100%;
  height: 62px;
  border: none;
  cursor: pointer;
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .06em;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 47, 71, 0.18);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.form-submit:hover { background: var(--color-accent-deep); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0, 47, 71, 0.24); }
.form-submit .arrow { margin-right: 8px; font-size: 13px; color: var(--color-main-dark); }
.form-privacy { text-align: center; font-size: 12px; color: var(--color-text-light); margin-top: 16px; line-height: 1.7; }

/* ============================================================
   COMPANY
   ============================================================ */
.company { background: var(--color-bg-light); }
.company-head { text-align: center; margin-bottom: 50px; }
.company-table { max-width: 780px; margin: 0 auto; background: #fff; box-shadow: var(--shadow-card); }
.company-table .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #e4f2f8;
}
.company-table .row:last-child { border-bottom: none; }
.company-table .th {
  background: var(--color-bg-blue);
  font-weight: 700;
  font-size: 13px;
  color: var(--color-main-dark);
  padding: 18px 22px;
  display: flex;
  align-items: center;
}
.company-table .td { padding: 18px 24px; font-size: 13.5px; line-height: 1.9; }

/* ============================================================
   フッター
   ============================================================ */
.footer { background: var(--color-white); border-top: 1px solid #e4f2f8; padding: 50px 0 90px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 30px; }
.footer-logo .logo-mark { font-family: var(--font-en); font-weight: 800; font-size: 22px; color: var(--color-main); }
.footer-logo .logo-mark span { color: var(--color-text-dark); }
.footer-logo address { font-style: normal; font-size: 12px; line-height: 2; color: var(--color-text-light); margin-top: 12px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 6px 40px; }
.footer-nav a { font-size: 12px; color: var(--color-text); font-weight: 500; }
.footer-nav a::before { content: "▶ "; color: var(--color-main); font-size: 9px; }
.footer-nav a:hover { color: var(--color-main); }
.copyright { text-align: center; font-family: var(--font-en); font-size: 10px; letter-spacing: .14em; color: var(--color-text-light); margin-top: 40px; }

/* ---------- スマホ固定CTA ---------- */
.sp-fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .works-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 13.5px; }
  section { padding: 64px 0; }

  .header { padding-left: 14px; height: 60px; }
  .header-logo { gap: 0; min-width: 0; }
  .header-logo .logo-mark { font-size: 17px; letter-spacing: .02em; }
  .header-logo .logo-ja { display: none; }
  .header-cta .h-contact { display: none; }
  .header-cta a { width: 78px; font-size: 10px; }
  .header-cta a small { font-size: 8px; }

  .hero { padding: 72px 0 32px; background: linear-gradient(180deg, #eaf7fc 0%, #ffffff 78%); }
  .hero .container { width: 100vw; max-width: 100vw; padding: 0; }
  .hero-visual {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
  }
  .hero-visual picture {
    display: block;
    width: 100vw;
    max-width: none;
    margin: 0;
  }
  .hero-visual picture > img {
    display: block;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
  }
  .hero-visual img { box-shadow: none; }
  .hero-cta {
    position: static;      /* 画像への重ね配置をやめる */
    width: auto;
    min-width: 0;
    margin: 14px 18px 0;
    filter: drop-shadow(0 10px 20px rgba(8, 26, 60, .22));
  }
  .hero-cta::before { box-shadow: 0 0 10px rgba(255, 205, 70, .35); }
  .hero-cta__beam { display: none; }
  .hero-cta__btn { height: 54px; font-size: 14px; letter-spacing: .04em; }
  .hero-script { font-size: 90px; top: 70px; }
  .hero-lead { font-size: 13.5px; }
  .hero .btn { width: 100%; }

  .hero-strip .container { flex-direction: column; gap: 6px; padding: 0 18px; }
  .hero-strip .big { width: 100%; font-size: 15px; text-align: center; line-height: 1.55; }
  .hero-strip .big b { font-size: 24px; }
  .hero-strip .note { font-size: 10.5px; }

  .section-en { font-size: 30px; }
  .section-title { font-size: 22px; }

  .problem-inner,
  .about-inner,
  .reason-head,
  .curriculum-inner { grid-template-columns: 1fr; gap: 34px; }
  .voice-grid { grid-template-columns: 1fr; gap: 22px; max-width: 460px; }
  .problem-answer .answer-copy { font-size: 21px; }

  .reason-cards { grid-template-columns: 1fr; }
  .works .container,
  .price .container,
  .flow .container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50vw - 50%);
    margin-right: calc(50vw - 50%);
    padding-left: 24px;
    padding-right: 24px;
  }
  .works .section-title,
  .price .section-title {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
  }
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 12px;
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
  }
  .work-item {
    min-width: 0;
    padding: 22px 10px 18px;
  }
  .work-item .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }
  .work-item h3 {
    font-size: 13px;
    overflow-wrap: anywhere;
    word-break: keep-all;
  }
  .works-note {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    letter-spacing: .02em;
  }

  .price-box {
    width: calc(100vw - 48px);
    max-width: 320px;
    padding: 44px 18px;
    overflow: visible;
  }
  .price-main { grid-template-columns: 1fr; gap: 28px; }
  .price-rate { border-right: none; border-bottom: 1px solid #d8ecf5; padding: 0 0 24px; }
  .price-rate .rate-num { font-size: 72px; }
  .price-compare .now { font-size: 42px; }
  .price-support {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.9;
    overflow-wrap: anywhere;
  }
  .price-tags {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
  .price-tags span {
    width: 100%;
    text-align: center;
  }

  .target-grid { grid-template-columns: repeat(2, 1fr); }

  .curriculum-table .row { grid-template-columns: 110px 1fr; }

  .flow-steps { grid-template-columns: 1fr; gap: 30px; max-width: 320px; }
  .flow-step {
    padding-left: 10px;
    padding-right: 10px;
  }
  .flow-step:not(:last-child)::after {
    content: "▼";
    right: auto; top: auto;
    left: 50%; bottom: -24px;
    transform: translateX(-50%);
  }
  .flow-step p { text-align: center; }

  .voice-card { padding: 36px 26px 30px; }

  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: 22px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; min-width: 0; }
  .cta-buttons .col { width: 100%; }
  .cta-tel .tel-num { font-size: 28px; }
  .cta-form { padding: 30px 20px 34px; border-radius: 14px; }
  .cta-form-wrap { margin-top: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-submit { height: 58px; font-size: 16px; }

  .company-table .row { grid-template-columns: 1fr; }
  .company-table .th { padding: 12px 22px; }
  .footer-inner { flex-direction: column; }
  .footer { padding-bottom: 120px; }

  .sp-fixed-cta { display: grid; grid-template-columns: 1fr 1fr; }
  .sp-fixed-cta a {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    height: 58px;
    font-size: 13px; font-weight: 800; letter-spacing: .06em;
    line-height: 1.3;
  }
  .sp-fixed-cta a small { font-size: 9px; font-weight: 700; }
  .sp-fixed-cta .f-entry { background: var(--color-accent); color: var(--color-text-dark); }
  .sp-fixed-cta .f-tel { background: var(--color-main); color: #fff; }

  .tri { display: none; }
}

/* ============================================================
   MOTION & PREMIUM LAYER v2
   ============================================================ */

/* ---------- スクロールプログレスバー ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-main-dark), var(--color-main) 60%, #9bdff2);
  z-index: 110;
  pointer-events: none;
}
.scroll-progress::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 26px; height: 100%;
  background: var(--color-accent);
}

/* ---------- ヘッダー(スクロール時) ---------- */
.header { transition: height .35s ease, box-shadow .35s ease; }
.header.is-scrolled { height: 60px; box-shadow: 0 6px 24px rgba(0, 80, 120, .12); }
.header.is-scrolled .header-cta a { transition: none; }

/* ナビ ホバー下線 */
.nav a { position: relative; padding-bottom: 4px; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 2px;
  background: var(--color-accent);
  transition: right .24s ease;
}
.nav a:hover::after { right: 0; }

/* ---------- 共通リビール ---------- */
.rv {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .5s ease var(--d, 0s),
    transform .5s ease var(--d, 0s);
  will-change: opacity, transform;
}
.rv.on { opacity: 1; transform: none; }

/* ---------- 写真ワイプリビール ---------- */
.rv-photo { position: relative; }
.rv-photo > img {
  opacity: 0;
  transform: scale(1.03);
}
.rv-photo.on > img {
  animation: photoIn .5s ease .05s forwards;
}
.rv-photo::after {
  display: none;
}
@keyframes photoWipe {
  0%   { transform: scaleX(0); transform-origin: left; }
  46%  { transform: scaleX(1); transform-origin: left; }
  54%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}
@keyframes photoIn {
  from { opacity: 0; transform: scale(1.03); }
  to   { opacity: 1; transform: scale(1); }
}

/* ---------- 黄色マーカー描画アニメーション ---------- */
body.js .marker,
body.js .hero-copy .accent-line {
  background: linear-gradient(var(--color-accent), var(--color-accent)) no-repeat left 82% / 0% 36%;
  transition: background-size .45s ease .15s;
}
body.js .marker.mk-on,
body.js .hero-copy .accent-line.mk-on { background-size: 100% 36%; }

/* ---------- 三角形の浮遊 ---------- */
body.js .tri { animation: none; }
body.js .tri:nth-of-type(odd) { animation: none; }
@keyframes triFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -7px; }
}

/* ---------- ヒーロー登場シーケンス ---------- */
body.js .hero-visual {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity .45s ease,
    transform .45s ease;
}
body.is-loaded .hero-visual { opacity: 1; transform: none; transition-delay: .1s; }
body.js .hero-cta {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity .35s ease,
    transform .35s ease;
}
body.is-loaded .hero-cta { opacity: 1; transform: none; transition-delay: .18s; }
body.is-loaded .hero-cta:hover { transform: translateY(-2px); }

/* ヒーロー筆記体のドリフト */
body.js .hero-script { animation: none; }
@keyframes heroDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(30px); }
}

/* ---------- ボタン:シャインスイープ ---------- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -80%;
  width: 46%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.6) 50%, transparent 100%);
  transform: skewX(-22deg);
  pointer-events: none;
}
.btn:hover::after { animation: btnShine .55s ease forwards; }
@keyframes btnShine { to { left: 130%; } }
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- カード ホバー ---------- */
.support-card { transition: transform .22s ease, box-shadow .22s ease; }
.support-card:hover { transform: translateY(-3px); box-shadow: 0 18px 32px rgba(0, 72, 110, 0.15); }
.support-card img { transition: transform .22s ease; }
.support-card:hover img { transform: scale(1.015); }

.work-item { transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.work-item:hover { transform: translateY(-2px); background: #fff; box-shadow: 0 10px 22px rgba(0, 72, 110, .10); }
.work-item .icon { transition: transform .2s ease; }
.work-item:hover .icon { transform: translateY(-2px) scale(1.02); }

.target-item { transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.target-item:hover { transform: translateY(-2px); border-color: var(--color-main); box-shadow: 0 10px 22px rgba(0, 72, 110, .09); }

.curriculum-table .row { transition: background .3s; }
.curriculum-table .row:hover .desc { background: var(--color-bg-light); }

/* ---------- FLOWステップ:ポップイン ---------- */
.flow-step.rv .circle {
  transform: scale(.8);
  opacity: 0;
  transition:
    transform .35s ease calc(var(--d, 0s) + .05s),
    opacity .3s ease calc(var(--d, 0s) + .05s);
}
.flow-step.rv.on .circle { transform: scale(1); opacity: 1; }
.flow-step.rv::after { opacity: 0; transition: opacity .5s ease calc(var(--d, 0s) + .6s); }
.flow-step.rv.on::after { opacity: 1; }
.flow-step .circle { transition: box-shadow .4s; }
.flow-step:hover .circle { box-shadow: 0 16px 34px rgba(0, 40, 70, .32); }

/* ---------- PRICE:カウントアップ強調 ---------- */
.price-box { transition: box-shadow .5s; }
.price-box:hover { box-shadow: 0 24px 48px rgba(0, 72, 110, 0.18); }
.count-num { font-variant-numeric: tabular-nums; }

/* ---------- FAQ ---------- */
.faq-item { transition: border-color .3s, box-shadow .3s; }
.faq-item:hover { border-color: var(--color-main); }
.faq-item[open] { border-color: var(--color-main); box-shadow: 0 10px 24px rgba(0, 72, 110, .08); }
.faq-item summary::after { transition: transform .3s ease, color .3s; }
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-a { animation: faqOpen .28s ease; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- FINAL CTA:筆記体パルス ---------- */
body.js .final-cta .cta-script { animation: none; }
@keyframes ctaGlow {
  from { opacity: .5; transform: translateX(-50%); }
  to   { opacity: .8; transform: translateX(-50%); }
}

/* ---------- フッター ---------- */
.footer-nav a { transition: color .2s ease, transform .2s ease; display: inline-block; }
.footer-nav a:hover { transform: translateX(2px); }

@media (max-width: 768px) {
  body.js .hero-visual,
  body.js .hero-cta {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sp-fixed-cta a { min-width: 0; overflow: hidden; }
  .sp-fixed-cta .f-entry { font-size: 12px; }
  .sp-fixed-cta .f-tel { font-size: 11px; letter-spacing: 0; }
}

/* ---------- モーション低減設定の尊重 ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .rv, .rv-photo > img,
  body.js .hero-eyebrow, body.js .hero-copy, body.js .hero-lead,
  body.js .hero-badges span, body.js .hero-copy-area .btn,
  .flow-step.rv .circle {
    opacity: 1 !important;
    transform: none !important;
  }
  body.js .marker, body.js .hero-copy .accent-line { background-size: 100% 36% !important; }
}
