/* ============================================================
   出張型AIスキル実践活用研修 LP
   Design System: design.md 準拠(清潔・信頼・やわらかさ・誠実)
   白基調 × メディカルティール / 四角メイン・角丸は控えめ
   ============================================================ */
:root {
  --color-base: #FBFAF7;          /* ウォームホワイト */
  --color-white: #FFFFFF;
  --color-band-green: #EEF7F3;    /* ミストグリーン帯 */
  --color-band-rose: #FAF1F2;     /* ペールローズ帯 */
  --color-main: #3F9E91;          /* メディカルティール */
  --color-main-dark: #137C74;     /* ディープティール(主CTA) */
  --color-sub: #7DAE87;           /* セージグリーン */
  --color-trust: #5F7285;         /* ブルーグレー */
  --color-gold: #F4B400;          /* アンバーゴールド */
  --color-cta: #F4B400;           /* 主CTAゴールド */
  --color-cta-dark: #B98200;      /* CTA影色 */
  --color-cta-deep: #4A3300;      /* CTA文字・境界の深色 */
  --color-cta-navy: #0F5A50;      /* 主CTAの深いグリーンネイビー */
  --color-cta-navy-dark: #073D38; /* 主CTAの濃色 */
  --color-rose: #D99AA3;          /* ダスティローズ */
  --color-text: #273033;          /* チャコール */
  --color-text-light: #6C757D;    /* スレートグレー */
  --color-line: #E4E8EA;          /* 境界線 */
  --color-alert: #B75A5A;         /* 注意表示 */

  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-en: "Inter", "Helvetica Neue", sans-serif;
  --font-script: var(--font-en);

  --container: 1160px;
  --container-narrow: 860px;
  --wedge-h: 96px;                /* セクション境界の斜めの高さ(=角度) */
  --shadow-card: 0 8px 24px rgba(39, 48, 51, 0.06);
  --shadow-button: 0 9px 22px rgba(15, 90, 80, 0.18);
}

* { 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: 15px;
  line-height: 2;
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
picture { display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { 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; }

/* スマホ専用改行(PCでは非表示) */
.sp-only { display: none; }

/* 本文共通 */
.body-text { font-size: 16px; line-height: 2.1; color: var(--color-text); }
.body-text b { color: var(--color-main-dark); }

/* ---------- 共通見出し(英字ラベル+日本語見出し) ---------- */
.section-en {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--color-main);
  line-height: 1.4;
  text-transform: uppercase;
}
.section-sub-ja {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--color-text-light);
  margin-top: 6px;
}
.section-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text);
  margin-top: 16px;
}
.marker {
  background: linear-gradient(transparent 66%, rgba(244, 180, 0, 0.28) 66%);
  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;
}
/* 手前のスクエア */
.tri::after { border: 2px solid var(--tri-color); background: transparent; }
/* 奥にずらしたスクエア */
.tri::before {
  border: 2px solid var(--tri-color-back, var(--tri-color));
  opacity: .35;
  transform: translate(28%, -22%);
}
.tri-blue {
  width: 52px; height: 52px;
  --tri-color: var(--color-main);
  --tri-color-back: var(--color-sub);
  opacity: .5;
}
.tri-yellow {
  width: 34px; height: 34px;
  --tri-color: var(--color-gold);
  --tri-color-back: var(--color-main);
  opacity: .55;
}
.tri-navy {
  width: 42px; height: 42px;
  --tri-color: var(--color-trust);
  --tri-color-back: var(--color-sub);
  opacity: .45;
}
.tri-sm { transform: scale(.6); }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  height: 56px;
  padding: 0 34px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
  line-height: 1.4;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--color-white);
  color: var(--color-main-dark);
  border: 1px solid var(--color-white);
  box-shadow: 0 8px 20px rgba(23, 37, 49, 0.16);
}
.btn-primary:hover { background: var(--color-band-green); }
.btn-entry {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #1C7468 0%, var(--color-cta-navy) 52%, var(--color-cta-navy-dark) 100%);
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .34);
  border: 3px solid var(--color-gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 7px 0 rgba(130, 92, 0, .34),
    0 13px 24px rgba(15, 90, 80, .18);
}
.btn-entry:hover {
  background: linear-gradient(180deg, #218175 0%, #146A60 52%, #0A4943 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 5px 0 rgba(130, 92, 0, .38),
    0 16px 28px rgba(15, 90, 80, .24);
}
.btn-entry::after,
.hero-cta__btn::after,
.form-submit::after,
.sp-fixed-cta .f-entry::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -35%;
  width: 34%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.22) 48%, transparent 100%);
  transform: translateX(-140%) rotate(12deg);
  transition: transform .55s ease;
  pointer-events: none;
}
.btn-entry:hover::after,
.hero-cta:hover .hero-cta__btn::after,
.form-submit:hover::after,
.sp-fixed-cta .f-entry:hover::after {
  transform: translateX(420%) rotate(12deg);
}
.btn .arrow { font-family: var(--font-en); font-weight: 700; font-size: 12px; }
.btn-entry .arrow { color: var(--color-gold); }
.demo-cta {
  height: auto;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cta-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  line-height: 1.25;
}
.cta-copy small {
  display: block;
  font-size: .72em;
  font-weight: 700;
  letter-spacing: .03em;
}
.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.94);
  backdrop-filter: blur(6px);
  padding: 0 0 0 28px;
  border-bottom: 1px solid var(--color-line);
}
.header-logo { display: flex; align-items: baseline; gap: 10px; }
.header-logo .logo-mark {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 19px;
  color: var(--color-main-dark);
  letter-spacing: .04em;
  white-space: nowrap;
}
.header-logo .logo-mark span { color: var(--color-text); }
.header-logo .logo-ja { font-size: 10px; font-weight: 500; 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.14em; color: var(--color-text); display: block; }
.nav a .ja { font-size: 9px; color: var(--color-text-light); display: block; }
.nav a:hover .en { color: var(--color-main-dark); }
.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: 700; 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: linear-gradient(180deg, #FFD76A 0%, var(--color-cta) 52%, var(--color-cta-dark) 100%);
  color: var(--color-cta-deep);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.28);
}
.header-cta .h-contact { background: #fff; color: var(--color-main-dark); border-left: 1px solid var(--color-line); }
.header-cta .h-entry:hover { background: linear-gradient(180deg, #FFE08A 0%, #F9C534 52%, #A87400 100%); }
.header-cta .h-contact:hover { background: var(--color-band-green); }

/* ============================================================
   ファーストビュー
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--color-band-green) 0%, #ffffff 72%);
  overflow: hidden;
  padding: 108px 0 64px;
}
/* 完成ビジュアル画像(文字入り)をそのまま表示 */
.hero-visual {
  position: relative;
  z-index: 2;
}
.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--color-line);
  box-shadow: 0 16px 40px rgba(39, 48, 51, 0.1);
}
/* セクション完成ビジュアル(文字入り画像)共通 */
.section-visual { position: relative; z-index: 2; }
.section-visual img {
  width: 100%;
  height: auto;
  display: block;
}
.section-visual.with-shadow img { box-shadow: var(--shadow-card); }
@media (max-width: 768px) {
  /* スマホは画面幅いっぱいに表示して文字を大きく */
  .section-visual.sp-bleed { margin-left: -24px; margin-right: -24px; }
  .section-visual.sp-bleed img {
    border-left: 0;
    border-right: 0;
    box-shadow: none;
  }
}

/* ---------- ヒーローCTA(落ち着いた主CTAボタン) ---------- */
.hero-cta {
  position: static;
  width: min(620px, calc(100% - 48px));
  min-width: 0;
  margin: 24px auto 0;
  padding: 0;
  border-radius: 999px;
  z-index: 3;
  filter: drop-shadow(0 10px 22px rgba(244, 180, 0, .28));
  transition: transform .22s ease;
}
.hero-cta:hover { transform: translateY(-2px); }
.hero-cta::before { display: none; }
.hero-cta__beam { display: none; }
.hero-demo {
  width: min(860px, calc(100% - 48px));
  padding: 20px 24px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 252, 242, .96) 100%);
  border: 1px solid rgba(244, 180, 0, .34);
  box-shadow: 0 18px 42px rgba(39, 48, 51, .08), 0 14px 30px rgba(244, 180, 0, .14);
  filter: none;
  text-align: center;
}
.hero-demo__lead {
  margin: 0 0 14px;
  color: var(--color-text);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1.55;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.hero-demo__points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.hero-demo__points li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 9px 12px;
  border: 1px solid rgba(244, 180, 0, .34);
  border-radius: 999px;
  background: #fff;
  color: var(--color-main-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 6px 14px rgba(39, 48, 51, .05);
}
.hero-demo .hero-cta__btn {
  max-width: 620px;
  margin: 0 auto;
}

/* ボタン本体 */
.hero-cta__btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: auto;
  min-height: clamp(58px, 6vw, 70px);
  padding: 10px 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1C7468 0%, var(--color-cta-navy) 52%, var(--color-cta-navy-dark) 100%);
  border: 3px solid var(--color-gold);
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .34);
  font-weight: 700;
  font-size: clamp(14px, 1.65vw, 18px);
  letter-spacing: .08em;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 7px 0 rgba(130, 92, 0, .34),
    0 14px 24px rgba(15, 90, 80, .2);
  transition: background .2s ease, box-shadow .2s ease;
}
.hero-cta:hover .hero-cta__btn {
  background: linear-gradient(180deg, #218175 0%, #146A60 52%, #0A4943 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 5px 0 rgba(130, 92, 0, .38),
    0 17px 30px rgba(15, 90, 80, .26);
}
.hero-cta__btn .arrow {
  color: var(--color-gold);
  font-family: var(--font-en);
  font-size: 12px;
  transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.hero-cta:hover .hero-cta__btn .arrow { transform: translateX(4px); }

/* 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 { display: none; }
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-copy-area { max-width: 640px; }
.hero-eyebrow {
  display: inline-block;
  background: var(--color-main-dark);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 6px 18px;
  margin-bottom: 22px;
}
.hero-copy {
  font-size: 42px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--color-text);
  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-band-green) 68%);
}
.hero-copy .accent-line { background: linear-gradient(transparent 68%, rgba(244, 180, 0, .28) 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: 1px 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: 20px 0;
}
.hero-strip .container {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 34px;
  font-weight: 700;
  letter-spacing: .06em;
}
.hero-strip .big { font-size: 19px; }
.hero-strip .big b { color: #fff; font-size: 30px; font-family: var(--font-en); letter-spacing: .02em; border-bottom: 2px solid var(--color-gold); }
/* 通常受講料(154,000)は一回り小さく。padding-bottom で now(40px) と下線位置を揃える */
.hero-strip .big b.was { font-size: 24px; border-bottom-color: rgba(255, 255, 255, .5); padding-bottom: 4px; }
/* 負担額(23,500)は大きく・ソフトゴールドで強調 */
.hero-strip .big b.now { font-size: 40px; color: var(--color-gold); border-bottom-color: var(--color-gold); }
.hero-strip .note { font-size: 11px; opacity: .85; font-weight: 400; width: 100%; text-align: center; line-height: 1.7; }

/* ============================================================
   セクション共通
   ============================================================ */
section { padding: 96px 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-base);
  border: 1px solid var(--color-line);
  border-left: 3px solid var(--color-main);
  padding: 16px 20px 16px 54px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.9;
}
.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 { border-radius: 8px; 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: 64px;
  text-align: center;
}
.problem-answer .lead-in { font-size: 15px; font-weight: 700; color: var(--color-main); letter-spacing: .14em; margin-bottom: 8px; }
.problem-answer .answer-copy {
  font-size: 29px;
  font-weight: 700;
  line-height: 1.9;
  color: var(--color-text);
  letter-spacing: .05em;
}
.problem-answer .answer-copy .marker { font-weight: 700; color: var(--color-main-dark); }

/* ============================================================
   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 { border-radius: 8px; 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: .6; }
.about .tri-bg-2 { bottom: 60px; right: 12%; }

/* ============================================================
   REASON(選ばれる理由)
   ============================================================ */
.reason {
  position: relative;
  background: var(--color-band-green);
  padding: 132px 0 116px;
}
/* 斜めの背景切り替え(上辺・白 → ミストグリーン) */
.reason::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: var(--wedge-h);
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: drop-shadow(0 2px 2px rgba(39, 48, 51, 0.06));
  z-index: 0;
}
.reason > .container { position: relative; z-index: 1; }
.reason-head { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 64px; }
.reason-head .head-photo img { border-radius: 8px; 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;
  border: 1px solid var(--color-line);
  padding: 48px 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: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 8px 14px;
}
.support-card img { width: 78%; height: auto; margin: 0 auto 20px; border-radius: 8px; }
.support-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.support-card h3 .marker { font-weight: 700; }
.support-card p { font-size: 13.5px; line-height: 2; text-align: left; color: var(--color-text); }
.reason .tri-r1 { top: 80px; right: 8%; }
.reason .tri-r2 { bottom: 100px; left: 5%; }

/* ============================================================
   WORKS(効率化できる業務)
   ============================================================ */
/* ウォームホワイト地。前セクション(ミストグリーン)から斜めに切り替え */
.works {
  background: var(--color-base);
  padding: 132px 0 96px;
}
.works::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: var(--wedge-h);
  background: var(--color-band-green);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
.works > .container { position: relative; z-index: 1; }
.works-head { text-align: center; margin-bottom: 56px; }

.works-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.work-item {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: 34px 10px 24px;
  text-align: center;
}
.work-item .icon { display: block; width: 56px; height: 56px; margin: 0 auto 18px; }
.work-item .icon svg {
  width: 100%; height: 100%;
  stroke: var(--color-main-dark); fill: none;
  stroke-width: 2.8;
  stroke-linecap: round; stroke-linejoin: round;
}
.work-item h3 { font-size: 15px; font-weight: 700; color: var(--color-text); line-height: 1.65; letter-spacing: .04em; }

/* 締めコピー(区切り線+2行見出し・2行目にゴールドマーカー) */
.works-note {
  position: relative;
  margin-top: 48px;
  padding-top: 40px;
  text-align: center;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.75;
  letter-spacing: .06em;
}
.works-note::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(720px, 100%);
  height: 1px;
  background: var(--color-main);
}
.works-note .l1 { font-size: clamp(17px, 2vw, 23px); }
.works-note .l2 {
  font-size: clamp(20px, 2.6vw, 30px);
  display: inline-block;
  margin-top: 4px;
  padding: 0 6px;
  background: linear-gradient(transparent 66%, rgba(244, 180, 0, 0.32) 66%);
  color: var(--color-main-dark);
}

/* ============================================================
   PRICE(助成金)
   ============================================================ */
.price {
  position: relative;
  background: var(--color-trust);
  padding: 132px 0 110px;
}
/* 斜めの背景切り替え(上辺・ウォームホワイト → ブルーグレー) */
.price::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: var(--wedge-h);
  background: var(--color-base);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
.price > .container { position: relative; z-index: 1; }
.price-head { text-align: center; margin-bottom: 56px; }
.price-head .section-en { color: rgba(255, 255, 255, .8); }
.price-head .section-sub-ja { color: rgba(255, 255, 255, .7); }
.price-head .section-title { color: #fff; }
.price-box {
  background: #fff;
  border: 1px solid var(--color-line);
  box-shadow: 0 10px 26px rgba(30, 41, 52, .22);
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 48px;
  position: relative;
}
.price-box::before {
  content: "助成金活用可";
  position: absolute;
  top: -20px; left: -12px;
  background: var(--color-main-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  padding: 9px 24px;
  box-shadow: 0 6px 14px rgba(19, 124, 116, .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 var(--color-line); padding-right: 20px; }
.price-rate .rate-label { font-size: 15px; font-weight: 700; color: var(--color-text); }
.price-rate .rate-num {
  font-family: var(--font-en);
  font-size: 88px;
  font-weight: 800;
  color: var(--color-main-dark);
  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: 700; color: var(--color-text); }
.price-rate .rate-note { font-size: 11px; color: var(--color-text-light); line-height: 1.7; 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-alert); text-decoration-thickness: 2px; color: var(--color-text-light); letter-spacing: .02em; }
.price-compare .arrow-down {
  font-family: var(--font-en);
  color: var(--color-main);
  font-size: 24px;
  line-height: 1.2;
  margin: 4px 0;
  font-weight: 700;
}
.price-compare .now-label { display: inline-block; background: var(--color-main-dark); color: #fff; font-size: 13px; font-weight: 700; padding: 3px 16px; letter-spacing: .1em; margin-bottom: 6px; }
.price-compare .now {
  font-family: var(--font-en);
  font-size: 62px;
  font-weight: 800;
  color: var(--color-main-dark);
  line-height: 1.15;
  letter-spacing: -0.01em;
  background: linear-gradient(transparent 74%, rgba(244, 180, 0, .3) 74%);
  display: inline-block;
  padding: 0 8px;
}
.price-compare .now small { font-size: 22px; font-family: var(--font-ja); font-weight: 700; }
.price-support {
  margin-top: 44px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--color-text);
}
.price-tags { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.price-tags span {
  background: #E3F1ED;
  color: var(--color-main-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 7px 20px;
  border-radius: 999px;
}

/* ============================================================
   TARGET(対象施設)
   ============================================================ */
.target {
  position: relative;
  background: var(--color-white);
  padding: 132px 0 96px;
}
/* 斜めの背景切り替え(上辺・ブルーグレー → 白) */
.target::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: var(--wedge-h);
  background: var(--color-trust);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
.target > .container { position: relative; z-index: 1; }
.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: 1px solid var(--color-line);
  border-bottom: 3px solid var(--color-main);
  padding: 26px 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.9;
}
.target-note { text-align: center; margin-top: 26px; font-size: 13px; color: var(--color-text-light); }

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum {
  position: relative;
  background: var(--color-band-green);
  padding: 132px 0 96px;
}
/* 斜めの背景切り替え(上辺・白 → ミストグリーン) */
.curriculum::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: var(--wedge-h);
  background: var(--color-white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  filter: drop-shadow(0 2px 2px rgba(39, 48, 51, 0.06));
  z-index: 0;
}
.curriculum > .container { position: relative; z-index: 1; }
.curriculum-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.curriculum-table { background: #fff; border: 1px solid var(--color-line); box-shadow: var(--shadow-card); }
.curriculum-table .row {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-bottom: 1px solid var(--color-line);
}
.curriculum-table .row:last-child { border-bottom: none; }
.curriculum-table .cat {
  background: var(--color-band-green);
  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: 13.5px; line-height: 1.95; }
.curriculum-extra { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
.curriculum-extra span {
  background: #E3F1ED;
  color: var(--color-main-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  letter-spacing: .04em;
  border-radius: 999px;
}
.curriculum-extra span.yl { background: #FFF3D0; color: #7A5600; }
.curriculum-text .body-text { margin-top: 20px; }

/* ============================================================
   FLOW
   ============================================================ */
.flow { position: relative; background: var(--color-trust); padding: 132px 0 100px; }
/* 斜めの背景切り替え(上辺・ミストグリーン → ブルーグレー) */
.flow::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: var(--wedge-h);
  background: var(--color-band-green);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
.flow > .container { position: relative; z-index: 1; }
.flow-head { text-align: center; margin-bottom: 60px; }
.flow-head .section-en { color: rgba(255, 255, 255, .8); }
.flow-head .section-sub-ja { color: rgba(255, 255, 255, .7); }
.flow-head .section-title { color: #fff; }
/* 受講ステップ:ブルーグレー地に白サークルを直置き(パネルなし) */
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 960px; margin: 0 auto; }
.flow-step { text-align: center; position: relative; padding: 0 16px; }
/* ステップ間の三角矢印 */
.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: clamp(48px, 5vw, 60px);
  width: 22px; height: 26px;
  background: rgba(255, 255, 255, .6);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.flow-step .circle {
  width: clamp(112px, 11.5vw, 144px);
  aspect-ratio: 1;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(30, 41, 52, .22);
}
.flow-step .sp-num { display: none; }
.flow-step .icon { display: block; width: clamp(44px, 4.4vw, 56px); height: clamp(44px, 4.4vw, 56px); }
.flow-step .icon svg {
  width: 100%; height: 100%;
  stroke: var(--color-main); fill: none;
  stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.flow-step h3 { color: #fff; font-size: clamp(15px, 1.6vw, 18px); font-weight: 700; line-height: 1.6; letter-spacing: .04em; margin-bottom: 8px; }
.flow-step p { color: rgba(255, 255, 255, .88); font-size: clamp(11.5px, 1.1vw, 13px); line-height: 1.9; text-align: center; }
.flow-cta { text-align: center; margin-top: 60px; }
/* ブルーグレー地でも主CTAはネイビーとゴールドで統一 */
.flow .btn-entry {
  background: linear-gradient(180deg, #1C7468 0%, var(--color-cta-navy) 52%, var(--color-cta-navy-dark) 100%);
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .34);
  border: 3px solid var(--color-gold);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 7px 0 rgba(130, 92, 0, .34),
    0 13px 24px rgba(15, 90, 80, .18);
}
.flow .btn-entry:hover {
  background: linear-gradient(180deg, #218175 0%, #146A60 52%, #0A4943 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 5px 0 rgba(130, 92, 0, .38),
    0 16px 28px rgba(15, 90, 80, .24);
}

/* ============================================================
   VOICE(お客様の声)
   ============================================================ */
.voice {
  position: relative;
  background: var(--color-base);
  padding: 132px 0 110px;
  overflow: hidden;
}
/* 斜めの背景切り替え(上辺・ブルーグレー → ウォームホワイト) */
.voice::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: var(--wedge-h);
  background: var(--color-trust);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 0;
}
.voice > .container { position: relative; z-index: 1; }
.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;
  border: 1px solid var(--color-line);
  padding: 42px 38px 34px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.voice-card::before {
  content: "\201C";
  font-family: var(--font-en);
  position: absolute;
  top: 6px;
  left: 26px;
  font-size: 82px;
  line-height: 1;
  color: #DCEAE4;
  z-index: 0;
}
.voice-stars { position: relative; z-index: 1; color: var(--color-gold); 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);
  line-height: 1.75;
  margin-bottom: 14px;
}
.voice-card p { position: relative; z-index: 1; font-size: 13.5px; line-height: 2.05; }
.voice-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}
.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); 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: 1px solid var(--color-line); 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);
  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: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-a {
  display: flex;
  gap: 16px;
  padding: 0 22px 22px;
  font-size: 14px;
  line-height: 2;
}
.faq-a .faq-q { background: var(--color-band-green); color: var(--color-main-dark); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  padding: 130px 0;
  background:
    linear-gradient(rgba(45, 62, 74, 0.82), rgba(19, 124, 116, 0.78)),
    url("../images/06.png") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
/* 筆記体の装飾は新デザインでは使用しない */
.final-cta .cta-script { display: none; }
.final-cta h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: .06em;
  margin-bottom: 16px;
  position: relative;
}
.form-reassurance {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 auto 20px;
}
.form-reassurance span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(244, 180, 0, .66);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  color: var(--color-main-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255,255,255,.7);
}
.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: 64px; 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);
  padding: 40px 44px 44px;
  text-align: left;
  box-shadow: 0 20px 48px rgba(23, 37, 49, 0.28);
  border-top: 4px solid var(--color-main-dark);
}
.cta-form .form-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  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: .24em; color: var(--color-main); margin-bottom: 8px; }
.cta-form .form-reassurance {
  margin: 8px auto 18px;
}
.cta-form .form-reassurance span {
  box-shadow: 0 6px 14px rgba(39, 48, 51, .07);
}
.cta-form .form-desc { text-align: center; font-size: 12.5px; color: var(--color-text-light); line-height: 1.9; 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);
  margin-bottom: 8px;
}
.badge-req, .badge-any {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 7px;
  border-radius: 3px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: .04em;
}
.badge-req { background: var(--color-alert); color: #fff; }
.badge-any { background: var(--color-line); 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);
  background: var(--color-base);
  border: 1px solid #D4DBDE;
  border-radius: 6px;
  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: #A6B0B5; }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(63, 158, 145, 0.16);
}
/* サービス種別チェックボックス */
.svc-fieldset { border: none; padding: 0; margin: 0 0 20px; }
.svc-legend { font-size: 14px; font-weight: 700; color: var(--color-text); 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 #C3CFD3;
  border-radius: 4px;
  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-dark); border-color: var(--color-main-dark); }
.svc-check input:checked + .box::after { transform: rotate(45deg) scale(1); }
.svc-check input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(63, 158, 145, 0.22); }
.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-band-green);
  border: 1px solid #CFE3DB;
  border-radius: 6px;
  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); 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: 4px;
  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-dark); border-color: var(--color-main-dark); }
.agree-check input:checked + .box::after { transform: rotate(45deg) scale(1); }
.agree-check input:focus-visible + .box { box-shadow: 0 0 0 3px rgba(63, 158, 145, 0.24); }
.form-submit {
  width: 100%;
  min-height: 66px;
  padding: 10px 24px;
  border: 3px solid var(--color-gold);
  cursor: pointer;
  background: linear-gradient(180deg, #1C7468 0%, var(--color-cta-navy) 52%, var(--color-cta-navy-dark) 100%);
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .34);
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 7px 0 rgba(130, 92, 0, .34),
    0 13px 24px rgba(15, 90, 80, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform .18s, box-shadow .18s, background .18s;
}
.form-submit:hover {
  background: linear-gradient(180deg, #218175 0%, #146A60 52%, #0A4943 100%);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 5px 0 rgba(130, 92, 0, .38),
    0 16px 28px rgba(15, 90, 80, .24);
}
.form-submit .arrow { font-size: 13px; color: var(--color-gold); }
.form-privacy { text-align: center; font-size: 11px; color: var(--color-text-light); margin-top: 16px; line-height: 1.8; }

/* ============================================================
   COMPANY
   ============================================================ */
.company { background: var(--color-band-green); }
.company-head { text-align: center; margin-bottom: 50px; }
.company-table { max-width: 780px; margin: 0 auto; background: #fff; border: 1px solid var(--color-line); box-shadow: var(--shadow-card); }
.company-table .row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--color-line);
}
.company-table .row:last-child { border-bottom: none; }
.company-table .th {
  background: var(--color-band-green);
  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.95; }
.company-table .td a { color: var(--color-main-dark); text-decoration: underline; }
.company-group { line-height: 1.85; }
.company-group__name {
  margin: 0 0 12px;
  font-weight: 500;
}
.company-office { margin: 0; }
.company-office + .company-office { margin-top: 18px; }
.company-office p { margin: 0; }
.company-office__label {
  color: var(--color-main-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ============================================================
   フッター
   ============================================================ */
.footer { background: var(--color-white); border-top: 1px solid var(--color-line); 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: 21px; color: var(--color-main-dark); }
.footer-logo .logo-mark span { color: var(--color-text); }
.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-dark); }
.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: flex;
  position: fixed;
  bottom: 20px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(940px, calc(100vw - 48px));
  max-width: 940px;
  z-index: 99;
  gap: 8px;
  overflow: visible;
  padding: 5px;
  border: 1px solid rgba(244, 180, 0, .38);
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 -8px 28px rgba(39, 48, 51, .12), 0 12px 34px rgba(244, 180, 0, .2);
  backdrop-filter: blur(8px);
}
.sp-fixed-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 64px;
  padding: 8px 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-align: center;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
}
.sp-fixed-cta .f-entry {
  flex: 2 1 0;
  position: relative;
  background: linear-gradient(180deg, #1C7468 0%, var(--color-cta-navy) 52%, var(--color-cta-navy-dark) 100%);
  color: var(--color-white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .34);
  border: 2px solid var(--color-gold);
  border-radius: 999px;
  margin: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 4px 0 rgba(130, 92, 0, .3);
}
.sp-fixed-cta .f-entry:hover {
  background: linear-gradient(180deg, #218175 0%, #146A60 52%, #0A4943 100%);
}
.sp-fixed-cta .f-tel {
  flex: 1 1 0;
  position: relative;
  background: linear-gradient(180deg, #fff 0%, #FFF8E5 100%);
  color: var(--color-cta-deep);
  border: 2px solid rgba(244, 180, 0, .78);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .85),
    0 4px 0 rgba(130, 92, 0, .12);
}
.sp-fixed-cta .f-tel:hover {
  background: #FFF3D0;
  color: #2E2100;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 960px) {
  .nav { display: none; }
  .works-grid { gap: 12px; }
  .work-item { padding: 26px 6px 18px; border-radius: 12px; }
  .work-item .icon { width: 46px; height: 46px; margin-bottom: 14px; }
  .work-item h3 { font-size: 12px; letter-spacing: .02em; }
}

@media (max-width: 768px) {
  /* 画面幅が狭いと同じ高さでも斜めが急になるため、角度を約半分に寝かせる */
  :root { --wedge-h: 48px; }

  body { font-size: 15px; }
  section { padding: 64px 0; }
  .sp-only { display: inline; }
  .body-text { font-size: 13px; }

  .header { padding-left: 14px; height: 60px; }
  .header-logo { gap: 0; min-width: 0; }
  .header-logo .logo-mark { font-size: 16px; 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, var(--color-band-green) 0%, #ffffff 78%); }
  .hero .container { width: 100vw; max-width: 100vw; padding: 0; }
  .hero-visual { max-width: 100vw; overflow: hidden; }
  .hero-visual picture { width: calc(100vw - 20px); max-width: calc(100vw - 20px); margin: 0 auto; }
  .hero-visual picture > img { width: 100% !important; max-width: 100% !important; height: auto !important; }
  .hero-visual img { box-shadow: none; border: 1px solid var(--color-line); }
  .hero-cta {
    width: auto;
    min-width: 0;
    margin: 14px 18px 0;
    filter: drop-shadow(0 8px 18px rgba(244, 180, 0, .24));
  }
  .hero-demo {
    padding: 14px 12px 16px;
    border-radius: 18px;
    box-shadow: 0 12px 26px rgba(39, 48, 51, .07), 0 10px 22px rgba(244, 180, 0, .12);
  }
  .hero-demo__lead {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.5;
  }
  .hero-demo__points {
    grid-template-columns: 1fr;
    gap: 7px;
    margin-bottom: 12px;
  }
  .hero-demo__points li {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12.5px;
    border-radius: 12px;
  }
  .hero-cta__btn { min-height: 58px; font-size: 14px; letter-spacing: .04em; }
  .hero-lead { font-size: 14px; }
  .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.6; }
  .hero-strip .big b { font-size: 24px; }
  /* 縦積みになるので下線を揃える必要がなく、padding-bottom は戻す */
  .hero-strip .big b.was { font-size: 19px; padding-bottom: 0; }
  .hero-strip .big b.now { font-size: 31px; }
  .hero-strip .note { font-size: 10.5px; }

  .section-en { font-size: 30px; }
  .section-title { font-size: 20px; }

  .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: 19px; }

  .reason-cards { grid-template-columns: 1fr; }

  /* WORKS:SPはアイコン左・ラベル右の縦積みカード */
  .works-grid { grid-template-columns: 1fr; gap: 14px; max-width: 480px; margin: 0 auto; }
  .work-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 20px 24px;
  }
  .work-item .icon { width: 48px; height: 48px; margin: 0; flex: none; }
  .work-item h3 { font-size: 16px; letter-spacing: .04em; }
  .works-note { margin-top: 40px; padding-top: 32px; }
  .works-note .l1 { font-size: 16px; }
  .works-note .l2 { font-size: 20px; padding: 0 4px; }

  .price-box { padding: 44px 24px; }
  .price-main { grid-template-columns: 1fr; gap: 28px; }
  .price-rate { border-right: none; border-bottom: 1px solid var(--color-line); padding: 0 0 24px; }
  .price-rate .rate-num { font-size: 68px; }
  .price-compare .now { font-size: 46px; }
  .price-support { font-size: 15px; }

  .target-grid { grid-template-columns: repeat(2, 1fr); }

  .curriculum-table .row { grid-template-columns: 110px 1fr; }

  /* FLOW:SPは白の横長カード+下向き矢印 */
  .flow-steps { grid-template-columns: 1fr; gap: 38px; max-width: 440px; }
  .flow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    background: #fff;
    border-radius: 8px;
    padding: 18px 18px;
    box-shadow: 0 8px 20px rgba(30, 41, 52, .18);
  }
  .flow-step:not(:last-child)::after {
    right: auto; top: auto;
    left: 50%; bottom: -30px;
    transform: translateX(-50%) rotate(90deg);
    width: 18px; height: 22px;
  }
  .flow-step .circle {
    width: 84px;
    flex: none;
    margin: 0;
    border: 2px solid var(--color-main);
    box-shadow: none;
  }
  .flow-step .sp-num {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--color-main-dark);
    font-size: 11px;
    line-height: 1;
  }
  .flow-step .sp-num b { font-size: 1.6em; }
  .flow-step .icon { width: 40px; height: 40px; }
  .flow-step h3 { color: var(--color-text); font-size: 17px; margin: 8px 0 2px; }
  .flow-step p { color: var(--color-text-light); font-size: 12.5px; line-height: 1.7; text-align: left; }

  .voice-card { padding: 36px 26px 30px; }

  .final-cta { padding: 90px 0; }
  .final-cta h2 { font-size: 18px; }
  .form-reassurance {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
  }
  .form-reassurance span {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12.5px;
    border-radius: 12px;
  }
  .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; }
  .cta-form-wrap { margin-top: 40px; }
  .svc-grid { grid-template-columns: 1fr; }
  .form-submit { min-height: 62px; font-size: 16px; }

  .company-table .row { grid-template-columns: 1fr; }
  .company-table .th { padding: 12px 22px; }
  .company-table .td.company-group {
    padding: 16px 22px 20px;
    line-height: 1.85;
  }
  .company-group__name { margin-bottom: 14px; }
  .company-office + .company-office { margin-top: 20px; }
  .company-office__label { margin-bottom: 4px; }
  .footer-inner { flex-direction: column; }
  .footer { padding-bottom: 120px; }

  .sp-fixed-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(112px, 1fr);
    bottom: 0;
    left: 8px !important;
    right: 8px !important;
    transform: none;
    width: auto !important;
    max-width: none !important;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    gap: 8px;
    padding: 5px 8px calc(5px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 16px rgba(39, 48, 51, .1);
  }
  .sp-fixed-cta .f-entry { flex: none; min-width: 0; }
  .sp-fixed-cta .f-tel { flex: none; min-width: 0; }
  .sp-fixed-cta a {
    min-height: 58px;
    font-size: 13px; font-weight: 700; letter-spacing: .04em;
    line-height: 1.3;
  }
  .sp-fixed-cta .cta-copy small { font-size: 10px; }

  .tri { display: none; }
}

@media (max-width: 480px) {
  .sp-fixed-cta {
    grid-template-columns: minmax(0, 1.45fr) minmax(106px, 1fr);
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    max-width: none !important;
  }
  .sp-fixed-cta .f-entry,
  .sp-fixed-cta .f-tel { flex: none; }
}

@media (max-width: 600px) {
  .sp-fixed-cta {
    grid-template-columns: minmax(0, 1.5fr) minmax(116px, 1fr);
    left: 8px !important;
    right: 8px !important;
    width: auto !important;
    max-width: none !important;
  }
}

/* ============================================================
   MOTION LAYER(控えめなモーション)
   ============================================================ */

/* ---------- スクロールプログレスバー ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--color-main-dark), var(--color-main));
  z-index: 110;
  pointer-events: none;
}
.scroll-progress::after {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 26px; height: 100%;
  background: var(--color-gold);
}

/* ---------- ヘッダー(スクロール時) ---------- */
.header { transition: height .35s ease, box-shadow .35s ease; }
.header.is-scrolled { height: 60px; box-shadow: 0 4px 18px rgba(39, 48, 51, .08); }
.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-main);
  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 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(rgba(244, 180, 0, .28), rgba(244, 180, 0, .28)) no-repeat left 82% / 0% 34%;
  transition: background-size .45s ease .15s;
}
body.js .marker.mk-on,
body.js .hero-copy .accent-line.mk-on { background-size: 100% 34%; }

/* ---------- ヒーロー登場シーケンス ---------- */
body.js .hero-visual {
  opacity: 1;
  transform: none;
  transition:
    opacity .45s ease,
    transform .45s ease;
}
body.is-loaded .hero-visual { opacity: 1; transform: none; transition-delay: .1s; }
body.js .hero-cta {
  opacity: 1;
  transform: none;
  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); }

/* ---------- ボタン・カード ホバー(浮きは控えめ) ---------- */
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.support-card { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.support-card:hover { transform: translateY(-3px); border-color: var(--color-main); box-shadow: 0 12px 28px rgba(39, 48, 51, 0.1); }

.work-item { transition: transform .22s ease, box-shadow .22s ease; }
.work-item:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(39, 48, 51, .12); }

.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: var(--shadow-card); }

.curriculum-table .row { transition: background .3s; }
.curriculum-table .row:hover .desc { background: var(--color-base); }

/* ---------- FLOWステップ:ポップイン ---------- */
.flow-step.rv .circle {
  transform: scale(.86);
  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 12px 26px rgba(30, 41, 52, .3); }

/* ---------- PRICE ---------- */
.price-box { transition: box-shadow .5s; }
.price-box:hover { box-shadow: 0 14px 34px rgba(30, 41, 52, .3); }
.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: var(--shadow-card); }
.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); }
}

/* ---------- フッター ---------- */
.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;
  }
  .final-cta .cta-lead { font-size: 12px;}
  .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 (max-width: 768px) {
  .sp-fixed-cta {
    display: grid !important;
    grid-template-columns: minmax(0, 1.55fr) minmax(118px, 1fr) !important;
    left: 8px !important;
    right: 8px !important;
    bottom: 0 !important;
    width: auto !important;
    max-width: none !important;
    box-sizing: border-box;
  }
}

/* ---------- モーション低減設定の尊重 ---------- */
@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% 34% !important; }
}
