@charset "UTF-8";
/* =========================================================
   株式会社クリエート（QREATE） コーポレートサイト
   制作：雄喜晃株式会社
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Tokens ---------- */
:root {
  --ink:      #0b0b0d;   /* ベース黒 */
  --ink-2:    #141418;   /* 一段明るい黒 */
  --ink-3:    #1e1e24;
  --line:     rgba(255,255,255,.12);
  --line-d:   rgba(11,11,13,.12);
  --paper:    #f4f4f2;   /* 明るいセクションの背景 */
  --white:    #ffffff;
  --yellow:   #ffd400;   /* メインアクセント */
  --yellow-d: #e5be00;
  --gray:     #8c8c93;
  --gray-2:   #5a5a61;

  --w:  1200px;
  --pad: clamp(20px, 5vw, 48px);

  --f-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --f-disp: "Anton", "Arial Black", var(--f-sans);

  --ease: cubic-bezier(.22,.7,.3,1);
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--ink);
  color: var(--white);
  line-height: 1.85;
  font-size: 15px;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.wrap { width: min(100% - var(--pad) * 2, var(--w)); margin-inline: auto; }
.narrow { width: min(100% - var(--pad) * 2, 900px); margin-inline: auto; }

/* ---------- Typography ---------- */
.en { font-family: var(--f-disp); font-weight: 400; letter-spacing: .02em; line-height: .95; }
.mark { color: var(--yellow); }

.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-disp); font-size: 13px; letter-spacing: .18em;
  color: var(--yellow); margin-bottom: 14px;
}
.sec-label::before { content: ""; width: 28px; height: 2px; background: var(--yellow); }

.sec-title {
  font-size: clamp(26px, 4.4vw, 44px);
  font-weight: 900; line-height: 1.35; letter-spacing: .02em;
  margin-bottom: 18px;
}
.sec-lead { color: var(--gray); max-width: 42em; font-size: 14.5px; }

.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.section.light { background: var(--paper); color: var(--ink); }
.section.light .sec-lead { color: var(--gray-2); }
.section.light .sec-label { color: var(--ink); }
.section.light .sec-label::before { background: var(--ink); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; font-weight: 700; font-size: 14px; letter-spacing: .08em;
  border-radius: 2px; transition: .3s var(--ease); position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: "→"; font-size: 14px; transition: transform .3s var(--ease);
}
.btn:hover::after { transform: translateX(5px); }
.btn-y { background: var(--yellow); color: var(--ink); }
.btn-y:hover { background: var(--white); }
.btn-line { border: 1px solid rgba(255,255,255,.4); color: var(--white); }
.btn-line:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.section.light .btn-line { border-color: rgba(11,11,13,.35); color: var(--ink); }
.section.light .btn-line:hover { background: var(--ink); color: var(--white); }
.btn-lg { padding: 19px 40px; font-size: 15px; }

/* =========================================================
   Header
   ========================================================= */
.hd {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 0 clamp(16px, 3vw, 32px); height: 76px;
  transition: background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.hd.solid { background: rgba(11,11,13,.92); backdrop-filter: blur(14px); border-bottom-color: var(--line); }

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 40px; height: 40px; background: var(--yellow); color: var(--ink);
  display: grid; place-items: center; font-family: var(--f-disp); font-size: 22px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
}
.logo-tx .en { display: block; font-size: 19px; letter-spacing: .1em; }
.logo-tx small { display: block; font-size: 10px; color: var(--gray); letter-spacing: .1em; line-height: 1.4; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 28px); }
.nav a {
  font-size: 13px; font-weight: 700; letter-spacing: .06em; position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--yellow); transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a.on::after { width: 100%; }
.nav a.on { color: var(--yellow); }

.hd-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.hd-tel { text-align: right; line-height: 1.2; }
.hd-tel small { display: block; font-size: 9px; color: var(--gray); letter-spacing: .1em; }
.hd-tel span { font-family: var(--f-disp); font-size: 19px; color: var(--yellow); }
.hd-cta .btn { padding: 12px 20px; font-size: 12.5px; }

.burger { display: none; width: 44px; height: 44px; position: relative; z-index: 120; }
.burger span {
  position: absolute; left: 10px; width: 24px; height: 2px; background: var(--white);
  transition: .3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 110; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 90px var(--pad) 40px;
  transform: translateY(-100%); transition: transform .45s var(--ease); visibility: hidden;
}
.drawer.open { transform: translateY(0); visibility: visible; }
.drawer a.dnav {
  display: flex; align-items: baseline; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 700;
}
.drawer a.dnav i { font-family: var(--f-disp); font-style: normal; font-size: 12px; color: var(--yellow); }
.drawer .d-foot { margin-top: 28px; display: grid; gap: 12px; }
.drawer .d-foot .btn { width: 100%; }
.drawer .d-tel { text-align: center; }
.drawer .d-tel span { font-family: var(--f-disp); font-size: 30px; color: var(--yellow); }
.drawer .d-tel small { display: block; font-size: 11px; color: var(--gray); }

/* =========================================================
   Hero (TOP)
   ========================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding: 110px 0 90px; overflow: hidden;
  background:
    radial-gradient(900px 600px at 78% 18%, rgba(255,212,0,.14), transparent 62%),
    linear-gradient(180deg, #0b0b0d 0%, #101014 60%, #0b0b0d 100%);
}
/* 斜めのスピードライン（写真がなくても成立する背景） */
.hero::before {
  content: ""; position: absolute; inset: -20% -10%;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.045) 0 2px, transparent 2px 92px);
  transform: rotate(0deg); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; right: -6%; top: 0; bottom: 0; width: 46%;
  background: linear-gradient(200deg, rgba(255,212,0,.9), rgba(255,212,0,0) 62%);
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 0 100%);
  opacity: .16; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: min(100% - var(--pad)*2, var(--w)); margin-inline: auto; }
.hero-sup {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 16px;
  font-size: 11.5px; letter-spacing: .12em; color: var(--gray);
}
.hero-sup b { color: var(--yellow); font-weight: 700; }
.hero h1 {
  font-size: clamp(34px, 7.4vw, 84px); font-weight: 900; line-height: 1.22;
  letter-spacing: .01em; margin-bottom: 26px;
}
.hero h1 .l2 { display: block; }
.hero h1 em {
  font-style: normal; position: relative; display: inline-block; color: var(--yellow);
}
.hero h1 em::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .18em;
  background: rgba(255,212,0,.22); z-index: -1;
}
.hero-lead { font-size: clamp(14px, 1.7vw, 17px); color: #cfcfd4; max-width: 34em; margin-bottom: 38px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-word {
  position: absolute; left: 50%; bottom: -.24em; transform: translateX(-50%);
  font-family: var(--f-disp); font-size: clamp(90px, 22vw, 300px); line-height: .8;
  color: rgba(255,255,255,.035); white-space: nowrap; pointer-events: none; z-index: 1;
}
.hero-scroll {
  position: absolute; left: clamp(16px,3vw,32px); bottom: 26px; z-index: 3;
  display: flex; align-items: center; gap: 12px; font-size: 10px; letter-spacing: .3em; color: var(--gray);
}
.hero-scroll::after { content: ""; width: 56px; height: 1px; background: var(--gray); position: relative; overflow: hidden; }

/* 下層ページの小さめヒーロー */
.phero {
  position: relative; padding: 168px 0 68px; overflow: hidden;
  background:
    radial-gradient(700px 420px at 82% 10%, rgba(255,212,0,.15), transparent 60%),
    linear-gradient(180deg, #0b0b0d, #131317);
  border-bottom: 1px solid var(--line);
}
.phero::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.04) 0 2px, transparent 2px 84px);
}
.phero .wrap { position: relative; z-index: 2; }
.phero .en { font-size: clamp(44px, 9vw, 104px); color: rgba(255,255,255,.9); }
.phero h1 { font-size: clamp(20px, 3vw, 28px); font-weight: 900; margin-top: 6px; }
.phero h1::before { content: "— "; color: var(--yellow); }
.crumb { font-size: 11.5px; color: var(--gray); margin-bottom: 26px; letter-spacing: .08em; }
.crumb a:hover { color: var(--yellow); }

/* =========================================================
   Marquee ticker
   ========================================================= */
.ticker { background: var(--yellow); color: var(--ink); padding: 13px 0; overflow: hidden; }
.ticker-in { display: flex; width: max-content; animation: slide 32s linear infinite; }
.ticker span {
  font-family: var(--f-disp); font-size: 19px; letter-spacing: .06em; padding-right: 34px;
  display: inline-flex; align-items: center; gap: 34px;
}
.ticker span::after { content: "●"; font-size: 7px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* =========================================================
   Stats
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat { background: var(--ink); padding: 34px 24px; }
.stat dt { font-size: 11.5px; color: var(--gray); letter-spacing: .1em; margin-bottom: 8px; }
.stat dd { font-family: var(--f-disp); font-size: clamp(30px, 4vw, 46px); color: var(--yellow); line-height: 1; }
.stat dd small { font-family: var(--f-sans); font-size: 13px; font-weight: 700; color: var(--white); margin-left: 6px; letter-spacing: .04em; }

/* =========================================================
   Cards / Service
   ========================================================= */
.grid { display: grid; gap: 22px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative; background: var(--ink-2); border: 1px solid var(--line);
  padding: 34px 28px 30px; transition: .35s var(--ease); overflow: hidden;
}
.section.light .card { background: var(--white); border-color: var(--line-d); }
.card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover::before { transform: scaleX(1); }
.card:hover { transform: translateY(-6px); }
.card .num {
  font-family: var(--f-disp); font-size: 13px; color: var(--yellow); letter-spacing: .16em; display: block; margin-bottom: 14px;
}
.card h3 { font-size: 18px; font-weight: 900; margin-bottom: 12px; line-height: 1.5; }
.card p { font-size: 13.5px; color: var(--gray); }
.section.light .card p { color: var(--gray-2); }
.card .ico {
  width: 52px; height: 52px; margin-bottom: 18px; display: grid; place-items: center;
  background: rgba(255,212,0,.12); color: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 74% 100%, 0 100%);
}
.card .ico svg { width: 26px; height: 26px; }

/* 写真スロット（差し替え用） */
.photo {
  position: relative; aspect-ratio: 4/3; background: var(--ink-3);
  background-image: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 26px);
  background-size: cover; background-position: center;
  display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line);
}
.photo::after {
  content: attr(data-label); font-family: var(--f-disp); font-size: 13px; letter-spacing: .2em;
  color: rgba(255,255,255,.28);
}
.photo.wide { aspect-ratio: 16/9; }
.photo.tall { aspect-ratio: 3/4; }
.photo.has-img::after { content: none; }

/* =========================================================
   Reason（横並び大ブロック）
   ========================================================= */
.reason { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 70px); align-items: center; }
.reason + .reason { margin-top: clamp(48px, 7vw, 88px); }
.reason.rev > *:first-child { order: 2; }
.reason .no { font-family: var(--f-disp); font-size: clamp(58px, 8vw, 96px); color: rgba(255,212,0,.22); line-height: .8; margin-bottom: 6px; }
.reason h3 { font-size: clamp(20px, 2.6vw, 27px); font-weight: 900; line-height: 1.5; margin-bottom: 16px; }
.reason p { color: var(--gray); font-size: 14.5px; }
.section.light .reason p { color: var(--gray-2); }
.section.light .reason .no { color: rgba(11,11,13,.14); }

/* =========================================================
   Flow / Timeline
   ========================================================= */
.flow { counter-reset: f; display: grid; gap: 1px; background: var(--line-d); border: 1px solid var(--line-d); }
.flow li { background: var(--white); color: var(--ink); padding: 28px 26px; display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: start; }
.flow li .st { font-family: var(--f-disp); font-size: 12px; color: var(--gray-2); letter-spacing: .12em; }
.flow li .st b { display: block; font-size: 32px; color: var(--yellow-d); line-height: 1; }
.flow li h4 { font-size: 16.5px; font-weight: 900; margin-bottom: 6px; }
.flow li p { font-size: 13.5px; color: var(--gray-2); }

.tl { border-left: 2px solid var(--line); padding-left: 28px; display: grid; gap: 26px; }
.section.light .tl { border-color: var(--line-d); }
.tl li { position: relative; }
.tl li::before {
  content: ""; position: absolute; left: -35px; top: 8px; width: 12px; height: 12px;
  background: var(--yellow); border-radius: 50%;
}
.tl .yr { font-family: var(--f-disp); font-size: 17px; color: var(--yellow-d); letter-spacing: .08em; }
.section.light .tl .yr { color: #b39400; }
.tl p { font-size: 14.5px; }

/* =========================================================
   Table
   ========================================================= */
.tbl { width: 100%; border-collapse: collapse; }
.tbl th, .tbl td { padding: 18px 4px; border-bottom: 1px solid var(--line-d); text-align: left; font-size: 14.5px; vertical-align: top; }
.tbl th { width: 190px; font-weight: 900; white-space: nowrap; }
.section:not(.light) .tbl th, .section:not(.light) .tbl td { border-color: var(--line); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { border-top: 1px solid var(--line-d); }
.faq details { border-bottom: 1px solid var(--line-d); }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 40px; position: relative;
  font-weight: 900; font-size: 15.5px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 0; top: 21px; font-family: var(--f-disp);
  color: var(--yellow-d); font-size: 18px;
}
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 30px; width: 13px; height: 2px;
  background: currentColor; transition: .3s var(--ease);
}
.faq summary .plus {
  position: absolute; right: 14px; top: 24px; width: 2px; height: 13px;
  background: currentColor; transition: .3s var(--ease);
}
.faq details[open] summary .plus { transform: rotate(90deg); opacity: 0; }
.faq .a { padding: 0 44px 24px 40px; font-size: 14px; color: var(--gray-2); position: relative; }
.faq .a::before {
  content: "A"; position: absolute; left: 0; top: -2px; font-family: var(--f-disp); color: var(--gray); font-size: 18px;
}

/* =========================================================
   Recruit banner / CTA
   ========================================================= */
.rbanner {
  position: relative; overflow: hidden; border: 1px solid var(--line);
  background:
    radial-gradient(600px 380px at 88% 20%, rgba(255,212,0,.18), transparent 62%),
    linear-gradient(120deg, #101014, #17171c);
  padding: clamp(40px, 6vw, 68px) clamp(28px, 5vw, 60px);
}
.rbanner::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,.05) 0 2px, transparent 2px 70px);
}
.rbanner > * { position: relative; z-index: 2; }
.rbanner .en { font-size: clamp(38px, 7vw, 72px); color: rgba(255,255,255,.9); margin-bottom: 10px; }
.rbanner h2 { font-size: clamp(20px, 3vw, 30px); font-weight: 900; margin-bottom: 14px; }
.rbanner p { color: var(--gray); max-width: 40em; margin-bottom: 30px; font-size: 14.5px; }

.cta {
  background: var(--yellow); color: var(--ink); text-align: center;
  padding: clamp(56px, 8vw, 96px) 0; position: relative; overflow: hidden;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, rgba(0,0,0,.045) 0 2px, transparent 2px 74px);
}
.cta > * { position: relative; z-index: 2; }
.cta .en { font-size: clamp(36px, 6.5vw, 68px); margin-bottom: 8px; }
.cta h2 { font-size: clamp(19px, 2.6vw, 26px); font-weight: 900; margin-bottom: 12px; }
.cta p { font-size: 14.5px; margin-bottom: 30px; color: rgba(11,11,13,.7); }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; align-items: center; }
.cta .btn-dark { background: var(--ink); color: var(--white); }
.cta .btn-dark:hover { background: var(--white); color: var(--ink); }
.cta .btn-out { border: 2px solid var(--ink); color: var(--ink); }
.cta .btn-out:hover { background: var(--ink); color: var(--yellow); }
.cta-tel { display: block; margin-top: 26px; }
.cta-tel small { display: block; font-size: 11.5px; letter-spacing: .14em; color: rgba(11,11,13,.6); }
.cta-tel span { font-family: var(--f-disp); font-size: clamp(34px, 5.6vw, 54px); }

/* =========================================================
   Form
   ========================================================= */
.form { display: grid; gap: 22px; }
.field label { display: block; font-size: 13px; font-weight: 900; margin-bottom: 8px; letter-spacing: .06em; }
.field label .req { color: #d33; font-size: 11px; margin-left: 6px; }
.field label .opt { color: var(--gray); font-size: 11px; margin-left: 6px; font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; font-size: 15px; font-family: inherit;
  background: #eef1f5; border: 1px solid #d5dae1; border-radius: 2px; color: #14141a;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--yellow-d); outline-offset: 1px; }
.field textarea { min-height: 160px; resize: vertical; }
.form .hp { position: absolute; left: -9999px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-row label {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; margin: 0;
  border: 1px solid var(--line-d); cursor: pointer; font-weight: 700; font-size: 13.5px;
  transition: .2s var(--ease); white-space: nowrap; flex: 0 0 auto;
}
@media (max-width: 480px) { .radio-row label { white-space: normal; width: 100%; } }
.radio-row label:has(input:checked) { background: var(--ink); color: var(--white); border-color: var(--ink); }
.form-note { font-size: 12.5px; color: var(--gray-2); }
.form-submit { text-align: center; margin-top: 6px; }
.form-submit .btn { min-width: 260px; }

/* =========================================================
   Footer
   ========================================================= */
.ft { background: #08080a; border-top: 1px solid var(--line); padding: clamp(50px, 7vw, 78px) 0 26px; }
.ft-top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.ft-co .logo { margin-bottom: 18px; }
.ft-co p { font-size: 13px; color: var(--gray); }
.ft h4 { font-family: var(--f-disp); font-size: 13px; letter-spacing: .16em; color: var(--yellow); margin-bottom: 16px; }
.ft ul li { margin-bottom: 11px; font-size: 13.5px; }
.ft ul li a:hover { color: var(--yellow); }
.ft-bot { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; font-size: 11.5px; color: var(--gray); }
.ft-bot a:hover { color: var(--yellow); }

/* 固定フッターCTA（スマホ） */
.sp-cta { display: none; }

/* 改行制御 */
.sp-br { display: none; }
@media (max-width: 640px) { .sp-br { display: block; } }

/* =========================================================
   Reveal animation
   ========================================================= */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .ticker-in { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .nav, .hd-cta .hd-tel { display: none; }
  .burger { display: block; }
  .hd-cta .btn { display: none; }
}
@media (max-width: 900px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .reason { grid-template-columns: 1fr; }
  .reason.rev > *:first-child { order: 0; }
}
@media (max-width: 640px) {
  body { font-size: 14.5px; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
  .tbl th, .tbl td { display: block; width: auto; padding: 8px 0; }
  .tbl th { border-bottom: none; padding-top: 16px; }
  .hero { min-height: 92svh; padding-top: 100px; }
  .hero-btns .btn { width: 100%; }
  .flow li { grid-template-columns: 1fr; gap: 6px; }
  .phero { padding: 130px 0 48px; }
  body { padding-bottom: 66px; }
  .sp-cta {
    display: grid; grid-template-columns: 1fr 1fr; position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 90; border-top: 1px solid rgba(0,0,0,.2);
  }
  .sp-cta a {
    padding: 15px 8px; text-align: center; font-size: 13px; font-weight: 900; letter-spacing: .04em;
  }
  .sp-cta .t { background: var(--yellow); color: var(--ink); }
  .sp-cta .m { background: var(--ink-2); color: var(--white); border-left: 1px solid var(--line); }
}
