/* =========================================================
   TokaPro AI  ―  Design System
   Concept: 十勝の経営に、AIという参謀を。
   配色: 深い藍 × ティール（知性・信頼）＋ 琥珀の差し色（実り）
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  letter-spacing: .02em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Tokens ---------- */
:root {
  --ink:       #0c2233;   /* deep navy ― 知性・信頼 */
  --ink-2:     #123247;
  --ink-3:     #1a4258;
  --ink-soft:  #4a5d6c;
  --teal:      #0e7c86;   /* teal ― 思考・流れ */
  --teal-2:    #169aa3;
  --teal-deep: #0a5b63;
  --teal-tint: #e4f1f1;
  --amber:     #004868;   /* TokaPro signature amber ― 実り */
  --amber-2:   #2f7ea0;
  --amber-deep:#06384f;
  --paper:     #f7f9fa;   /* bright off-white */
  --paper-2:   #eef3f4;
  --white:     #ffffff;
  --line:      rgba(12,34,51,.10);
  --line-2:    rgba(12,34,51,.16);
  --line-on:   rgba(255,255,255,.16);

  --shadow-s: 0 2px 10px rgba(12,34,51,.06);
  --shadow-m: 0 14px 40px rgba(12,34,51,.10);
  --shadow-l: 0 34px 80px rgba(12,34,51,.20);

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 60px);
  --radius: 16px;
  --radius-s: 10px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Typography helpers ---------- */
.en { font-family: "Outfit", "Noto Sans JP", sans-serif; letter-spacing: .04em; }
.display { font-family: "Outfit", "Noto Sans JP", sans-serif; font-weight: 800; line-height: 1.06; }
.jp-serif { font-family: "Shippori Mincho", "Yu Mincho", serif; font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65em;
  font-family: "Outfit", sans-serif;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--amber); border-radius: 2px; }
.eyebrow.on-dark { color: var(--teal-2); }
.eyebrow.on-dark::before { background: var(--amber-2); }

.section-title {
  font-size: clamp(1.65rem, 4.2vw, 2.7rem);
  font-weight: 800; line-height: 1.32; letter-spacing: .01em;
  margin: .45em 0 .35em;
}
.section-lead { color: var(--ink-soft); max-width: 42em; font-size: 1.02rem; }
.dark .section-title { color: #fff; }
.dark .section-lead { color: #a7bccb; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(46px, 6vw, 80px); }
.section.dark { background: var(--ink); color: #e9eef4; }
.section.alt { background: var(--paper-2); }
.section-head { max-width: 700px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- Contour background motif ---------- */
.contour { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.contour svg { position: absolute; width: 140%; height: 140%; top: -20%; left: -20%; }
.section > .wrap { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65em;
  padding: 1em 1.9em; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .02em;
  border: 1.5px solid transparent; transition: all .32s var(--ease);
  position: relative; white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform .32s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--amber); color: #2a1c06; box-shadow: 0 10px 26px rgba(0,72,104,.34); }
.btn--primary:hover { background: var(--amber-2); transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0,72,104,.42); }
.btn--teal { background: var(--teal); color: #fff; box-shadow: 0 10px 26px rgba(14,124,134,.30); }
.btn--teal:hover { background: var(--teal-2); transform: translateY(-3px); }
.btn--ghost { border-color: var(--line-2); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--teal); color: var(--teal-deep); transform: translateY(-3px); }
.btn--ghost.on-dark { color: #fff; border-color: var(--line-on); background: rgba(255,255,255,.06); }
.btn--ghost.on-dark:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn--lg { padding: 1.2em 2.4em; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(14px,2vw,20px) var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(247,249,250,.92);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: var(--shadow-s); padding-block: 11px;
}
.brand { display: flex; align-items: center; gap: .65em; z-index: 2; }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__name { line-height: 1.16; color: #fff; transition: color .4s; }
.scrolled .brand__name { color: var(--ink); }
.brand__name b { display: block; font-weight: 800; font-size: 1.04rem; letter-spacing: .03em; font-family: "Outfit", "Noto Sans JP", sans-serif; }
.brand__name span { display: block; font-size: .72rem; letter-spacing: .1em; opacity: .72; }
.brand__logo { height: 50px; width: auto; flex: none; display: block; }
.brand__logo--dark { display: none; }
.scrolled .brand__logo--light { display: none; }
.scrolled .brand__logo--dark { display: block; }
.brand__svc { align-self: center; padding-left: .72em; font-size: .8rem; letter-spacing: .05em; color: #fff; border-left: 1px solid rgba(255,255,255,.3); transition: color .4s, border-color .4s; font-family: "Noto Sans JP", sans-serif; }
.scrolled .brand__svc { color: var(--ink); border-color: rgba(0,0,0,.16); }
.footer-brand .brand__logo { height: 46px; }
.footer-brand .brand__svc { color: #fff; border-color: rgba(255,255,255,.24); }

.nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); }
.nav__links { display: flex; gap: clamp(14px, 1.9vw, 28px); }
.nav__links a { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.9); position: relative; padding: .3em 0; transition: color .3s; }
.scrolled .nav__links a { color: var(--ink); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--amber); transition: width .35s var(--ease); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__cta { display: inline-flex; align-items: center; gap: .5em; background: var(--amber); color: #2a1c06; padding: .68em 1.35em; border-radius: 999px; font-weight: 700; font-size: .86rem; transition: all .3s var(--ease); }
.nav__cta svg { width: 15px; height: 15px; }
.nav__cta:hover { background: var(--amber-2); transform: translateY(-2px); }

.nav-toggle { display: none; width: 44px; height: 44px; border: none; background: none; z-index: 110; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 6px auto; border-radius: 2px; transition: all .35s var(--ease); }
.scrolled .nav-toggle span, .nav-open .nav-toggle span { background: var(--ink); }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  background: var(--ink); color: #fff; overflow: hidden;
  padding-top: clamp(120px,16vw,160px); padding-bottom: clamp(70px,9vw,110px);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg::after {
  content:""; position:absolute; inset:0;
  background:
    radial-gradient(110% 80% at 82% 12%, rgba(14,124,134,.34), transparent 56%),
    radial-gradient(80% 60% at 12% 92%, rgba(0,72,104,.10), transparent 60%),
    linear-gradient(180deg, rgba(12,34,51,.45) 0%, rgba(12,34,51,.82) 72%, var(--ink) 100%);
}
.hero__bg svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__kicker {
  display: inline-flex; align-items: center; gap: .7em; margin-bottom: 1.5em;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  padding: .55em 1.1em; border-radius: 999px;
  font-size: .8rem; letter-spacing: .04em; color: #d3e6e8;
}
.hero__kicker svg { width: 15px; height: 15px; color: var(--amber-2); }
.hero h1 {
  font-size: clamp(2.3rem, 6.2vw, 4.2rem);
  font-weight: 800; line-height: 1.24; letter-spacing: .01em;
  font-family: "Noto Sans JP", sans-serif;
  text-shadow: 0 6px 40px rgba(0,0,0,.28);
}
.hero h1 .accent { color: var(--amber-2); position: relative; display: inline-block; }
.hero h1 .accent::after { content:""; position:absolute; left:0; right:0; bottom:.12em; height:.32em; background: rgba(0,72,104,.22); border-radius:3px; z-index:-1; }
.hero__sub { margin-top: 1.4em; font-size: clamp(1rem,1.6vw,1.18rem); color: #c8d6e2; max-width: 33em; line-height: 2; }
.hero__actions { margin-top: 2.4em; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 2.6em; display: flex; flex-wrap: wrap; gap: 28px; }
.hero__trust .t { }
.hero__trust .t b { display: block; font-family: "Outfit", sans-serif; font-weight: 800; font-size: 1.3rem; color: #fff; line-height: 1.2; }
.hero__trust .t span { font-size: .8rem; color: rgba(255,255,255,.66); }
.hero__trust .div { width: 1px; align-self: stretch; background: rgba(255,255,255,.16); }

/* ---------- Problem cards ---------- */
.grid { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--white); border-radius: var(--radius); padding: clamp(24px,2.8vw,34px);
  box-shadow: var(--shadow-s); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); border-color: transparent; }
.card__icon { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1em; background: var(--teal-tint); color: var(--teal-deep); }
.card__icon svg { width: 25px; height: 25px; stroke-width: 1.7; }
.card__icon.amber { background: #fbeed6; color: var(--amber-deep); }
.card h3 { font-size: 1.14rem; font-weight: 800; margin-bottom: .5em; }
.card p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Service split blocks ---------- */
.svc { display: grid; gap: clamp(28px, 4vw, 64px); }
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.svc-row.rev .svc-visual { order: 2; }
.svc-body .svc-no { font-family: "Outfit", sans-serif; font-weight: 700; font-size: .8rem; letter-spacing: .14em; color: var(--teal); }
.svc-body h3 { font-size: clamp(1.35rem, 2.6vw, 1.85rem); font-weight: 800; line-height: 1.4; margin: .35em 0 .5em; }
.svc-body p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 1.2em; }
.svc-list { display: flex; flex-direction: column; gap: .65em; }
.svc-list li { display: flex; gap: .7em; align-items: flex-start; font-size: .94rem; color: var(--ink-2); }
.svc-list li svg { width: 19px; height: 19px; flex: none; margin-top: .28em; color: var(--teal); }
.svc-tag { display: inline-block; margin-top: 1.3em; font-size: .82rem; color: var(--amber-deep); background: #fbeed6; padding: .45em 1em; border-radius: 999px; font-weight: 600; }

.svc-visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 5/4; background: linear-gradient(150deg, var(--ink-3), var(--ink));
  box-shadow: var(--shadow-l); display: grid; place-items: center; padding: 30px;
}
.svc-visual svg { width: 100%; height: 100%; }
.svc-visual .v-label { position: absolute; left: 0; bottom: 0; padding: 1em 1.3em; font-size: .76rem; letter-spacing: .08em; color: rgba(255,255,255,.85); background: linear-gradient(transparent, rgba(0,0,0,.45)); width: 100%; }

/* ---------- Statement / pull band ---------- */
.statement { background: linear-gradient(150deg, var(--ink-2), var(--ink)); color: #fff; }
.statement .pull-quote { font-size: clamp(1.5rem,3.4vw,2.4rem); font-weight: 800; line-height: 1.7; letter-spacing: .01em; max-width: 22em; }
.statement .pull-quote .mk { color: var(--amber-2); }
.statement .pull-quote small { display: block; margin-top: 1em; font-size: .9rem; font-weight: 500; color: #a7bccb; letter-spacing: .02em; }

/* ---------- Timeline (flow) ---------- */
.flow { position: relative; max-width: 780px; margin: 0 auto; }
.flow::before { content:""; position:absolute; left: 27px; top: 18px; bottom: 18px; width: 2px; background: linear-gradient(var(--teal), var(--amber)); }
.flow-step { display: flex; gap: 26px; padding-bottom: 36px; position: relative; }
.flow-step:last-child { padding-bottom: 0; }
.flow-num { width: 56px; height: 56px; flex: none; border-radius: 50%; background: #fff; border: 2px solid var(--teal); color: var(--teal-deep); display: grid; place-items: center; font-family: "Outfit", sans-serif; font-weight: 800; font-size: 1.15rem; z-index: 2; box-shadow: var(--shadow-s); }
.flow-step:last-child .flow-num, .flow-step:nth-last-child(2) .flow-num { border-color: var(--amber); color: var(--amber-deep); }
.flow-body { padding-top: 7px; }
.flow-body .step-en { font-family: "Outfit", sans-serif; font-size: .72rem; letter-spacing: .16em; color: var(--teal); font-weight: 700; text-transform: uppercase; }
.flow-body h3 { font-size: 1.16rem; font-weight: 800; margin: .15em 0 .35em; }
.flow-body p { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Reasons ---------- */
.reason-card { display: flex; gap: 20px; padding: clamp(24px,3vw,32px); border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); transition: all .35s var(--ease); }
.dark .reason-card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.reason-card:hover { background: #fff; box-shadow: var(--shadow-m); border-color: transparent; transform: translateY(-4px); }
.dark .reason-card:hover { background: rgba(255,255,255,.08); box-shadow: none; }
.reason-ico { width: 54px; height: 54px; flex: none; border-radius: 14px; display: grid; place-items: center; background: var(--ink); color: var(--amber); }
.reason-ico svg { width: 26px; height: 26px; }
.reason-card h3 { font-size: 1.14rem; font-weight: 800; margin-bottom: .4em; }
.dark .reason-card h3 { color: #fff; }
.reason-card p { font-size: .93rem; color: var(--ink-soft); }
.dark .reason-card p { color: #a7bccb; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 38px 30px; display: flex; flex-direction: column; transition: all .35s var(--ease); position: relative; }
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.price-card.feat { background: var(--ink); color: #fff; border-color: var(--ink); transform: scale(1.035); }
.price-card.feat:hover { transform: scale(1.035) translateY(-5px); }
.price-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--amber); color: #2a1c06; font-size: .74rem; font-weight: 700; padding: 6px 16px; border-radius: 999px; white-space: nowrap; }
.price-name { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.08rem; letter-spacing: .04em; color: var(--teal-deep); }
.price-card.feat .price-name { color: var(--amber-2); }
.price-desc { font-size: .86rem; color: var(--ink-soft); margin: 8px 0 20px; min-height: 44px; }
.price-card.feat .price-desc { color: rgba(255,255,255,.78); }
.price-amt { font-family: "Outfit", sans-serif; font-weight: 800; font-size: 2rem; line-height: 1.1; color: var(--ink); }
.price-card.feat .price-amt { color: #fff; }
.price-amt small { font-size: .82rem; font-weight: 500; color: var(--ink-soft); font-family: "Noto Sans JP", sans-serif; }
.price-card.feat .price-amt small { color: rgba(255,255,255,.7); }
.price-from { font-size: .78rem; color: var(--ink-soft); margin: 4px 0 24px; }
.price-card.feat .price-from { color: rgba(255,255,255,.6); }
.price-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.price-feats li { display: flex; gap: 10px; font-size: .9rem; align-items: flex-start; color: var(--ink-2); }
.price-card.feat .price-feats li { color: rgba(255,255,255,.88); }
.price-feats li svg { width: 18px; height: 18px; color: var(--teal); flex: none; margin-top: 3px; }
.price-card.feat .price-feats li svg { color: var(--amber-2); }
.price-note { text-align: center; font-size: .84rem; color: var(--ink-soft); margin-top: 28px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: all .3s var(--ease); }
.faq-item.open { box-shadow: var(--shadow-s); border-color: var(--teal); }
.faq-q { width: 100%; text-align: left; background: none; border: none; display: flex; align-items: center; gap: 16px; padding: 22px 26px; font-weight: 700; font-size: 1rem; color: var(--ink); }
.faq-q .qm { font-family: "Outfit", sans-serif; font-weight: 800; color: var(--teal); flex: none; }
.faq-q .ic { margin-left: auto; width: 22px; height: 22px; flex: none; color: var(--ink-soft); transition: transform .3s var(--ease); }
.faq-item.open .faq-q .ic { transform: rotate(45deg); color: var(--teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s var(--ease); }
.faq-a p { padding: 0 26px 24px 62px; color: var(--ink-soft); font-size: .94rem; }

/* ---------- CTA + Form ---------- */
.cta { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.cta__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,64px); align-items: center; }
.cta__grid h2 { font-size: clamp(1.8rem,4vw,2.7rem); font-weight: 800; line-height: 1.35; margin-bottom: .5em; }
.cta__grid h2 .accent { color: var(--amber-2); }
.cta__grid p { color: rgba(255,255,255,.84); font-size: 1.02rem; margin-bottom: 1.6em; }
.cta-points { display: flex; flex-direction: column; gap: 12px; }
.cta-points li { display: flex; gap: 12px; align-items: center; font-size: .96rem; color: rgba(255,255,255,.9); }
.cta-points li svg { width: 20px; height: 20px; color: var(--amber-2); flex: none; }
.cta-alt { margin-top: 1.8em; font-size: .9rem; color: rgba(255,255,255,.7); }
.cta-alt a { color: var(--amber-2); font-weight: 600; border-bottom: 1px solid rgba(242,184,80,.4); }

.form-card { background: #fff; border-radius: 20px; padding: clamp(28px,3vw,38px); box-shadow: var(--shadow-l); }
.form-card h3 { color: var(--ink); font-size: 1.2rem; font-weight: 800; margin-bottom: .3em; }
.form-card .fnote { color: var(--ink-soft); font-size: .84rem; margin-bottom: 22px; }
.fld { margin-bottom: 15px; }
.fld label { display: block; font-size: .84rem; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; }
.fld label .req { color: var(--amber-deep); font-size: .76rem; margin-left: .4em; }
.fld input, .fld textarea { width: 100%; border: 1.5px solid var(--line-2); border-radius: 10px; padding: 13px 15px; font-family: inherit; font-size: .95rem; color: var(--ink); transition: .2s; background: var(--paper); }
.fld input:focus, .fld textarea:focus { outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 3px rgba(14,124,134,.12); }
.fld textarea { resize: vertical; min-height: 100px; }
.form-card .btn { margin-top: 6px; }
.form-priv { font-size: .76rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ---------- Company spec table ---------- */
.company-table { max-width: 760px; }
.spec { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: var(--shadow-s); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.spec th, .spec td { text-align: left; padding: 1.05em 1.4em; border-bottom: 1px solid var(--line); font-size: .94rem; vertical-align: top; }
.spec th { width: 30%; background: var(--paper-2); font-weight: 700; color: var(--ink); white-space: nowrap; }
.spec td { color: var(--ink-soft); }
.spec tr:last-child th, .spec tr:last-child td { border-bottom: none; }
@media (max-width: 600px) { .spec th { width: 38%; white-space: normal; } }

/* ---------- Stat band ---------- */
.statband { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line-on); border-block: 1px solid var(--line-on); }
.stat { background: var(--ink); padding: clamp(28px,4vw,44px) clamp(14px,2vw,26px); text-align: center; }
.stat__num { font-family: "Outfit", sans-serif; font-weight: 800; line-height: 1; color: #fff; font-size: clamp(2.1rem,4.6vw,3.2rem); display: flex; align-items: baseline; justify-content: center; gap: .08em; }
.stat__num small { font-size: .42em; font-weight: 700; color: var(--amber-2); }
.stat__label { margin-top: .8em; font-size: .8rem; color: #9fb0c2; letter-spacing: .04em; }

/* ---------- Footer ---------- */
.site-footer { background: #081826; color: #8ba3b6; padding-block: clamp(54px,7vw,80px) 28px; font-size: .88rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .brand__name { color: #fff; }
.footer-brand p { max-width: 28em; line-height: 1.9; }
.footer-col h5 { color: #fff; font-size: .78rem; letter-spacing: .12em; margin-bottom: 1.1em; font-family: "Outfit", sans-serif; text-transform: uppercase; }
.footer-col a, .footer-col span { display: block; padding: .4em 0; transition: color .3s; }
.footer-col a:hover { color: var(--amber-2); }
.footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; align-items: center; font-size: .78rem; color: #5e768a; }
.footer-bottom .note { color: #54677a; max-width: 56em; line-height: 1.7; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.feat { transform: none; }
  .price-card.feat:hover { transform: translateY(-5px); }
  .svc-row, .cta__grid { grid-template-columns: 1fr; }
  .svc-row.rev .svc-visual { order: 0; }
  .reason-card { gap: 16px; }
  .statband { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav .nav__cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav__links {
    display: flex; flex-direction: column; gap: 2px;
    position: fixed; inset: 0; background: var(--paper);
    padding: 96px var(--gutter) 40px; z-index: 105;
  }
  .nav.open .nav__links a { color: var(--ink); font-size: 1.25rem; padding: .7em 0; border-bottom: 1px solid var(--line); }
  .nav.open .nav__cta { display: inline-flex; margin-top: 1.2em; align-self: flex-start; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .statband { grid-template-columns: 1fr; }
  .hero__trust { gap: 18px; }
  .hero__trust .div { display: none; }
  .hero__actions .btn { width: 100%; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== TokaPro group add-on: 事業メガメニュー ===== */
.nav__item.has-mega { position: relative; display: flex; align-items: center; }
.nav__megabtn { display: inline-flex; align-items: center; gap: .3em; font-size: .9rem; font-weight: 500; font-family: inherit; color: rgba(255,255,255,.9); background: none; border: 0; cursor: pointer; padding: .3em 0; position: relative; transition: color .3s; }
.scrolled .nav__megabtn { color: var(--ink); }
.nav__megabtn .caret { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.nav__megabtn::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--amber); transition: width .35s var(--ease); }
.has-mega:hover .nav__megabtn::after, .has-mega.open .nav__megabtn::after { width: 100%; }
.has-mega:hover .caret, .has-mega.open .caret { transform: rotate(180deg); }
.mega {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  width: min(680px, 90vw); padding: 14px; margin-top: 14px;
  background: rgba(13,30,49,.98); backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.1); border-radius: 20px;
  box-shadow: 0 30px 70px -22px rgba(0,0,0,.6);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease); z-index: 120;
}
.mega::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.has-mega:hover .mega, .has-mega:focus-within .mega, .has-mega.open .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.mega__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.mega .mega__card { display: flex; align-items: flex-start; gap: 12px; padding: 12px 13px; border-radius: 13px; transition: background .25s; }
.mega .mega__card:hover { background: rgba(255,255,255,.07); }
.mega .mega__card::after, .mega .mega__all::after { content: none; }
.mega__ic { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--a), var(--b)); }
.mega__ic svg { width: 20px; height: 20px; }
.mega__t { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega__t b { font-family: "Outfit","Noto Sans JP",sans-serif; font-weight: 700; font-size: .92rem; color: #fff; letter-spacing: .01em; }
.mega__t small { font-size: .72rem; line-height: 1.5; color: rgba(255,255,255,.62); }
.mega .mega__all { display: flex; align-items: center; justify-content: center; gap: .5em; margin-top: 6px; padding: 11px; border-radius: 12px; font-size: .82rem; font-weight: 600; color: var(--amber); border: 1px solid rgba(255,255,255,.1); transition: background .25s; }
.mega .mega__all:hover { background: rgba(0,72,104,.12); }
.mega__all svg { width: 15px; height: 15px; }
@media (max-width: 760px) {
  .nav.open .has-mega { width: 100%; flex-direction: column; align-items: stretch; }
  .nav.open .nav__megabtn { width: 100%; color: var(--ink); font-size: 1.25rem; padding: .7em 0; border-bottom: 1px solid var(--line); justify-content: space-between; }
  .nav.open .mega { position: static; transform: none; width: 100%; margin: 0; padding: 0; background: none; border: 0; box-shadow: none; opacity: 1; visibility: visible; pointer-events: auto; display: none; }
  .nav.open .mega::before { display: none; }
  .nav.open .has-mega.open .mega { display: block; padding: 4px 0 10px; }
  .nav.open .mega__grid { grid-template-columns: 1fr; gap: 0; }
  .nav.open .nav__links a.mega__card { border-bottom: 0; padding: 11px 4px; font-size: 1rem; }
  .nav.open .mega__t b { color: var(--ink); }
  .nav.open .mega__t small { color: var(--muted, #5b6b7a); font-size: .8rem; }
  .nav.open .nav__links a.mega__all { color: var(--ink); border: 1px solid var(--line); font-size: .95rem; margin-top: 8px; }
}

/* ===== TokaPro group add-on: フッター6事業バンド ===== */
.footer-biz { padding-bottom: 34px; margin-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-biz__lead { margin-bottom: 16px; }
.footer-biz__lead b { color: #fff; font-size: 1.02rem; font-weight: 700; margin-right: .8em; font-family: "Outfit","Noto Sans JP",sans-serif; }
.footer-biz__lead span { color: #8ba3b6; font-size: .86rem; }
.footer-biz__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fbz { display: flex; flex-direction: column; gap: 2px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); position: relative; transition: transform .25s var(--ease), background .25s; }
.fbz:hover { background: rgba(255,255,255,.08); transform: translateY(-2px); }
.fbz__d { position: absolute; top: 16px; right: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--a, var(--amber)); }
.fbz b { color: #fff; font-weight: 700; font-size: .9rem; font-family: "Outfit","Noto Sans JP",sans-serif; }
.fbz small { color: #8ba3b6; font-size: .77rem; }
@media (max-width: 880px) { .footer-biz__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .footer-biz__grid { grid-template-columns: 1fr; } }

/* ===== group light/blue rebrand add-on ===== */
.brand__mark{width:auto!important;height:30px!important}
.hero{position:relative;overflow:hidden}
.hero .wrap{position:relative;z-index:1}
.hero__mark{position:absolute;top:50%;right:max(-30px,-2vw);transform:translateY(-50%);width:min(380px,40vw);opacity:.7;pointer-events:none;z-index:0}
@media(max-width:900px){.hero__mark{opacity:.1;right:-12%;width:80vw}}
