*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}
:root {
  --navy: #1B2E4B;
  --blue: #3A7BD5;
  --blue-mid: #5B9BE8;
  --blue-light: #D6E8FB;
  --blue-pale: #EEF5FD;
  --sky: #A8CFFB;
  --white: #fff;
  --bg: #F5F8FC;
  --border: #D8E4F0;
  --text: #1B2E4B;
  --muted: #6B82A0;
  --hint: #A3B5CB;
  --ax-a: #3A7BD5;
  --ax-b: #2BA88A;
  --ax-c: #E07B5A;
  --fd: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --fb: 'Noto Sans JP', sans-serif;
  --rsm: 8px;
  --rmd: 14px;
  --rlg: 20px;
  --rxl: 28px;
  --rfl: 999px;
}
html {
  scroll-behavior: smooth
}
body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  font-size: 15px;
  overflow-x: hidden
}
/* ── FIXED CTA BAR（広告LP用） ── */
.fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .10);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform .3s ease
}
.fixed-cta.show {
  transform: translateY(0)
}
.fc-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  display: none
}
.fc-btn {
  padding: 10px 28px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--rfl);
  text-decoration: none;
  transition: background .15s
}
.fc-btn:hover {
  background: #2e67c0
}
@media(min-width:600px) {
  .fc-text {
    display: block
  }
}
/* ── NAV ── */
.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s
}
.hdr.on {
  box-shadow: 0 2px 20px rgba(27, 46, 75, .08)
}
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  height: 64px
}
.logo {
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  text-decoration: none;
  margin-right: auto;
  letter-spacing: -.02em
}
.logo span {
  color: var(--blue)
}
.nl {
  display: flex
}
.nl a {
  padding: 0 15px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap
}
.nl a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue)
}
.ncta {
  margin-left: 16px;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--rfl);
  text-decoration: none;
  transition: background .15s, transform .15s;
  white-space: nowrap
}
.ncta:hover {
  background: #2e67c0;
  transform: translateY(-1px)
}
/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
  background: var(--navy)
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}
.o1 {
  width: 600px;
  height: 600px;
  background: var(--blue);
  opacity: .12;
  top: -200px;
  right: -150px
}
.o2 {
  width: 300px;
  height: 300px;
  background: var(--sky);
  opacity: .09;
  bottom: -60px;
  left: 5%
}
.o3 {
  width: 160px;
  height: 160px;
  background: var(--blue-mid);
  opacity: .13;
  top: 35%;
  left: 42%
}
.hero-in {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}
.h-eye {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--sky);
  margin-bottom: 18px;
  text-transform: uppercase;
  opacity: 0;
  animation: fu .6s ease .1s forwards
}
/* H1：SEO対応版 */
.h-ttl {
  font-family: var(--fd);
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.28;
  letter-spacing: -.02em;
  margin-bottom: 22px;
  opacity: 0;
  animation: fu .6s ease .2s forwards
}
.h-ttl .kw {
  color: var(--sky)
}
.h-ttl .sub {
  display: block;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  margin-top: 10px;
  line-height: 1.5
}
.h-lead {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.9;
  margin-bottom: 36px;
  opacity: 0;
  animation: fu .6s ease .3s forwards
}
.h-lead strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 700
}
.h-acts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .6s ease .4s forwards
}
.btn-hp {
  padding: 14px 32px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--rfl);
  text-decoration: none;
  transition: background .15s, transform .15s;
  display: inline-block
}
.btn-hp:hover {
  background: #2e67c0;
  transform: translateY(-2px)
}
.btn-hs {
  padding: 14px 26px;
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--rfl);
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .18);
  transition: background .15s
}
.btn-hs:hover {
  background: rgba(255, 255, 255, .16)
}
/* 実績バッジ */
.h-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  opacity: 0;
  animation: fu .6s ease .5s forwards
}
.hs-item {
  text-align: center
}
.hs-num {
  font-family: var(--fd);
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1
}
.hs-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  margin-top: 3px
}
/* Hero visual */
.hv {
  opacity: 0;
  animation: fu .7s ease .35s forwards
}
.hcs {
  position: relative;
  height: 380px
}
.fc2 {
  position: absolute;
  border-radius: var(--rlg);
  padding: 18px 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .14)
}
.fc2-1 {
  width: 270px;
  top: 10px;
  left: 0;
  background: rgba(255, 255, 255, .09);
  display: block;
  text-decoration: none
}
.fc2-2 {
  width: 210px;
  top: 155px;
  right: 0;
  background: rgba(58, 123, 213, .22);
  border-color: rgba(91, 155, 232, .28);
  display: block;
  text-decoration: none
}
.fc2-3 {
  width: 230px;
  bottom: 10px;
  left: 10px;
  background: rgba(43, 168, 138, .18);
  border-color: rgba(43, 168, 138, .28);
  display: block;
  text-decoration: none
}
.fclb {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--sky);
  margin-bottom: 7px;
  text-transform: uppercase
}
.fctt {
  font-family: var(--fd);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4
}
.fctgs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}
.fctg {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--rfl);
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78)
}
/* ── SECTION ── */
.sec {
  padding: 88px 32px
}
.sin {
  max-width: 1080px;
  margin: 0 auto
}
.slb {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px
}
.stt {
  font-family: var(--fd);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px
}
.sld {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px
}
/* ── WHY ── */
.why {
  background: var(--white)
}
.wg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 52px
}
.wvis {
  background: var(--bg);
  border-radius: var(--rxl);
  padding: 32px;
  position: relative;
  overflow: hidden
}
.wvis::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--blue-light);
  opacity: .7
}
.vb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  margin-bottom: 14px
}
.vr {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rmd);
  padding: 11px 14px;
  font-size: 13px;
  color: var(--muted)
}
.vd {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0
}
.d1 {
  background: var(--blue)
}
.d2 {
  background: var(--ax-b)
}
.d3 {
  background: var(--ax-c)
}
.d4 {
  background: #8B7EDB
}
.d5 {
  background: #E8A020
}
.varr {
  text-align: center;
  font-size: 18px;
  color: var(--hint);
  margin: 5px 0
}
.vaft {
  background: var(--navy);
  border-radius: var(--rmd);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px
}
.vabig {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px
}
.vatxt {
  color: #fff;
  font-size: 14px;
  font-weight: 700
}
.vasub {
  color: rgba(255, 255, 255, .45);
  font-size: 12px
}
.wpts {
  display: flex;
  flex-direction: column;
  gap: 26px
}
.wpn {
  font-family: var(--fd);
  font-size: 38px;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 4px
}
.wpt {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}
.wpd {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8
}
/* ── AXIS / CAROUSEL ── */
.axsec {
  background: var(--bg);
  padding-bottom: 72px
}
.axsec .sin {
  padding-bottom: 0
}
/* カルーセル全体 — セクションの padding 内に収まる */
.ax-carousel {
  margin-top: 40px;
  position: relative;
  overflow: hidden   /* 右端でカードをクリップしてピーク表現 */
}
.ax-viewport {
  overflow: visible; /* トラックがはみ出せるよう visible に */
  padding: 8px 0 12px
}
.ax-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  will-change: transform;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94)
}
/* スライド幅：5枚＋右端が少し見える（ピーク効果） */
.ax-slide {
  flex: 0 0 18%;
  min-width: 0;
  display: flex;
  flex-direction: column
}
/* カード本体 */
.axc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: block;
  color: inherit;
  height: 100%
}
.axc:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 46, 75, .10)
}
.axtop {
  height: 7px
}
.axb {
  padding: 24px 24px 28px
}
.axbdg {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--rfl);
  margin-bottom: 12px
}
.axtt {
  font-family: var(--fd);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 9px
}
.axds {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px
}
.axsv {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px
}
.sch {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: var(--rfl);
  border: 1px solid
}
.axlk {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px
}
.arr {
  transition: transform .15s
}
.axc:hover .arr {
  transform: translateX(4px)
}
/* コントロール */
.ax-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
  padding: 0 32px
}
.ax-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .15s
}
.ax-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}
.ax-btn:hover:not(:disabled) {
  background: var(--navy);
  border-color: var(--navy)
}
.ax-btn:hover:not(:disabled) svg {
  stroke: #fff
}
.ax-btn:disabled {
  opacity: .3;
  cursor: default
}
.ax-dots {
  display: flex;
  gap: 7px;
  align-items: center
}
.ax-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: all .2s
}
.ax-dot.active {
  background: var(--navy);
  width: 22px;
  border-radius: 4px
}
/* ── SERVICES ── */
.svsec {
  background: #fff
}
.svg2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px
}
.svc {
  display: block;
  text-decoration: none;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  padding: 22px 18px;
  transition: background .15s, transform .15s
}
.svc:hover {
  background: var(--blue-pale);
  transform: translateY(-2px)
}
.svic {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: var(--rmd);
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: center
}
.svic svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}
.svtt {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px
}
.svds {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7
}
/* ── FLOW ── */
.flsec {
  background: var(--navy)
}
.flsec .slb {
  color: var(--sky)
}
.flsec .stt {
  color: #fff
}
.flsec .sld {
  color: rgba(255, 255, 255, .50)
}
.flg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 52px;
  position: relative
}
.flg::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 12.5%;
  width: 75%;
  height: 1px;
  background: rgba(255, 255, 255, .10)
}
.fls {
  padding: 0 18px 0 0;
  position: relative
}
.fsn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fd);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  z-index: 1
}
.fst {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px
}
.fsd {
  font-size: 13px;
  color: rgba(255, 255, 255, .46);
  line-height: 1.75
}
/* ── CASES ── */
.cssec {
  background: var(--bg)
}
.csg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px
}
.csc {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  overflow: hidden;
  transition: box-shadow .18s, transform .18s
}
.csc:hover {
  box-shadow: 0 12px 32px rgba(27, 46, 75, .08);
  transform: translateY(-3px)
}
.cstop {
  height: 5px
}
.csb {
  padding: 22px
}
.csin {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--hint);
  margin-bottom: 7px
}
.cstt {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.45
}
.csds {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 14px
}
.cstgs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px
}
.cstg {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--rfl);
  background: var(--blue-pale);
  color: var(--blue);
  font-weight: 500
}
/* ── FAQ（LLMO対応） ── */
.faqsec {
  background: var(--white)
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 44px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  overflow: hidden
}
.faq-q {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  background: var(--bg);
  transition: background .15s
}
.faq-q:hover {
  background: var(--blue-pale)
}
.faq-qm {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 15px
}
.faq-a {
  padding: 14px 20px 16px 46px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  background: #fff
}
/* ── FAQ more link ── */
.faq-more {
  margin-top: 28px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center
}
.faq-more-btn {
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid var(--blue);
  border-radius: var(--rlg);
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, color .15s
}
.faq-more-btn:hover {
  background: var(--blue);
  color: #fff
}
/* ── CTA ── */
.ctasec {
  background: var(--white);
  padding: 88px 32px
}
.ctain {
  max-width: 700px;
  margin: 0 auto;
  background: var(--navy);
  border-radius: var(--rxl);
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden
}
.ctain::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--blue);
  opacity: .14
}
.ctain::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--sky);
  opacity: .08
}
.ctae {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--sky);
  margin-bottom: 14px;
  text-transform: uppercase;
  position: relative
}
.ctat {
  font-family: var(--fd);
  font-size: clamp(18px, 2.8vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 14px;
  position: relative
}
.ctad {
  font-size: 14px;
  color: rgba(255, 255, 255, .48);
  line-height: 1.85;
  margin-bottom: 32px;
  position: relative
}
.ctaas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative
}
.btncp {
  padding: 14px 34px;
  border-radius: var(--rfl);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all .15s;
  display: inline-block;
  background: var(--blue);
  color: #fff
}
.btncp:hover {
  background: #2e67c0;
  transform: translateY(-2px)
}
.btncg {
  padding: 14px 26px;
  border-radius: var(--rfl);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: inline-block;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  border: 1.5px solid rgba(255, 255, 255, .18)
}
.btncg:hover {
  background: rgba(255, 255, 255, .08)
}
.ctan {
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  margin-top: 18px;
  position: relative
}
/* ── FOOTER ── */
.ftr {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .05);
  padding: 44px 32px 80px
}
.ftin {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px
}
.flogo {
  font-family: var(--fd);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none
}
.flogo span {
  color: var(--sky)
}
.ftag {
  font-size: 12px;
  color: rgba(255, 255, 255, .35);
  margin-top: 5px
}
.fls2 {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center
}
.fls2 a {
  font-size: 12px;
  color: rgba(255, 255, 255, .38);
  text-decoration: none
}
.fls2 a:hover {
  color: rgba(255, 255, 255, .75)
}
.fcp {
  max-width: 1080px;
  margin: 24px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  font-size: 11px;
  color: rgba(255, 255, 255, .22)
}
/* ── FLOW IN AXIS ── */
.ax-flow {
  max-width: 1080px;
  margin: 52px auto 0;
  padding: 0 32px
}
.ax-flow-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px
}
.ax-flow-ttl {
  font-family: var(--fd);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.38;
  margin-bottom: 8px
}
.ax-flow-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px
}
.ax-fsteps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden
}
.ax-fstep {
  padding: 26px 22px;
  background: #fff
}
.ax-fstep-n {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--fd);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px
}
.ax-fstep-t {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3
}
.ax-fstep-d {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 10px
}
.ax-fstep-sub {
  display: inline-block;
  font-size: 11px;
  color: var(--hint);
  background: var(--bg);
  padding: 2px 9px;
  border-radius: var(--rfl)
}
.ax-flow-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  flex-wrap: wrap
}
.ax-flow-btn {
  display: inline-block;
  padding: 11px 26px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--rfl);
  text-decoration: none;
  transition: background .15s
}
.ax-flow-btn:hover { background: #2e67c0 }
.ax-flow-note {
  font-size: 12px;
  color: var(--hint)
}
/* ── SCHEDULE IN CASES ── */
.cs-sched {
  margin-top: 52px;
  padding-top: 44px;
  border-top: 2px solid var(--border)
}
.cs-sched-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 8px
}
.cs-sched-ttl {
  font-family: var(--fd);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.38;
  margin-bottom: 8px
}
.cs-sched-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px
}
.cs-sched-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}
.cs-sched-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--rlg);
  overflow: hidden
}
.cs-sched-top { height: 5px }
.cs-sched-body { padding: 20px 20px 22px }
.cs-sched-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--rfl);
  margin-bottom: 10px
}
.cs-sched-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.35
}
.cs-sched-dur {
  font-family: var(--fd);
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1
}
.cs-sched-dur-note {
  font-size: 11px;
  color: var(--hint);
  margin-bottom: 16px;
  margin-top: 2px
}
.cs-sched-phases {
  border: 1px solid var(--border);
  border-radius: var(--rmd);
  overflow: hidden
}
.cs-sched-phase {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 12px;
  border-bottom: 1px solid var(--border);
  background: #fff
}
.cs-sched-phase:last-child { border-bottom: none }
.cs-sched-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px
}
.cs-sched-phase-info { flex: 1 }
.cs-sched-phase-name {
  font-size: 12px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4
}
.cs-sched-phase-time {
  font-size: 11px;
  color: var(--hint);
  margin-top: 1px
}
/* ── ANIM ── */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(20px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease
}
.rv.in {
  opacity: 1;
  transform: translateY(0)
}
.d1x {
  transition-delay: .08s
}
.d2x {
  transition-delay: .16s
}
.d3x {
  transition-delay: .24s
}
/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .hero-in, .wg {
    grid-template-columns: 1fr
  }
  .hv, .nl {
    display: none
  }
  .csg {
    grid-template-columns: 1fr
  }
  /* カルーセル：タブレット=3枚＋ピーク */
  .ax-slide {
    flex: 0 0 30%
  }
  .svg2 {
    grid-template-columns: repeat(2, 1fr)
  }
  .ax-fsteps {
    grid-template-columns: 1fr 1fr
  }
  .cs-sched-grid {
    grid-template-columns: 1fr
  }
  .ctain {
    padding: 36px 24px
  }
  .h-stats {
    gap: 16px
  }
}
@media(max-width:560px) {
  /* カルーセル：モバイル=2枚＋ピーク */
  .ax-slide {
    flex: 0 0 45%
  }
  .ax-carousel {
    padding: 0 20px
  }
}