/* ============================================================
   AIsol Edu — サイト共通スタイル
   カラーパレット: 要件定義書 v2 第8章準拠(黄緑=主 / 水色=サブ)
   ============================================================ */
:root {
  /* 主色｜黄緑 (YG) */
  --yg-50:  #F5FAEC;
  --yg-100: #E4F1CA;
  --yg-200: #DCEDBF;
  --yg-300: #A9D45F;
  --yg-500: #7CB342;
  --yg-700: #47801C;
  --yg-800: #3B6B16;
  --yg-900: #2C520F;
  /* サブ色｜水色 (SB) */
  --sb-50:  #EFF7FB;
  --sb-100: #D5ECF7;
  --sb-300: #7CC7E8;
  --sb-500: #29A3D9;
  --sb-700: #10709E;
  --sb-900: #0A4F72;
  /* テキスト */
  --text-strong: #1A1F16;
  --text-mid:    #4A5348;
  --text-weak:   #6B7468;
  --text-onDark: #FFFFFF;
  /* 背景 */
  --bg-base: #FFFFFF;
  --bg-tint-green: #F5FAEC;
  --bg-tint-blue:  #EFF7FB;
  /* 罫線 */
  --line-soft: #D9E2D2;
  --line-mid:  #B9C7B0;
  --line-ui:   #8A9486;
  /* 状態色 */
  --warn-fg: #A85B00; --warn-bg: #FDF6E6;
  --err-fg:  #B3261E; --err-bg:  #FCEEEC;
  --ok-fg:   #3B7A1F; --ok-bg:   #F0F7E8;
  --info-fg: #10709E; --info-bg: #EFF7FB;

  --font-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic Medium", "YuGothic", Meiryo, sans-serif;
  --shadow-card: 0 2px 8px rgba(26, 31, 22, .05), 0 8px 24px rgba(26, 31, 22, .06);
  --shadow-lift: 0 4px 14px rgba(26, 31, 22, .08), 0 14px 36px rgba(26, 31, 22, .10);
  --radius: 12px;
  --header-h: 80px;
  --header-h-s: 64px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h-s) + 16px); }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-strong);
  background: var(--bg-base);
  line-height: 1.85;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--sb-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sb-900); }
h1, h2, h3, h4, p, ul, ol, dl, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1120px; margin-inline: auto; padding-inline: 24px; }
.section { padding-block: 96px; position: relative; }
@media (max-width: 760px) { .section { padding-block: 64px; } }

/* ---------- 見出し系 ---------- */
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; letter-spacing: .14em;
  color: var(--yg-700); margin-bottom: 14px;
}
.sec-label::before {
  content: ""; width: 28px; height: 3px; border-radius: 2px;
  background: var(--yg-500);
}
.sec-label--blue { color: var(--sb-700); }
.sec-label--blue::before { background: var(--sb-500); }

.sec-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700; line-height: 1.45; letter-spacing: .01em;
}
.sec-lead { margin-top: 20px; color: var(--text-mid); max-width: 46em; }

/* マーカー帯強調(黄緑淡 #DCEDBF) — スクロールで走るアニメーション */
.marker {
  background: linear-gradient(transparent 62%, var(--yg-200) 62%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size .9s cubic-bezier(.22,.61,.36,1) .35s;
}
.in .marker, .marker.in { background-size: 100% 100%; }

.em-green { color: var(--yg-700); font-weight: 700; }
.u-bold-line { font-weight: 700; text-decoration: underline; text-decoration-color: var(--yg-500); text-decoration-thickness: 2px; text-underline-offset: 4px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px;
  font-size: 16px; font-weight: 700; line-height: 1.4;
  text-decoration: none; border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background-color .2s ease, color .2s ease;
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--fill { background: var(--yg-700); color: #fff !important; box-shadow: 0 4px 14px rgba(71,128,28,.28); }
.btn--fill:hover { background: var(--yg-800); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(71,128,28,.32); }
.btn--fill:active { background: var(--yg-900); }
.btn--ghost { background: #fff; color: var(--yg-700) !important; border-color: var(--yg-700); }
.btn--ghost:hover { background: var(--yg-50); transform: translateY(-2px); }
.btn--onblue { background: #fff; color: var(--sb-900) !important; }
.btn--onblue:hover { background: var(--sb-50); transform: translateY(-2px); }
.btn--sm { padding: 12px 20px; font-size: 14px; }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: #FFFFFF; border-bottom: 1px solid var(--line-soft);
  height: var(--header-h);
  transition: height .3s ease, box-shadow .3s ease;
}
.header.scrolled { height: var(--header-h-s); box-shadow: 0 2px 12px rgba(26,31,22,.06); }
.header__inner {
  max-width: 1460px; margin-inline: auto; padding-inline: 24px;
  height: 100%; display: flex; align-items: center; gap: 22px;
}
.logo { display: flex; flex-direction: column; text-decoration: none; line-height: 1.2; white-space: nowrap; }
.logo__name { font-size: 24px; font-weight: 800; color: var(--yg-700); letter-spacing: .02em; }
.logo__name .dot { color: var(--sb-700); }
.logo__tag { font-size: 11px; color: var(--text-weak); letter-spacing: .04em; }
.gnav { display: flex; gap: 0; margin-left: auto; }
.gnav a {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 11px; font-size: 13.5px; font-weight: 600; white-space: nowrap;
  color: var(--text-strong); text-decoration: none; border-radius: 8px;
}
.gnav a::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--yg-500); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.gnav a:hover::after { transform: scaleX(1); }
.badge {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 999px;
  background: var(--sb-100); color: var(--sb-900); white-space: nowrap;
}
.header__tel { text-align: right; line-height: 1.35; margin-left: 8px; white-space: nowrap; }
.header__tel-cap { font-size: 11px; color: var(--text-mid); }
.header__tel-num {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 20px; font-weight: 800; color: var(--text-strong); text-decoration: none;
  font-variant-numeric: tabular-nums;
}
.header__tel-num svg { color: var(--sb-700); }
.header__tel-hours { font-size: 11px; color: var(--text-mid); }
.header__cta { display: flex; gap: 10px; }
.header__cta .btn { white-space: nowrap; }
.menu-btn { display: none; }

@media (max-width: 1500px) { .gnav a { padding-inline: 8px; } }
@media (max-width: 1430px) { .gnav .badge { display: none; } }
@media (max-width: 1360px) { .header__tel { display: none; } }
@media (max-width: 1100px) {
  .gnav, .header__tel { display: none; }
}
@media (max-width: 640px) {
  .header__cta .btn--ghost { display: none; }
  .header__cta .btn { padding: 10px 16px; font-size: 13px; }
  .header__tel--sp {
    display: flex; margin-left: auto;
  }
}
.tel-icon-sp {
  display: none;
}
@media (max-width: 1100px) {
  .tel-icon-sp {
    display: inline-flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; margin-left: auto; border-radius: 50%;
    background: var(--sb-50); color: var(--sb-700);
  }
  .header__cta { margin-left: 0; }
}

/* ---------- サブページ用シンプルヒーロー ---------- */
.hero-simple {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 56px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--yg-50) 100%);
}
.hero-simple__crumb { font-size: 13px; color: var(--text-mid); margin-bottom: 14px; }
.hero-simple__crumb a { color: var(--text-mid); }
.hero-simple__crumb a:hover { color: var(--yg-700); }
.hero-simple h1 {
  font-size: clamp(26px, 3.6vw, 40px); font-weight: 800; line-height: 1.5;
}
.hero-simple__lead { margin-top: 16px; color: var(--text-mid); max-width: 46em; font-size: 16px; }
.hero-simple--blue { background: linear-gradient(180deg, #FFFFFF 0%, var(--sb-50) 100%); }

/* ---------- ビフォー/アフター図版(第9章 追加2) ---------- */
.before-after { display: flex; align-items: center; justify-content: center; gap: 18px; max-width: 720px; }
.before-after figure { flex: none; width: clamp(200px, 30vw, 300px); }
.before-after figure figcaption { text-align: center; font-size: 12.5px; color: var(--text-mid); margin-top: 6px; }
.before-after__arrow { flex: none; font-size: 28px; font-weight: 800; color: var(--yg-700); }
@media (max-width: 640px) {
  .before-after { flex-direction: column; }
  .before-after__arrow { transform: rotate(90deg); }
}

/* ---------- 簡易フォーム(contact/download/recruit/seminar共通で使ってよい) ---------- */
.simple-form { display: grid; gap: 18px; max-width: 640px; }
.simple-form .field { display: grid; gap: 6px; }
.simple-form label { font-size: 14px; font-weight: 700; }
.simple-form label .req { color: var(--err-fg); font-weight: 700; margin-left: 4px; font-size: 12px; }
.simple-form input[type="text"], .simple-form input[type="email"], .simple-form input[type="tel"],
.simple-form input[type="date"], .simple-form select, .simple-form textarea {
  border: 1px solid var(--line-ui); border-radius: 8px; padding: 12px 14px;
  font-size: 15px; font-family: inherit; color: var(--text-strong); background: #fff;
  width: 100%;
}
.simple-form textarea { min-height: 120px; resize: vertical; }
.simple-form input:focus, .simple-form select:focus, .simple-form textarea:focus {
  outline: none; border-color: var(--sb-700); box-shadow: 0 0 0 3px var(--sb-100);
}
.simple-form .checks { display: flex; flex-wrap: wrap; gap: 10px; }
.simple-form .checks label {
  display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px;
  border: 1px solid var(--line-soft); border-radius: 999px; padding: 8px 16px; cursor: pointer;
}
.simple-form .note { font-size: 12.5px; color: var(--text-weak); }
.simple-form__done {
  display: none; background: var(--ok-bg); color: var(--ok-fg); border-radius: var(--radius);
  padding: 18px 22px; font-weight: 700; align-items: center; gap: 10px;
}
.simple-form__done.show { display: flex; }
.simple-form.hide-on-done { display: none; }

/* ---------- ヒーロー ---------- */
.hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 40px;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--yg-50) 100%);
  position: relative; overflow: hidden;
}
.hero__deco {
  position: absolute; pointer-events: none; color: var(--sb-100); z-index: 0;
}
.hero__deco--1 { top: -60px; right: -80px; width: 460px; opacity: .8; }
.hero__deco--2 { bottom: -90px; left: -110px; width: 420px; opacity: .55; }
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 46%);
  gap: 48px; align-items: center;
}
.hero__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800; line-height: 1.4; letter-spacing: .01em;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: rise .9s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__title .line:nth-child(2) > span { animation-delay: .18s; }
@keyframes rise { to { transform: translateY(0); } }
.hero__sub { margin-top: 24px; color: var(--text-mid); font-size: 17px; }
.hero__sub strong { color: var(--text-strong); }
.hero__facts {
  margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px;
}
.hero__facts li {
  font-size: 13px; font-weight: 700; color: var(--yg-800);
  background: #fff; border: 1px solid var(--yg-200);
  padding: 6px 14px; border-radius: 999px;
}
.hero__cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero__fig { position: relative; }
.hero__fig img {
  width: min(100%, 720px);
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUp .9s cubic-bezier(.22,.61,.36,1) forwards; }
.fade-up.d1 { animation-delay: .25s; } .fade-up.d2 { animation-delay: .4s; }
.fade-up.d3 { animation-delay: .55s; } .fade-up.d4 { animation-delay: .7s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__fig { order: 1; }
  .hero__fig img { margin-inline: auto; width: min(100%, 560px); }
  .hero__cta { order: 2; flex-direction: column; }
  .hero__content { display: contents; }
  .hero__title { order: 0; }
  .hero__sub, .hero__facts { order: 0; }
}

/* ---------- スクロール・リビール ---------- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal--left { transform: translateX(-32px); }
.reveal--right { transform: translateX(32px); }
.reveal--left.in, .reveal--right.in { transform: none; }
.reveal--zoom { transform: scale(.94); }
.reveal--zoom.in { transform: scale(1); }

/* ---------- 事実バー ---------- */
.facts { background: var(--bg-tint-green); }
.facts__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px;
}
.fact-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 22px; text-decoration: none; color: inherit; display: block;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
a.fact-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--yg-200); }
.fact-card__icon { color: var(--sb-700); margin-bottom: 12px; }
.fact-card__label { font-size: 13px; font-weight: 700; color: var(--yg-700); letter-spacing: .1em; margin-bottom: 8px; }
.fact-card__title { font-size: 16px; font-weight: 700; line-height: 1.6; }
.fact-card__body { font-size: 13.5px; color: var(--text-mid); margin-top: 8px; }
.fact-card__more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--sb-700); }
@media (max-width: 900px) { .facts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .facts__grid { gap: 12px; } .fact-card { padding: 20px 16px; } }
.facts__grid--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1180px) { .facts__grid--5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .facts__grid--5 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 課題提起 ---------- */
.problem__top { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: center; margin-top: 8px; }
.problem__fig img { width: min(100%, 320px); }
.big-number {
  font-size: clamp(44px, 6vw, 64px); font-weight: 800; color: var(--yg-700);
  line-height: 1.1; font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.big-number .unit { font-size: .5em; }
.source { font-size: 12px; color: var(--text-weak); margin-top: 6px; }
.checklist {
  margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 32px;
}
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.7; padding: 4px 0;
}
.checklist .box {
  flex: none; width: 20px; height: 20px; margin-top: 5px;
  border: 2px solid var(--line-ui); border-radius: 4px; background: #fff;
}
.problem__close { margin-top: 32px; font-weight: 700; font-size: 17px; }
@media (max-width: 860px) {
  .problem__top { grid-template-columns: 1fr; gap: 20px; }
  .problem__fig img { width: 260px; margin-inline: auto; }
  .checklist { grid-template-columns: 1fr; }
}

/* ---------- 前提の共有(データカード) ---------- */
.stats { background: var(--bg-tint-blue); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.stat-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px 26px;
}
.stat-card .big-number { color: var(--sb-700); }
.stat-card__desc { font-weight: 700; margin-top: 10px; line-height: 1.6; }
.stat-card__note { font-size: 14px; color: var(--text-mid); margin-top: 8px; }
.stats__close { margin-top: 32px; color: var(--text-mid); max-width: 46em; }
.stats__close strong { color: var(--text-strong); }
@media (max-width: 860px) { .stats__grid { grid-template-columns: 1fr; } }

/* ---------- 助成金 ---------- */
.subsidy__grid { display: grid; grid-template-columns: 1fr minmax(0, 460px); gap: 48px; margin-top: 40px; align-items: start; }
.calc {
  position: relative;
  background: var(--bg-tint-blue); border: 1px solid var(--sb-100); border-radius: var(--radius);
  padding: 34px 30px;
}
.calc__img {
  position: absolute; top: -34px; right: -18px; width: 150px;
  filter: drop-shadow(0 6px 14px rgba(26,31,22,.10));
  animation: float 8s ease-in-out infinite;
}
.calc__rows { font-variant-numeric: tabular-nums; }
.calc__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 12px 2px; font-size: 16px;
}
.calc__row + .calc__row { border-top: 1px dashed var(--sb-100); }
.calc__row .val { font-weight: 700; font-size: 19px; }
.calc__row--minus .val { color: var(--sb-700); }
.calc__total {
  margin-top: 6px; padding: 18px 2px 2px; border-top: 2px solid var(--sb-700);
  display: flex; justify-content: space-between; align-items: baseline;
}
.calc__total .label { font-weight: 700; }
.calc__total .val {
  font-size: clamp(30px, 3.4vw, 40px); font-weight: 800; color: var(--yg-700);
  font-variant-numeric: tabular-nums;
}
.note-box {
  margin-top: 26px; background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 22px 24px; font-size: 14px; color: var(--text-strong);
}
.note-box__title { font-weight: 700; margin-bottom: 8px; }
.note-box li { padding-left: 1.2em; text-indent: -1.2em; margin-top: 6px; }
.note-box li::before { content: "・"; }
.keypoints { margin-top: 28px; counter-reset: kp; }
.keypoints li {
  counter-increment: kp; display: flex; gap: 14px; margin-top: 14px; line-height: 1.75;
}
.keypoints li::before {
  content: counter(kp);
  flex: none; width: 30px; height: 30px; margin-top: 3px;
  display: grid; place-items: center;
  background: var(--yg-100); color: var(--yg-800);
  font-weight: 800; border-radius: 50%; font-size: 15px;
}
.subsidy__cta { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .subsidy__grid { grid-template-columns: 1fr; }
  .calc__img { display: none; } /* SPは非表示可(要件 9-3) */
}

/* ---------- 中間CTA①(濃色・水色最濃) ---------- */
.cta-blue { background: var(--sb-900); color: var(--text-onDark); }
.cta-blue__inner { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: center; }
.cta-blue h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; line-height: 1.5; }
.cta-blue p { margin-top: 18px; opacity: .92; }
.cta-blue .fine { font-size: 14px; opacity: .85; }
.cta-blue__actions { margin-top: 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-blue__sub { color: #fff; font-size: 14px; }
.doc-cover {
  width: 230px; aspect-ratio: 210 / 297; margin-inline: auto;
  background: #fff; border-radius: 6px; color: var(--text-strong);
  box-shadow: 0 18px 40px rgba(0,0,0,.30);
  padding: 22px 18px; display: flex; flex-direction: column;
  transform: rotate(2.5deg);
  transition: transform .4s ease;
}
.cta-blue__inner:hover .doc-cover { transform: rotate(0deg) translateY(-4px); }
.doc-cover__band { height: 8px; border-radius: 4px; background: var(--yg-500); margin-bottom: 14px; }
.doc-cover__label { font-size: 10px; font-weight: 700; color: var(--sb-700); letter-spacing: .1em; }
.doc-cover__title { font-size: 15px; font-weight: 800; line-height: 1.5; margin-top: 6px; }
.doc-cover__meta { margin-top: auto; font-size: 9.5px; color: var(--text-weak); line-height: 1.6; }
.doc-cover__rows { margin-top: 14px; display: grid; gap: 6px; }
.doc-cover__rows span { display: block; height: 6px; border-radius: 3px; background: var(--sb-50); }
.doc-cover__rows span:nth-child(2n) { width: 82%; }
@media (max-width: 820px) {
  .cta-blue__inner { grid-template-columns: 1fr; }
  .doc-cover { order: -1; width: 190px; }
}

/* ---------- 6段階ロードマップ ---------- */
.roadmap { background: var(--bg-tint-green); overflow: hidden; }
.stairs {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
  align-items: end;
}
.stair {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 18px 16px 20px; position: relative;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.stair:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.stair__no {
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--yg-500); color: #fff; font-weight: 800; border-radius: 50%;
  font-size: 16px;
}
.stair--in-contract .stair__no { background: var(--yg-700); }
.stair__name { font-weight: 800; font-size: 15.5px; line-height: 1.45; }
.stair__what { font-size: 12.5px; color: var(--text-mid); line-height: 1.6; }
.stair__svc { font-size: 11.5px; font-weight: 700; color: var(--sb-900); background: var(--sb-50); border-radius: 6px; padding: 4px 8px; margin-top: auto; }
/* 階段状の高さ */
.stairs .stair:nth-child(1) { margin-top: 150px; }
.stairs .stair:nth-child(2) { margin-top: 120px; }
.stairs .stair:nth-child(3) { margin-top: 90px; }
.stairs .stair:nth-child(4) { margin-top: 60px; }
.stairs .stair:nth-child(5) { margin-top: 30px; }
.stairs .stair:nth-child(6) { margin-top: 0; }
.roadmap__flex { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: end; }
.roadmap__fig img { width: min(100%, 340px); }
.contract-scope {
  margin-top: 28px;
  display: inline-block; background: #fff; border: 2px solid var(--yg-700); border-radius: var(--radius);
  padding: 18px 26px; font-size: 16px; line-height: 1.8;
}
.contract-scope strong { color: var(--yg-700); }
.roadmap__close { margin-top: 18px; color: var(--text-mid); }
@media (max-width: 1000px) {
  .roadmap__flex { grid-template-columns: 1fr; }
  .roadmap__fig { order: -1; }
  .roadmap__fig img { width: 240px; margin-inline: auto; }
  .stairs { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .stairs .stair { margin-top: 0 !important; }
}
@media (max-width: 620px) { .stairs { grid-template-columns: 1fr 1fr; } }

/* ---------- 料金 ---------- */
.plans__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; align-items: stretch; }
.plan {
  position: relative; background: #fff; border: 1px solid var(--line-soft);
  border-radius: 16px; padding: 30px 26px; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.plan--featured { background: var(--yg-50); border-color: var(--yg-200); }
.plan__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--yg-700); color: #fff; font-size: 12.5px; font-weight: 700;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.plan__name { font-size: 18px; font-weight: 800; letter-spacing: .06em; }
.plan__price { margin-top: 10px; font-weight: 800; font-variant-numeric: tabular-nums; }
.plan__price .num { font-size: 40px; line-height: 1; }
.plan__price .unit { font-size: 15px; margin-left: 2px; }
.plan__price .tax { font-size: 12px; color: var(--text-weak); font-weight: 600; margin-left: 6px; }
.plan__rows { margin-top: 20px; font-size: 14.5px; }
.plan__rows > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 2px; border-top: 1px solid var(--line-soft);
}
.plan__rows dt { color: var(--text-mid); }
.plan__rows dd { margin: 0; font-weight: 700; text-align: right; }
.plan__burden { margin-top: 16px; background: var(--sb-50); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; }
.plan__burden strong { font-size: 17px; color: var(--sb-900); }
.plans__notes { margin-top: 26px; font-size: 13.5px; color: var(--text-mid); }
.plans__notes li { padding-left: 1.2em; text-indent: -1.2em; margin-top: 4px; }
.plans__notes li::before { content: "・"; }
.continua { margin-top: 40px; }
.continua__title { font-size: 16px; font-weight: 700; margin-bottom: 14px; }
.continua__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.continua__card {
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 18px 20px;
  font-size: 14px; background: #fff;
}
.continua__card b { display: block; font-size: 15px; }
.continua__card .price { color: var(--yg-700); font-weight: 800; }
.continua__card .cap { font-size: 12.5px; color: var(--text-mid); }
.plans__cta { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 940px) {
  .plans__grid, .continua__grid { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
}

/* ---------- 部署別カスタマイズ ---------- */
.customized { background: var(--bg-tint-green); }
.customized__top { display: grid; grid-template-columns: 1fr minmax(0, 560px); gap: 44px; align-items: center; }
.customized__fig img { width: min(100%, 620px); }
.dept-cols { margin-top: 44px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dept-col { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 22px; }
.dept-col__name {
  font-size: 16px; font-weight: 800; padding-bottom: 12px; margin-bottom: 12px;
  border-bottom: 2px solid var(--yg-500);
}
.dept-col li { font-size: 14px; line-height: 1.7; padding: 6px 0 6px 1.1em; text-indent: -1.1em; color: var(--text-mid); }
.dept-col li::before { content: "◦ "; color: var(--yg-500); font-weight: 700; }
.customized__how { margin-top: 36px; max-width: 50em; color: var(--text-mid); }
.customized__how .standalone { display: block; margin-top: 10px; font-weight: 700; color: var(--text-strong); }
.customized__close { margin-top: 22px; font-weight: 700; }
@media (max-width: 960px) {
  .customized__top { grid-template-columns: 1fr; }
  .customized__fig { order: -1; }
  .dept-cols { grid-template-columns: 1fr; }
}

/* ---------- 納品物 ---------- */
.deliver__grid { display: grid; grid-template-columns: minmax(0, 430px) 1fr; gap: 52px; margin-top: 44px; align-items: start; }
.doc-page {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 6px;
  box-shadow: var(--shadow-card);
  padding: 34px 30px; font-size: 12px; line-height: 1.75;
  transition: transform .35s ease, box-shadow .35s ease;
}
.doc-page:hover { transform: translateY(-4px) rotate(-.4deg); box-shadow: var(--shadow-lift); }
.doc-page__head { border-bottom: 2px solid var(--yg-500); padding-bottom: 10px; margin-bottom: 14px; }
.doc-page__type { font-size: 10px; font-weight: 700; color: var(--sb-700); letter-spacing: .12em; }
.doc-page__title { font-size: 16px; font-weight: 800; }
.doc-page h4 { font-size: 12px; margin: 12px 0 4px; color: var(--yg-800); }
.doc-page table { width: 100%; border-collapse: collapse; font-size: 10.5px; margin-top: 6px; }
.doc-page th, .doc-page td { border: 1px solid var(--line-soft); padding: 4px 6px; text-align: left; }
.doc-page th { background: var(--yg-50); font-weight: 700; }
.doc-page__foot { margin-top: 14px; font-size: 9.5px; color: var(--text-weak); display: flex; justify-content: space-between; }
.deliver__lists h3 { font-size: 16px; font-weight: 800; margin: 26px 0 10px; }
.deliver__lists h3:first-child { margin-top: 0; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-list li {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 700;
}
.chip-list--plus li { border-color: var(--yg-200); background: var(--yg-50); }
.report-items { counter-reset: rp; margin-top: 6px; columns: 2; column-gap: 32px; }
.report-items li {
  counter-increment: rp; font-size: 14px; padding: 7px 0 7px 30px; position: relative;
  break-inside: avoid; border-bottom: 1px dashed var(--line-soft);
}
.report-items li::before {
  content: counter(rp); position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; display: grid; place-items: center;
  background: var(--sb-100); color: var(--sb-900); font-size: 12px; font-weight: 800; border-radius: 50%;
}
.deliver__close { margin-top: 24px; color: var(--text-mid); font-size: 14.5px; }
.deliver__cta { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 940px) {
  .deliver__grid { grid-template-columns: 1fr; }
  .report-items { columns: 1; }
}

/* ---------- 診断CTA ---------- */
.diagnosis { background: var(--bg-tint-blue); }
.diagnosis__inner { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: center; }
.diagnosis__fig img { width: min(100%, 280px); }
.q-samples { margin-top: 22px; display: grid; gap: 10px; }
.q-samples li {
  background: #fff; border: 1px solid var(--sb-100); border-radius: 10px;
  padding: 13px 18px; font-size: 15px; display: flex; gap: 10px; align-items: baseline;
}
.q-samples li::before { content: "Q"; font-weight: 800; color: var(--sb-500); }
.diagnosis__meta { margin-top: 14px; font-size: 14px; color: var(--text-mid); }
@media (max-width: 860px) {
  .diagnosis__inner { grid-template-columns: 1fr; gap: 24px; }
  .diagnosis__fig img { width: 220px; margin-inline: auto; }
}

/* ---------- 業種別 ---------- */
.industry__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.ind-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 24px 22px; color: inherit; text-decoration: none; display: block;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
a.ind-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: var(--yg-300); }
.ind-card__name { font-size: 17px; font-weight: 800; display: flex; align-items: center; justify-content: space-between; }
.ind-card__name .go { color: var(--yg-700); font-size: 14px; font-weight: 700; }
.ind-card__body { margin-top: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.industry__close { margin-top: 30px; color: var(--text-mid); max-width: 48em; }
@media (max-width: 900px) { .industry__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .industry__grid { grid-template-columns: 1fr; } }

/* ---------- 選ばれる理由 ---------- */
.reason { background: var(--bg-tint-green); }
.reason__head { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: center; }
.reason__fig img { width: min(100%, 320px); }
.reason__list { margin-top: 30px; counter-reset: rs; max-width: 780px; }
.reason__list > li {
  counter-increment: rs; background: #fff; border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 26px 28px 26px 82px; position: relative; margin-top: 16px;
}
.reason__list > li::before {
  content: "0" counter(rs);
  position: absolute; left: 26px; top: 24px;
  font-size: 26px; font-weight: 800; color: var(--yg-500);
  font-variant-numeric: tabular-nums;
}
.reason__list h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.reason__list p { font-size: 14.5px; color: var(--text-mid); }
@media (max-width: 860px) {
  .reason__head { grid-template-columns: 1fr; }
  .reason__fig img { width: 260px; margin-inline: auto; }
  .reason__list > li { padding: 22px 20px 22px 64px; }
  .reason__list > li::before { left: 18px; }
}

/* ---------- 講師・チーム ---------- */
.team__grid { display: grid; grid-template-columns: 340px 1fr; gap: 48px; margin-top: 44px; align-items: start; }
.profile-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-card);
}
.profile-card__photo {
  aspect-ratio: 4 / 3; background: linear-gradient(135deg, var(--yg-50), var(--sb-50));
  display: grid; place-items: center; color: var(--text-weak); font-size: 13px;
  border-bottom: 1px solid var(--line-soft);
}
.profile-card__body { padding: 22px 24px; }
.profile-card__role { font-size: 12.5px; font-weight: 700; color: var(--sb-700); }
.profile-card__name { font-size: 21px; font-weight: 800; margin-top: 2px; }
.profile-card__bio { font-size: 13.5px; color: var(--text-mid); margin-top: 10px; }
.team__note h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.team__note p { color: var(--text-mid); margin-bottom: 18px; max-width: 42em; }
.team__note p strong { color: var(--text-strong); }
.capacity {
  background: var(--sb-50); border-left: 4px solid var(--sb-700); border-radius: 0 10px 10px 0;
  padding: 16px 20px; font-size: 14.5px; margin-bottom: 24px;
}
@media (max-width: 900px) { .team__grid { grid-template-columns: 1fr; } .profile-card { max-width: 380px; } }

/* ---------- 対応エリア ---------- */
.area { background: var(--bg-tint-blue); }
.area__grid { display: grid; grid-template-columns: minmax(0, 440px) 1fr; gap: 52px; margin-top: 44px; align-items: center; }
.area-map svg { width: 100%; height: auto; }
.area-table { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.area-table__row { display: grid; grid-template-columns: 160px 1fr; }
.area-table__row + .area-table__row { border-top: 1px solid var(--line-soft); }
.area-table__row dt { background: var(--yg-50); font-weight: 700; font-size: 14px; padding: 16px 18px; }
.area-table__row dd { margin: 0; padding: 16px 18px; font-size: 14.5px; }
.transport-box {
  margin-top: 20px; background: #fff; border: 2px solid var(--sb-100); border-radius: var(--radius);
  padding: 20px 24px; font-size: 14.5px;
}
.transport-box b { display: block; margin-bottom: 6px; }
.format-table { margin-top: 20px; width: 100%; border-collapse: collapse; background: #fff; font-size: 14px; }
.format-table th, .format-table td { border: 1px solid var(--line-soft); padding: 12px 14px; text-align: left; vertical-align: top; }
.format-table th { background: var(--yg-50); font-weight: 700; white-space: nowrap; }
.area__close { margin-top: 22px; font-size: 14.5px; color: var(--text-mid); max-width: 48em; }
@media (max-width: 940px) {
  .area__grid { grid-template-columns: 1fr; }
  .area-map { max-width: 420px; margin-inline: auto; }
  .area-table__row { grid-template-columns: 1fr; }
  .area-table__row dt { padding-bottom: 6px; }
  .area-table__row dd { padding-top: 0; }
}

/* ---------- 導入の流れ ---------- */
.flow__steps { margin-top: 48px; display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; position: relative; }
.step {
  background: #fff; border: 1px solid var(--line-soft); border-radius: 12px;
  padding: 20px 16px; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.step__no { font-size: 12px; font-weight: 800; color: var(--yg-700); letter-spacing: .08em; }
.step__name { font-size: 15px; font-weight: 800; line-height: 1.5; margin-top: 4px; }
.step__meta { display: inline-block; font-size: 11.5px; font-weight: 700; color: var(--sb-900); background: var(--sb-50); padding: 3px 8px; border-radius: 6px; margin-top: 8px; }
.step__desc { font-size: 12.5px; color: var(--text-mid); margin-top: 8px; line-height: 1.65; }
.step__desc strong { color: var(--text-strong); }
.step--s4 { border-color: var(--sb-300); }
.flow__note {
  margin-top: 24px; background: var(--warn-bg); border: 1px solid var(--warn-fg);
  color: var(--text-strong); border-radius: var(--radius); padding: 18px 22px; font-size: 14.5px;
  max-width: 56em;
}
.flow__note b { color: var(--warn-fg); }
.flow__bottom { margin-top: 36px; display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: center; }
.flow__fig img { width: min(100%, 360px); }
@media (max-width: 1060px) { .flow__steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .flow__steps { grid-template-columns: 1fr; }
  .flow__bottom { grid-template-columns: 1fr; }
  .flow__fig img { width: 280px; margin-inline: auto; }
}

/* ---------- 2つの期限 ---------- */
.deadline__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 44px; }
.deadline-card { border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px 28px; background: #fff; }
.deadline-card__tag { display: inline-block; font-size: 12.5px; font-weight: 800; color: var(--sb-900); background: var(--sb-100); border-radius: 999px; padding: 4px 14px; }
.deadline-card h3 { font-size: 17px; font-weight: 800; line-height: 1.6; margin-top: 14px; }
.deadline-card p { font-size: 14.5px; color: var(--text-mid); margin-top: 10px; }
.deadline-card p strong { color: var(--text-strong); }
.deadline__close { margin-top: 28px; max-width: 48em; color: var(--text-mid); }
.deadline__close strong { color: var(--text-strong); }
@media (max-width: 820px) { .deadline__grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-tint-green); }
.faq__list { margin-top: 44px; display: grid; gap: 16px; max-width: 860px; }
.faq-item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 28px; }
.faq-item__q { display: flex; gap: 14px; font-size: 16px; font-weight: 800; line-height: 1.6; }
.faq-item__q::before { content: "Q"; color: var(--yg-700); font-size: 19px; font-weight: 800; }
.faq-item__a { display: flex; gap: 14px; margin-top: 12px; font-size: 14.5px; color: var(--text-mid); }
.faq-item__a::before { content: "A"; color: var(--sb-700); font-size: 19px; font-weight: 800; line-height: 1.4; }

/* ---------- コラム・セミナー ---------- */
.column-sec__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; }
.article-card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.article-card__thumb { aspect-ratio: 16 / 9; display: grid; place-items: center; font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.article-card__thumb--1 { background: linear-gradient(135deg, var(--yg-100), var(--yg-50)); color: var(--yg-800); }
.article-card__thumb--2 { background: linear-gradient(135deg, var(--sb-100), var(--sb-50)); color: var(--sb-900); }
.article-card__thumb--3 { background: linear-gradient(135deg, var(--yg-50), var(--sb-50)); color: var(--text-mid); }
.article-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.article-card__meta { font-size: 12px; color: var(--text-weak); display: flex; gap: 10px; }
.article-card__meta .cat { color: var(--sb-700); font-weight: 700; }
.article-card__title { font-size: 15px; font-weight: 800; line-height: 1.6; }
.article-card__sum { font-size: 13px; color: var(--text-mid); }
.seminar-card { background: var(--yg-50); border: 1px solid var(--yg-200); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; }
.seminar-card__tag { font-size: 12px; font-weight: 800; color: var(--yg-800); letter-spacing: .1em; }
.seminar-card__title { font-size: 15.5px; font-weight: 800; margin-top: 8px; line-height: 1.6; }
.seminar-card dl { margin: 12px 0 0; font-size: 13px; }
.seminar-card dl div { display: flex; gap: 8px; padding: 3px 0; }
.seminar-card dt { color: var(--text-mid); flex: none; }
.seminar-card dd { margin: 0; font-weight: 700; }
.seminar-card .btn { margin-top: auto; }
.seminar-card__note { font-size: 12px; color: var(--text-mid); margin-top: 10px; }
.column-sec__more { margin-top: 30px; }
@media (max-width: 1000px) { .column-sec__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .column-sec__grid { grid-template-columns: 1fr; } }

/* ---------- 最終CTA ---------- */
.final-cta { background: var(--yg-900); color: var(--text-onDark); }
.final-cta h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; line-height: 1.55; }
.final-cta__lead { margin-top: 18px; opacity: .94; max-width: 44em; }
.final-cta__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.final-cta__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
.entry-card {
  background: #fff; color: var(--text-strong); border-radius: 16px; padding: 28px 26px;
  display: flex; flex-direction: column; text-align: center; gap: 6px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.entry-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.entry-card__no { font-size: 12px; font-weight: 800; color: var(--yg-700); letter-spacing: .12em; }
.entry-card__name { font-size: 18px; font-weight: 800; }
.entry-card__tel {
  font-size: 30px; font-weight: 800; color: var(--text-strong); text-decoration: none;
  font-variant-numeric: tabular-nums; display: inline-flex; align-items: center; gap: 8px; justify-content: center;
}
.entry-card__tel svg { color: var(--sb-700); }
.entry-card__cap { font-size: 13px; color: var(--text-mid); }
.entry-card .btn { margin-top: auto; }
.final-cta__fine { margin-top: 30px; font-size: 13px; opacity: .85; line-height: 1.9; }
@media (max-width: 900px) { .final-cta__grid { grid-template-columns: 1fr; } }

/* ---------- フッター ---------- */
.footer { background: var(--text-strong); color: #fff; padding: 64px 0 120px; }
.footer a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 13.5px; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .logo__name { color: var(--yg-300); }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,.72); margin-top: 12px; line-height: 1.9; }
.footer__tel { margin-top: 14px; font-size: 18px; font-weight: 800; color: #fff; font-variant-numeric: tabular-nums; }
.footer__col h3 { font-size: 13px; font-weight: 800; color: var(--yg-300); letter-spacing: .1em; margin-bottom: 14px; }
.footer__col li { margin-top: 8px; }
.footer__bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 12.5px; color: rgba(255,255,255,.6);
}
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- SP追従バー / PC追従ボタン ---------- */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  height: 56px; display: none; grid-template-columns: 1fr 1fr 1fr;
  transform: translateY(100%); transition: transform .35s cubic-bezier(.22,.61,.36,1);
  box-shadow: 0 -4px 16px rgba(26,31,22,.14);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar a {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 13px; font-weight: 800; text-decoration: none;
}
.sticky-bar__tel { background: #fff; color: var(--text-strong); border-top: 1px solid var(--line-soft); }
.sticky-bar__tel svg { color: var(--sb-700); }
.sticky-bar__consult { background: var(--yg-700); color: #fff; }
.sticky-bar__doc { background: #fff; color: var(--yg-700); border: 2px solid var(--yg-700); border-bottom: none; }
.sticky-bar--two { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .sticky-bar { display: grid; } }

.pc-float {
  position: fixed; right: 20px; bottom: 24px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease;
}
.pc-float.show { opacity: 1; pointer-events: auto; transform: none; }
.pc-float a {
  writing-mode: vertical-rl; padding: 22px 13px; border-radius: 12px;
  font-size: 14px; font-weight: 800; text-decoration: none; letter-spacing: .12em;
  box-shadow: var(--shadow-lift);
}
.pc-float__consult { background: var(--yg-700); color: #fff; }
.pc-float__consult:hover { background: var(--yg-800); color: #fff; }
.pc-float__doc { background: #fff; color: var(--yg-700); border: 2px solid var(--yg-700); }
.pc-float__doc:hover { background: var(--yg-50); }
@media (max-width: 900px) { .pc-float { display: none; } }

/* ---------- カウントアップ数字 ---------- */
.count { display: inline-block; font-variant-numeric: tabular-nums; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .reveal { opacity: 1; transform: none; }
  .marker { background-size: 100% 100%; }
}
