/* ============================================================
   出張型AIスキル実践活用研修 LP
   Design System: 参考LP「シャイン」準拠(design_shine_lp.md)
   ============================================================ */
:root {
  /* design.md準拠:ネイビー×コーポレートブルー×ティール×セーフティイエロー */
  --color-main: #0e2a47;
  --color-main-dark: #081b30;
  --color-main-light: #dde8f2;
  --color-bg-blue: #f4f6f8;
  --color-bg-light: #f6f8fa;
  --color-blue: #005bac;
  --color-green: #00a676;
  --color-steel: #222831;
  --color-accent: #ffd21e;
  --color-accent-deep: #f0b800;
  --color-text: #243040;
  --color-text-dark: #111827;
  --color-text-light: #667085;
  --color-white: #ffffff;

  --font-ja: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Oswald", "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-script: "Oswald", "Barlow Condensed", sans-serif;

  --container: 1080px;
  --container-narrow: 860px;
  --shadow-card: 0 16px 30px rgba(8, 27, 48, 0.14);
  --shadow-button: 0 10px 22px rgba(8, 27, 48, 0.3);
}

* { 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: clamp(42px, 5.2vw, 58px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-main);
  line-height: 1.15;
}
/* 大英字ラベルのワイプ表示(ゼネコンサイト風) */
body.js .rv .section-en {
  clip-path: inset(0 100% 0 0);
  transition: clip-path .7s cubic-bezier(.7, 0, .2, 1) .1s;
}
body.js .rv.on .section-en { clip-path: inset(0 -2% 0 0); }
.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;
}

/* ---------- 工事テープ風ストライプ(ハザードテープ) ---------- */
.hero-strip { position: relative; }
.hero-strip::before,
.hero-strip::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 7px;
  background-image: repeating-linear-gradient(-45deg,
    var(--color-accent) 0 12px,
    #101828 12px 24px);
  z-index: 2;
}
.hero-strip::before { top: 0; }
.hero-strip::after { bottom: 0; }
.flow::before,
.final-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background-image: repeating-linear-gradient(-45deg,
    var(--color-accent) 0 13px,
    #101828 13px 26px);
  z-index: 4;
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  height: 58px;
  padding: 0 34px;
  border-radius: 8px;
  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.96);
  backdrop-filter: blur(6px);
  padding: 0 0 0 28px;
  border-bottom: 1px solid #e6ebf2;
}
.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(8, 27, 48, 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-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-color: var(--color-white);
  background-image:
    linear-gradient(rgba(14, 42, 71, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 42, 71, .05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.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-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-text .body-text { margin-top: 20px; }

/* ============================================================
   REASON(選ばれる理由)
   ============================================================ */
.reason {
  background: linear-gradient(165deg, #ffffff 0%, #ffffff 12%, #eef2f8 12%, #eef2f8 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; }

/* ============================================================
   WORKS(効率化できる業務)
   ============================================================ */
.works { background: var(--color-white); }
.works-head { text-align: center; margin-bottom: 56px; }
.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
/* 写真タイル型(大林組の画像グリッドを参考)。画像未配置でもネイビータイルで成立 */
.work-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #0e2a47 0%, #114066 78%, #16507e 100%);
  text-align: left;
}
.work-photo { position: absolute; inset: 0; }
.work-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22, 1, .32, 1);
}
.work-item.no-photo .work-photo { display: none; }
/* 写真上の暗グラデーション(白文字の可読性確保) */
.work-item::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,27,48,.14) 34%, rgba(8,27,48,.82) 100%);
  z-index: 1;
  pointer-events: none;
}
.work-item .no {
  position: absolute; top: 10px; left: 13px;
  z-index: 2;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--color-accent);
}
.work-item .icon { position: absolute; top: 11px; right: 12px; width: 30px; height: 30px; z-index: 2; opacity: .92; }
.work-item .icon svg { width: 100%; height: 100%; stroke: #fff; fill: none; stroke-width: 1.6; }
.work-item h3 {
  position: absolute; left: 14px; right: 12px; bottom: 12px;
  z-index: 2;
  font-size: 15px; font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(8,27,48,.45);
}
.work-item h3::after {
  content: "";
  display: block;
  width: 22px; height: 2px;
  background: var(--color-accent);
  margin-top: 7px;
  transition: width .3s ease;
}
.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%, #eef2f8 10%, #eef2f8 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(8,27,48,.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 #d6dfec; 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;
}

/* ============================================================
   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 #ccd6e6;
  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%, #f5f7fb 14%, #f5f7fb 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 #e6ebf2;
}
.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
   ============================================================ */
/* 大成建設TOPICS帯を参考にしたネイビー→ティールのグラデーション */
.flow {
  background: linear-gradient(115deg, #081b30 0%, #0e2a47 46%, #0a5c68 88%, #00a676 135%);
  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(8,27,48,.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(180deg, var(--color-main-dark) 0%, var(--color-main) 100%);
  padding: 110px 0;
  position: relative;
}
.voice-head { text-align: center; margin-bottom: 54px; }
.voice .section-en { color: #fff; }
.voice .section-sub-ja { color: rgba(255,255,255,.7); }
.voice .section-title { color: #fff; }
.voice .voice-note { color: rgba(255,255,255,.6); }
.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 #e6ebf2;
}
.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); }

/* ============================================================
   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 #d6dfec; 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(8, 27, 48, 0.9), rgba(14, 42, 71, 0.84)),
    url("../images/06.png") center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}
.final-cta .cta-script {
  position: absolute;
  top: 30px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 120px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.08);
  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(8, 27, 48, 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 #d1dae8;
  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, 91, 172, 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, 91, 172, 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 #c3d0e4;
  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, 91, 172, 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: 8px;
  box-shadow: 0 10px 22px rgba(8, 27, 48, 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(8, 27, 48, 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 #e6ebf2;
}
.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-steel); padding: 56px 0 96px; }
.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: 700; font-size: 22px; letter-spacing: .06em; color: #fff; }
.footer-logo .logo-mark span { color: var(--color-accent); }
.footer-logo address { font-style: normal; font-size: 12px; line-height: 2; color: rgba(255,255,255,.65); margin-top: 12px; }
.footer-nav { display: grid; grid-template-columns: repeat(2, auto); gap: 6px 40px; }
.footer-nav a { font-size: 12px; color: rgba(255,255,255,.8); font-weight: 500; }
.footer-nav a::before { content: "▶ "; color: var(--color-accent); font-size: 9px; }
.footer-nav a:hover { color: #fff; }
.copyright { text-align: center; font-family: var(--font-en); font-size: 10px; letter-spacing: .14em; color: rgba(255,255,255,.45); margin-top: 44px; }

/* ---------- スマホ固定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(2, 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 { 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; }
  .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-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: 36px; }
  .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-grid { grid-template-columns: repeat(2, 1fr); }
  .works-note { font-size: 16px; }

  .price-box { padding: 44px 24px; }
  .price-main { grid-template-columns: 1fr; gap: 28px; }
  .price-rate { border-right: none; border-bottom: 1px solid #d6dfec; padding: 0 0 24px; }
  .price-rate .rate-num { font-size: 72px; }
  .price-compare .now { font-size: 48px; }
  .price-support { font-size: 15px; }

  .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: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; }

}

/* ============================================================
   MARQUEE(業務キーワード帯・図解的アイキャッチ)
   ============================================================ */
.marquee {
  background: var(--color-white);
  border-bottom: 1px solid #e6ebf2;
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeMove 38s linear infinite;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: .1em;
  color: #d2dce7;
  white-space: nowrap;
}
.marquee-track span::after {
  content: "▲";
  font-size: 10px;
  color: var(--color-accent-deep);
}
@keyframes marqueeMove { to { transform: translateX(-50%); } }

/* ============================================================
   DATA(数字で見る・図解サマリー)
   ============================================================ */
.stats {
  background: linear-gradient(120deg, #081b30 0%, #0e2a47 58%, #114066 100%);
  position: relative;
  padding: 100px 0;
}
.stats::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}
.stats .container { position: relative; }
.stats-head { text-align: center; margin-bottom: 54px; }
.stats-head .section-en { color: #fff; }
.stats-head .section-sub-ja { color: rgba(255,255,255,.72); }
.stats-head .section-title { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 680px; margin: 0 auto; }
.stat-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.16);
  border-top: 3px solid var(--color-accent);
  padding: 28px 16px 24px;
  text-align: center;
  transition: transform .25s ease, background .25s ease;
}
.stat-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); }
.stat-card .stat-label { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.82); letter-spacing: .08em; }
.stat-card .stat-num {
  font-family: var(--font-en);
  font-size: 58px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 6px 0 2px;
  font-variant-numeric: tabular-nums;
}
.stat-card .stat-num .prefix,
.stat-card .stat-num .unit { font-size: 20px; font-family: var(--font-ja); font-weight: 900; color: var(--color-accent); }
.stat-card .stat-note { font-size: 11px; color: rgba(255,255,255,.55); line-height: 1.7; }
.stats-note { text-align: center; margin-top: 26px; font-size: 11px; color: rgba(255,255,255,.5); }

/* ============================================================
   EFFECT(時短効果のビフォーアフター図解)
   ============================================================ */
.effect { background: linear-gradient(165deg, #ffffff 0%, #ffffff 12%, #eef2f8 12%, #eef2f8 100%); }
.effect-head { text-align: center; margin-bottom: 54px; }
.effect-chart { max-width: 880px; margin: 0 auto; display: grid; gap: 40px; }
.effect-row .task {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 700; color: var(--color-text-dark);
  margin-bottom: 12px;
}
.effect-row .task .cut {
  background: var(--color-text-dark);
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 13px; font-weight: 800;
  letter-spacing: .06em;
  padding: 3px 12px;
}
.bar-line { display: grid; grid-template-columns: 88px 1fr; align-items: center; gap: 12px; }
.bar-line + .bar-line { margin-top: 8px; }
.bar-line .tag {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  padding: 5px 0;
}
.bar-line.before .tag { background: #dfe6ee; color: var(--color-text-light); }
.bar-line.after .tag { background: var(--color-main); color: #fff; }
.bar-wrap { position: relative; height: 32px; background: rgba(14, 42, 71, .06); }
.bar {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0;
  transition: width 1.2s cubic-bezier(.22, 1, .32, 1) var(--d, 0s);
}
.bar-line.before .bar { background: repeating-linear-gradient(-45deg, #9fb0c3 0 8px, #b4c2d2 8px 16px); }
.bar-line.after .bar { background: linear-gradient(90deg, var(--color-accent-deep), var(--color-accent)); }
.bar-time {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(10px, -50%);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 800;
  color: var(--color-text-dark);
  white-space: nowrap;
  transition: left 1.2s cubic-bezier(.22, 1, .32, 1) var(--d, 0s);
}
.effect-chart.on .bar { width: var(--w); }
.effect-chart.on .bar-time { left: var(--w); }
.effect-note { text-align: center; margin-top: 30px; font-size: 11px; color: var(--color-text-light); }

/* ============================================================
   ABOUTチェックリスト(段落の図解化)
   ============================================================ */
.about-checks { margin-top: 22px; display: grid; gap: 10px; }
.about-checks li {
  position: relative;
  background: var(--color-bg-light);
  border-left: 3px solid var(--color-green);
  padding: 12px 16px 12px 46px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.7;
}
.about-checks li::before {
  content: "";
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  background: var(--color-green);
  border-radius: 50%;
}
.about-checks li::after {
  content: "";
  position: absolute;
  left: 19.5px; top: 50%;
  transform: translateY(-62%) rotate(45deg);
  width: 5px; height: 10px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
}

/* ---------- VOICE 成果チップ ---------- */
.voice-result {
  position: relative; z-index: 1;
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 14px;
  margin-bottom: 10px;
}
.voice-result b { color: var(--color-accent); font-family: var(--font-en); font-size: 14px; letter-spacing: .02em; }

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .marquee { padding: 15px 0; }
  .marquee-track span { font-size: 17px; gap: 16px; padding-right: 16px; }
  .stats { padding: 70px 0; }
  .stats-grid { gap: 12px; }
  .stat-card { padding: 20px 10px 16px; }
  .stat-card .stat-num { font-size: 40px; }
  .stat-card .stat-num .prefix,
  .stat-card .stat-num .unit { font-size: 14px; }
  .stat-card .stat-label { font-size: 11px; }
  .effect-row .task { font-size: 14px; flex-wrap: wrap; }
  .bar-line { grid-template-columns: 62px 1fr; gap: 8px; }
  .bar-wrap { height: 26px; }
  .bar-time { font-size: 12px; }
  /* スマホではラベルが右端からはみ出さないよう最大幅を抑える */
  .bar-line.before .bar-wrap { --w: 82% !important; }
}
/* モーション低減時・JS無効時も図解が見えるようにする */
@media (prefers-reduced-motion: reduce) {
  .bar { width: var(--w); }
  .bar-time { left: var(--w); }
}

/* ============================================================
   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) 55%, var(--color-accent));
  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(8, 27, 48, .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%; }

/* ---------- 三角形の浮遊 ---------- */
@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: .72s; }
body.is-loaded .hero-cta:hover { transform: translateY(-2px); }

/* ---------- ボタン:シャインスイープ ---------- */
.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(8, 27, 48, 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; }
.work-item:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(8, 27, 48, .26); }
.work-item:hover .work-photo img { transform: scale(1.07); }
.work-item:hover h3::after { width: 46px; }

.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(8, 27, 48, .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(8, 27, 48, 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(8, 27, 48, .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; }
}

/* ============================================================
   v10 PREMIUM UPGRADE
   (比較図解・受講スタイル色面ブロック・ABOUT仕組み図解・
    ヒーローワイプ登場・SCROLLキュー)
   ============================================================ */

/* ---------- ヒーロー:ネイビーパネルのワイプ登場 ---------- */
body.js .hero-visual picture {
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 52px rgba(8, 27, 48, 0.18);
}
body.js .hero-visual picture img { box-shadow: none; }
body.js .hero-visual picture::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--color-main-dark) 0%, var(--color-main) 60%, var(--color-blue) 100%);
  transform: scaleX(1);
  transform-origin: right;
  transition: transform .85s cubic-bezier(.7, 0, .2, 1) .2s;
  z-index: 2;
  pointer-events: none;
}
body.is-loaded .hero-visual picture::after { transform: scaleX(0); }
body.js .hero-visual picture img {
  transform: scale(1.05);
  transition: transform 1.25s cubic-bezier(.22, 1, .32, 1) .2s;
}
body.is-loaded .hero-visual picture img { transform: none; }

/* ---------- ヒーロー:SCROLLキュー ---------- */
.scroll-cue {
  position: absolute;
  right: 34px; bottom: 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.scroll-cue .txt {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .32em;
  color: var(--color-main);
  opacity: .75;
}
.scroll-cue .line {
  width: 1.5px; height: 58px;
  background: rgba(14, 42, 71, .18);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -46%; left: 0;
  width: 100%; height: 46%;
  background: var(--color-main);
  animation: cueDrop 1.9s cubic-bezier(.4, 0, .4, 1) infinite;
}
@keyframes cueDrop { to { top: 112%; } }

/* ---------- ABOUT:出張型の仕組み(3ステップ図解) ---------- */
.about-scheme {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr;
  align-items: stretch;
}
.as-step {
  background: #fff;
  border: 1.5px solid #d6dfec;
  border-top: 3px solid var(--color-main);
  padding: 26px 18px 22px;
  text-align: center;
  position: relative;
}
.as-step.goal { border-top-color: var(--color-accent); background: linear-gradient(180deg, #fffdf2 0%, #fff 60%); }
.as-step .as-num {
  font-family: var(--font-en);
  font-size: 12px; font-weight: 700;
  letter-spacing: .16em;
  color: var(--color-blue);
}
.as-step.goal .as-num { color: var(--color-accent-deep); }
.as-step svg { width: 46px; height: 46px; stroke: var(--color-main); fill: none; stroke-width: 1.6; margin: 10px auto 10px; display: block; }
.as-step h3 { font-size: 15.5px; font-weight: 700; color: var(--color-text-dark); line-height: 1.7; }
.as-step p { font-size: 12px; line-height: 1.85; color: var(--color-text-light); margin-top: 6px; }
.as-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  color: var(--color-accent-deep);
  font-size: 17px;
  font-weight: 800;
}

/* ---------- COMPARISON:集合研修との比較図解 ---------- */
.compare {
  background-color: var(--color-white);
  background-image:
    linear-gradient(rgba(14, 42, 71, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 42, 71, .045) 1px, transparent 1px);
  background-size: 28px 28px;
}
.compare-head { text-align: center; margin-bottom: 52px; }
.compare-table {
  max-width: 940px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #d6dfec;
  box-shadow: var(--shadow-card);
}
.cmp-row {
  display: grid;
  grid-template-columns: 176px 1fr 1.28fr;
  border-bottom: 1px solid #e0e7f0;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row > div {
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
}
.cmp-row .c-label {
  background: var(--color-bg-blue);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--color-main-dark);
  line-height: 1.6;
}
.cmp-row .c-them { background: #fff; }
.cmp-row .c-ours {
  background: #f2f8ff;
  border-left: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
}
.cmp-row.head > div { padding: 14px 12px; }
.cmp-row.head .c-them { font-weight: 700; font-size: 13.5px; color: var(--color-text-light); }
.cmp-row.head .c-ours {
  background: var(--color-main);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: .04em;
  border-top: 2px solid var(--color-main);
  position: relative;
}
.cmp-row.head .c-ours .chip {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-text-dark);
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .1em;
  padding: 2px 12px;
  border-radius: 999px;
}
.cmp-row:last-child .c-ours { border-bottom: 2px solid var(--color-main); }
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-weight: 900;
  font-size: 15px;
  flex: 0 0 auto;
}
.mark.best { background: var(--color-accent); color: var(--color-main-dark); box-shadow: 0 4px 10px rgba(240, 184, 0, .38); }
.mark.soso { background: #e7edf4; color: #8593a5; }
.cmp-txt { font-size: 12.5px; line-height: 1.75; color: var(--color-text); font-weight: 500; }
.c-them .cmp-txt { color: var(--color-text-light); }
.c-ours .cmp-txt { font-weight: 700; color: var(--color-text-dark); }
.compare-note { text-align: center; margin-top: 24px; font-size: 11px; color: var(--color-text-light); }
/* ◎マークのポップイン */
.cmp-row.rv .mark {
  transform: scale(.4);
  opacity: 0;
  transition:
    transform .4s cubic-bezier(.34, 1.56, .64, 1) calc(var(--d, 0s) + .28s),
    opacity .28s ease calc(var(--d, 0s) + .28s);
}
.cmp-row.rv.on .mark { transform: scale(1); opacity: 1; }

/* ---------- STYLE:受講スタイル色面ブロック(大成建設の色面を参考) ---------- */
.style-sec { padding-bottom: 0; background: var(--color-white); }
.style-head { text-align: center; margin-bottom: 52px; }
.style-grid { display: grid; grid-template-columns: 1fr 1fr; }
.style-block {
  position: relative;
  display: block;
  min-height: 430px;
  padding: 58px 52px 96px;
  color: #fff;
  overflow: hidden;
}
.style-block.sb-visit { background: linear-gradient(120deg, #081b30 0%, #0e2a47 55%, #114f7e 100%); }
.style-block.sb-online { background: linear-gradient(120deg, #003d49 0%, #0a5c68 48%, #00a676 130%); }
.sb-photo { position: absolute; inset: 0; }
.sb-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .34;
  transition: transform .7s cubic-bezier(.22, 1, .32, 1), opacity .4s ease;
}
.style-block.no-photo .sb-photo { display: none; }
.style-block:hover .sb-photo img { transform: scale(1.05); opacity: .44; }
.sb-ghost {
  position: absolute;
  right: -6px; bottom: -26px;
  font-family: var(--font-en);
  font-size: 108px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, .22);
  pointer-events: none;
  line-height: 1;
  z-index: 1;
}
.sb-body { position: relative; z-index: 2; max-width: 430px; }
.sb-num {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 4px;
  margin-bottom: 16px;
}
.sb-body h3 { font-size: 30px; font-weight: 900; letter-spacing: .06em; line-height: 1.5; }
.sb-body h3 small {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: var(--color-main-dark);
  background: var(--color-accent);
  padding: 3px 12px;
  margin-left: 12px;
  vertical-align: middle;
  border-radius: 999px;
  letter-spacing: .08em;
}
.sb-body > p { font-size: 13.5px; line-height: 2; margin-top: 14px; color: rgba(255,255,255,.9); }
.sb-body ul { margin-top: 18px; display: grid; gap: 8px; }
.sb-body ul li {
  position: relative;
  padding-left: 24px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.7;
}
.sb-body ul li::before {
  content: "";
  position: absolute;
  left: 2px; top: .52em;
  width: 9px; height: 5px;
  border-left: 2.5px solid var(--color-accent);
  border-bottom: 2.5px solid var(--color-accent);
  transform: rotate(-45deg);
}
.sb-arrow {
  position: absolute;
  right: 30px; bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border: 1.5px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.style-block:hover .sb-arrow {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-main-dark);
  transform: translateX(4px);
}

/* ---------- v10 レスポンシブ ---------- */
.sp-only { display: none; }
@media (max-width: 960px) {
  .sb-ghost { font-size: 84px; }
}
@media (max-width: 768px) {
  .sp-only { display: inline; }
  .scroll-cue { display: none; }
  body.js .hero-visual picture { overflow: visible; box-shadow: none; }
  body.js .hero-visual picture::after { display: none; }
  body.js .hero-visual picture img { transform: none; transition: none; }

  .about-scheme {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 38px;
  }
  .as-arrow { transform: rotate(90deg); padding: 6px 0; }

  .cmp-row { grid-template-columns: 88px 1fr 1.16fr; }
  .cmp-row > div { padding: 13px 8px; gap: 5px; }
  .cmp-row .c-label { font-size: 11px; }
  .cmp-row.head .c-them { font-size: 11px; }
  .cmp-row.head .c-ours { font-size: 12px; }
  .cmp-row.head .c-ours .chip { font-size: 9px; padding: 2px 9px; }
  .mark { width: 27px; height: 27px; font-size: 12px; }
  .cmp-txt { font-size: 10.5px; line-height: 1.65; }

  .style-grid { grid-template-columns: 1fr; }
  .style-block { min-height: 0; padding: 44px 24px 88px; }
  .sb-body h3 { font-size: 24px; }
  .sb-body h3 small { font-size: 10.5px; padding: 2px 10px; margin-left: 8px; }
  .sb-ghost { font-size: 62px; bottom: -14px; }
  .sb-arrow { width: 46px; height: 46px; right: 20px; bottom: 20px; }
}

/* ---------- モーション低減設定の尊重 ---------- */
@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-visual,
  body.js .hero-cta,
  .flow-step.rv .circle {
    opacity: 1 !important;
    transform: none !important;
  }
  body.js .marker { background-size: 100% 36% !important; }
  body.js .rv .section-en { clip-path: none !important; }
}
