

:root {
  --navy:      #1b2b5e;
  --navy-deep: #111d42;
  --navy-soft: #2a3d77;
  --red:       #cf3023;
  --red-dark:  #a8241a;
  --mail-teal: #0e7490;

  --ink:      #1d2433;
  --ink-soft: #46506a;
  --muted:    #7c869e;
  --bg:       #ffffff;
  --bg-gray:  #f2f4f8;
  --bg-navy:  #16244e;
  --line:     #e2e6ee;

  --maxw: 1100px;
  --ease: cubic-bezier(.25,.6,.25,1);
  --font-body: "Noto Sans JP", sans-serif;
  --font-en: "Oswald", "Noto Sans JP", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); color: var(--ink); background: var(--bg);
  line-height: 1.85; font-size: 15px; letter-spacing: .02em;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-weight: 700; line-height: 1.5; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(54px, 7vw, 92px); position: relative; }
.section--gray { background: var(--bg-gray); }
.section--navy { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }

.wm { overflow: hidden; }
.wm::before {
  content: attr(data-wm); position: absolute; right: -8px; top: 4px;
  font-family: var(--font-en); font-weight: 600; font-size: clamp(72px, 12vw, 150px);
  line-height: 1; color: rgba(27,43,94,.06); letter-spacing: .04em; pointer-events: none;
}
.section--navy.wm::before { color: rgba(255,255,255,.05); }

.sec-head { text-align: center; margin-bottom: clamp(32px, 5vw, 50px); position: relative; z-index: 2; }
.sec-head .en { font-family: var(--font-en); font-weight: 500; font-size: 13px; letter-spacing: .3em; color: var(--red); text-transform: uppercase; display: block; margin-bottom: 8px; }
.section--navy .sec-head .en { color: #ffd23e; }
.sec-title { font-size: clamp(24px, 3.6vw, 34px); font-weight: 900; letter-spacing: .03em; }
.sec-title .em { color: var(--red); }
.section--navy .sec-title .em { color: #ffd23e; }

/* 日本語見出しの改行最適化:
   - text-wrap:balance 行末の1〜2文字だけの折返しを防ぎ行長を均等化
   - word-break:auto-phrase 対応ブラウザ(Chrome等)では文節単位で折返し
   - .u は手動の文節ユニット。語中で切れない（Safari等の非対応ブラウザ向け） */
h1, h2, h3, h4 { text-wrap: balance; word-break: auto-phrase; }
.u { display: inline-block; }
.sec-head .bar { width: 54px; height: 4px; background: var(--red); margin: 18px auto 0; border-radius: 2px; }
.section--navy .sec-head .bar { background: #ffd23e; }
.sec-lead { margin-top: 16px; color: var(--ink-soft); font-size: 15px; max-width: 680px; margin-inline: auto; }
.section--navy .sec-lead { color: rgba(255,255,255,.82); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 15.5px; letter-spacing: .06em;
  padding: 15px 30px; border-radius: 6px; line-height: 1.3; text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn--red {
  background: linear-gradient(180deg, #e04434, var(--red) 55%, var(--red-dark));
  color: #fff; box-shadow: 0 6px 0 #7e150d, 0 12px 24px rgba(207,48,35,.35);
}
.btn--red:hover { box-shadow: 0 4px 0 #7e150d, 0 14px 28px rgba(207,48,35,.4); transform: translateY(2px); }
.btn--navy { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgba(27,43,94,.3); }
.btn--mail { background: var(--mail-teal); color: #fff; box-shadow: 0 6px 0 #0a5566, 0 12px 24px rgba(14,116,144,.3); }
.btn--mail:hover { box-shadow: 0 4px 0 #0a5566, 0 14px 28px rgba(14,116,144,.36); transform: translateY(2px); }
.btn--ghost { background: #fff; color: var(--navy); border: 2px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--lg { padding: 20px 46px; font-size: 18px; border-radius: 8px; }
.btn--block { width: 100%; }
.btn .ico { width: 19px; height: 19px; flex: none; }
.btn .small { display: block; font-size: 11px; font-weight: 500; opacity: .9; }

.header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: 0 2px 10px rgba(17,29,66,.08); }
.header__top { display: flex; align-items: center; gap: 18px; padding-block: 10px; }
.brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.brand__logo-mark { height: 48px; width: auto; flex: none; }
.brand__col { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.brand__logo-text { height: 21px; width: auto; align-self: flex-start; }
.brand__tag { font-size: 10px; color: var(--muted); display: block; letter-spacing: .05em; line-height: 1.3; }
.header__right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header__tel { text-align: right; line-height: 1.25; }
.header__tel .num { font-family: var(--font-en); font-weight: 600; font-size: 25px; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.header__tel .num .ico { width: 19px; height: 19px; color: var(--red); }
.header__tel .hours { font-size: 10.5px; color: var(--muted); }
.header__btns { display: flex; gap: 8px; align-items: stretch; }
.header__btns .btn {
  padding: 10px 18px; font-size: 13px; border-radius: 6px;
  flex-direction: column; justify-content: center; gap: 1px; min-width: 116px;
  box-shadow: none; 
}
.header__btns .btn:hover { transform: none; box-shadow: none; filter: brightness(1.1); }
.header__btns .btn--red { background: linear-gradient(180deg, #e04434, var(--red)); }

.burger {
  display: none; place-items: center; width: 42px; height: 42px; flex: none;
  border: 1px solid var(--line); border-radius: 8px; color: var(--navy); background: #fff;
}
.burger .i-close { display: none; }
.header.is-open .burger .i-open { display: none; }
.header.is-open .burger .i-close { display: block; }

.subnav { background: var(--navy); }
.subnav__list { display: flex; }
.subnav__cta { display: none; }
.subnav__list a {
  flex: 1; text-align: center; color: rgba(255,255,255,.88); font-size: 13.5px; font-weight: 700;
  padding: 12px 6px; position: relative; transition: background .2s;
}
.subnav__list a + a::before { content: ""; position: absolute; left: 0; top: 26%; height: 48%; width: 1px; background: rgba(255,255,255,.2); }
.subnav__list a:hover { background: rgba(255,255,255,.1); color: #fff; }

.hero { position: relative; background: #fff; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; min-height: 440px; }
.hero__copy { display: flex; flex-direction: column; justify-content: center; padding: 48px 8px 48px 0; position: relative; z-index: 2; }
.hero__eyebrow { display: inline-block; font-size: 14px; font-weight: 700; color: var(--navy); letter-spacing: .14em; margin-bottom: 14px; }
.hero__title { font-size: clamp(20px, 6.2vw, 32px); font-weight: 900; line-height: 1.45; letter-spacing: .04em; }
@media (min-width: 1001px) { .hero__title { font-size: clamp(26px, 2.9vw, 32px); } }
.hero__title .band {
  display: inline-block; white-space: nowrap; 
  background: var(--navy); color: #fff; padding: 4px 14px 6px; margin-bottom: 10px;
}
.hero__title .band.red { background: var(--red); }
.hero__sub { margin-top: 20px; font-size: 15px; color: var(--ink-soft); max-width: 430px; }
.hero__badges { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.hero__badges li {
  background: #fff; border: 2px solid var(--navy); color: var(--navy); border-radius: 999px;
  font-size: 12.5px; font-weight: 700; padding: 7px 16px;
}
.hero__fig { position: relative; min-height: 320px; }
.hero__fig::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, #fff 0, transparent 14%); pointer-events: none; }

.hero__sample {
  position: absolute; left: 22px; bottom: 20px; z-index: 3;
  background: #fff; border-radius: 10px; border-left: 4px solid var(--red);
  box-shadow: 0 14px 34px rgba(17,29,66,.22); padding: 13px 18px 12px; max-width: 320px;
}
.hero__sample .t { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: .06em; }
.hero__sample .t .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.hero__sample .price { font-family: var(--font-en); font-weight: 600; font-size: 31px; color: var(--navy); line-height: 1.25; }
.hero__sample .price .sep { color: var(--muted); font-size: .55em; margin: 0 3px; }
.hero__sample .price .u { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-left: 4px; }
.hero__sample .s { font-size: 10px; color: var(--muted); line-height: 1.6; }

.ph { position: relative; background: linear-gradient(140deg, #dfe5f0, #c8d2e4); overflow: hidden; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; position: absolute; inset: 0; }
.ph::before {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(27,43,94,.05) 0 14px, transparent 14px 28px);
}
.ph .ph__label {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: #5d6c92; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-align: center; padding: 12px;
}
.ph .ph__label svg { width: 34px; height: 34px; opacity: .7; }
.ph.has-img::before, .ph.has-img .ph__label { display: none; }

.achv { background: var(--bg-navy); }
.achv__inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.achv-item { text-align: center; padding: 20px 12px; color: #fff; position: relative; }
.achv-item + .achv-item::before { content: ""; position: absolute; left: 0; top: 25%; height: 50%; width: 1px; background: rgba(255,255,255,.18); }
.achv-item .num { font-family: var(--font-en); font-weight: 600; font-size: clamp(26px, 3vw, 36px); line-height: 1.1; }
.achv-item .num .u { font-size: .5em; color: #ffd23e; margin-left: 3px; }
.achv-item .lbl { font-size: 12px; opacity: .85; letter-spacing: .08em; }

.satei { background:
  radial-gradient(800px 400px at 85% -10%, rgba(63,87,167,.5), transparent 60%),
  linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 70%);
  color: #fff;
}
.satei-panel { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.satei-panel__head { text-align: center; margin-bottom: 30px; }
.satei-panel__head .t { font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: #fff; letter-spacing: .04em; }
.satei-panel__head .t .y { color: #ffd23e; }
.satei-panel__head .s { margin-top: 8px; font-size: 13.5px; color: rgba(255,255,255,.8); }
.satei-step { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 10px; padding: 18px 22px; margin-bottom: 14px; display: flex; align-items: center; gap: 18px; }
.satei-step__no { flex: none; text-align: center; width: 74px; }
.satei-step__no .en { display: block; font-family: var(--font-en); font-weight: 500; font-size: 11px; letter-spacing: .2em; color: #ffd23e; }
.satei-step__no .n { display: block; font-family: var(--font-en); font-weight: 600; font-size: 26px; line-height: 1; }
.satei-step__body { flex: 1; min-width: 0; }
.satei-step__q { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.seg { display: flex; flex-wrap: wrap; gap: 8px; }
.seg button {
  font-size: 13.5px; font-weight: 700; padding: 10px 18px; border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.04);
  transition: all .2s;
}
.seg button:hover { border-color: #ffd23e; color: #ffd23e; }
.seg button[aria-pressed="true"] { background: #ffd23e; border-color: #ffd23e; color: var(--navy-deep); }
.satei .select {
  width: 100%; font-family: inherit; font-size: 15px; color: #fff;
  padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.35); border-radius: 6px;
  background-color: rgba(255,255,255,.06);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%23ffd23e' stroke-width='2.6' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}
.satei .select:focus { outline: none; border-color: #ffd23e; }
.satei .select option { color: var(--ink); background: #fff; }
.satei-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.satei-row--3 { grid-template-columns: repeat(3, 1fr); }
.fcol.is-hidden { display: none; }
.flabel { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.75); margin-bottom: 6px; }
.satei .select:disabled { opacity: .45; cursor: not-allowed; }
.satei-step__q .q-note { font-size: 11.5px; font-weight: 500; color: #ffd23e; margin-left: 6px; }
.satei-submit { text-align: center; margin-top: 26px; }
.satei-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font-size: 12px; color: rgba(255,255,255,.75); }
.satei-note .ico { width: 14px; height: 14px; color: #ffd23e; }

.worry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; max-width: 880px; margin: 0 auto; position: relative; z-index: 2; }
.worry-item {
  background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start; font-size: 14px; font-weight: 700; line-height: 1.7;
  box-shadow: 0 3px 10px rgba(17,29,66,.04);
}
.worry-item .chk { flex: none; width: 24px; height: 24px; border-radius: 5px; background: var(--red); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.worry-item .chk svg { width: 14px; height: 14px; }
.worry-bridge { text-align: center; margin-top: 34px; position: relative; z-index: 2; }
.worry-bridge .arrow { font-size: 20px; color: var(--red); line-height: 1; margin-bottom: 12px; letter-spacing: 8px; }
.worry-bridge p { font-size: clamp(16px, 2.4vw, 20px); font-weight: 900; line-height: 1.7; }
.worry-bridge p .em { color: var(--red); }
.worry-bridge .btn { margin-top: 20px; }

.cta-micro { margin-top: 12px; font-size: 12px; color: var(--muted); }
.satei .cta-micro, .section--navy .cta-micro { color: rgba(255,255,255,.72); }

.assure { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.assure li { border: 1px solid rgba(255,255,255,.32); color: rgba(255,255,255,.88); font-size: 12px; font-weight: 700; border-radius: 999px; padding: 5px 14px; }

.hero__cta { margin-top: 26px; }

.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; z-index: 2; }
.case-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; box-shadow: 0 6px 18px rgba(17,29,66,.07); transition: transform .3s var(--ease), box-shadow .3s; display: flex; flex-direction: column; }
.case-card:hover { transform: translateY(-5px); box-shadow: 0 14px 30px rgba(17,29,66,.12); }
.case-card .ph { height: 168px; }
.case-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--navy); color: #fff; font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 4px; }
.case-card__body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.case-card__body h3 { font-size: 15.5px; margin-bottom: 8px; line-height: 1.6; }
.case-card__body p { font-size: 13px; color: var(--ink-soft); flex: 1; }
.case-card__price { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--line); display: flex; align-items: baseline; gap: 8px; }
.case-card__price .lbl { font-size: 11.5px; color: var(--muted); font-weight: 700; }
.case-card__price .v { font-family: var(--font-en); font-weight: 600; font-size: 26px; color: var(--red); line-height: 1; }
.case-card__price .u { font-size: 13px; font-weight: 700; color: var(--ink-soft); }

.scheme { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.scheme__row { display: grid; grid-template-columns: 1fr 56px 1fr 56px 1fr; align-items: center; gap: 0; }
.scheme__box { background: #fff; border: 2px solid var(--navy); border-radius: 10px; padding: 20px 16px; text-align: center; }
.scheme__box .ico { width: 34px; height: 34px; color: var(--navy); margin: 0 auto 8px; }
.scheme__box .t { font-size: 15px; font-weight: 900; color: var(--navy); }
.scheme__box .s { font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.scheme__box.is-red { border-color: var(--red); }
.scheme__box.is-red .ico, .scheme__box.is-red .t { color: var(--red); }
.scheme__arrow { text-align: center; font-family: var(--font-en); color: var(--red); font-size: 26px; font-weight: 600; }
.scheme__caption { margin-top: 22px; background: var(--bg-gray); border-left: 4px solid var(--red); border-radius: 6px; padding: 16px 20px; font-size: 13.5px; color: var(--ink-soft); }
.scheme__caption strong { color: var(--ink); }

.reason-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 38px; align-items: start; position: relative; z-index: 2; }
.reason-fig { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 16px; }
.reason-fig .ph { height: 230px; border-radius: 10px; box-shadow: 0 10px 26px rgba(17,29,66,.12); }
.reason-list { counter-reset: rsn; display: flex; flex-direction: column; gap: 14px; }
.reason-item { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px 24px 22px 20px; display: flex; gap: 18px; box-shadow: 0 4px 14px rgba(17,29,66,.05); }
.reason-item__no { flex: none; width: 56px; text-align: center; }
.reason-item__no .en { display: block; font-family: var(--font-en); font-size: 10px; letter-spacing: .2em; color: var(--red); }
.reason-item__no .n { display: block; font-family: var(--font-en); font-weight: 600; font-size: 32px; line-height: 1; color: var(--navy); }
.reason-item h3 { font-size: 16.5px; margin-bottom: 6px; }
.reason-item h3 .tag { font-size: 10.5px; font-weight: 700; color: #fff; background: var(--red); border-radius: 3px; padding: 2px 8px; margin-left: 8px; vertical-align: 2px; letter-spacing: .06em; }
.reason-item p { font-size: 13.5px; color: var(--ink-soft); }

.type-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; max-width: 780px; margin: 0 auto; position: relative; z-index: 2; }
.type-tags li { border: 1.5px solid var(--navy); color: var(--navy); background: #fff; border-radius: 999px; font-size: 12.5px; font-weight: 700; padding: 6px 16px; }
.type-tags__head { text-align: center; font-size: 13.5px; font-weight: 700; color: var(--ink-soft); margin: 34px 0 14px; position: relative; z-index: 2; }

.flow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; z-index: 2; }
.flow-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 26px 20px; text-align: center; position: relative; box-shadow: 0 4px 14px rgba(17,29,66,.05); }
.flow-card:not(:last-child)::after {
  content: "▶"; position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  color: var(--red); font-size: 13px; z-index: 2;
}
.flow-card__no { font-family: var(--font-en); font-weight: 600; font-size: 13px; letter-spacing: .2em; color: var(--red); }
.flow-card .ico { width: 40px; height: 40px; color: var(--navy); margin: 14px auto 12px; }
.flow-card h3 { font-size: 16px; margin-bottom: 6px; }
.flow-card p { font-size: 12.5px; color: var(--ink-soft); }
.flow-foot { text-align: center; margin-top: 26px; font-size: 13.5px; color: var(--ink-soft); position: relative; z-index: 2; }
.flow-foot strong { color: var(--red); font-size: 15px; }

.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; position: relative; z-index: 2; }
.voice-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 24px 26px; box-shadow: 0 4px 14px rgba(17,29,66,.05); }
.voice-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.voice-card__cat { background: var(--navy); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; flex: none; }
.voice-card__who { font-size: 12.5px; color: var(--muted); font-weight: 700; }
.voice-card h3 { font-size: 15.5px; margin-bottom: 8px; line-height: 1.6; }
.voice-card p { font-size: 13px; color: var(--ink-soft); }
.voice-card .stars { color: #f0a829; font-size: 13px; letter-spacing: 2px; margin-bottom: 6px; }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 2; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.faq-item summary { display: flex; align-items: center; gap: 14px; padding: 18px 22px; font-weight: 700; font-size: 15px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .q { width: 28px; height: 28px; flex: none; border-radius: 6px; background: var(--red); color: #fff; display: grid; place-items: center; font-family: var(--font-en); font-weight: 600; font-size: 14px; }
.faq-item summary .chev { margin-left: auto; flex: none; color: var(--muted); transition: transform .3s var(--ease); }
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--red); }
.faq-item .ans { display: flex; gap: 14px; padding: 0 22px 20px; }
.faq-item .ans .a { width: 28px; height: 28px; flex: none; border-radius: 6px; background: var(--navy); color: #fff; display: grid; place-items: center; font-family: var(--font-en); font-weight: 600; font-size: 14px; }
.faq-item .ans p { flex: 1; font-size: 13.5px; color: var(--ink-soft); }

.cta-final { text-align: center; }
.cta-final h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); font-weight: 900; }
.cta-final h2 .y { color: #ffd23e; }
.cta-final p { color: rgba(255,255,255,.85); margin-top: 10px; font-size: 14px; }
.cta-final__tel { margin: 26px auto 18px; display: inline-block; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); border-radius: 12px; padding: 18px 38px; color: #fff; }
.cta-final__tel .num { font-family: var(--font-en); font-weight: 600; font-size: 38px; line-height: 1.2; display: flex; align-items: center; gap: 12px; }
.cta-final__tel .num .ico { width: 26px; height: 26px; color: #ffd23e; }
.cta-final__tel .hours { font-size: 12px; opacity: .8; }
.cta-final__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 10px; }

.footer { background: var(--navy-deep); color: rgba(255,255,255,.65); padding-block: 36px 90px; font-size: 12.5px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 14px 30px; align-items: center; justify-content: space-between; }
.footer .lic { border: 1px solid rgba(255,255,255,.2); padding: 5px 14px; border-radius: 4px; }

.fixed-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 110;
  display: none; gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(17,29,66,.96); backdrop-filter: blur(8px);
}
.fixed-cta .btn { flex: 1; padding: 13px 8px; font-size: 13.5px; border-radius: 8px; }

.page-hero { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; }
.page-hero .container { padding-block: clamp(34px, 5vw, 54px); }
.breadcrumb { display: flex; gap: 8px; font-size: 12px; color: rgba(255,255,255,.65); margin-bottom: 10px; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(23px, 3.4vw, 32px); font-weight: 900; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 13.5px; margin-top: 8px; max-width: 640px; }
.prop-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.prop-tags span { font-size: 12px; font-weight: 700; border: 1px solid rgba(255,255,255,.35); border-radius: 4px; padding: 4px 12px; }
.prop-tags .hot { background: var(--red); border-color: var(--red); }

.report { padding-block: clamp(36px, 5vw, 60px); }
.report-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 22px; align-items: stretch; }
.report-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 26px rgba(17,29,66,.08); padding: 26px 28px; }
.report-card__label { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--navy); letter-spacing: .08em; margin-bottom: 14px; }
.report-card__label::before { content: ""; width: 9px; height: 9px; background: var(--red); border-radius: 2px; }
.result-price { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-en); font-weight: 600; color: var(--navy); }
.result-price .v { font-size: clamp(42px, 5.6vw, 58px); line-height: 1; }
.result-price .wave { font-size: 26px; color: var(--muted); }
.result-price .u { font-family: var(--font-body); font-weight: 700; font-size: 18px; color: var(--ink-soft); }
.result-meter { height: 10px; border-radius: 999px; background: var(--bg-gray); margin: 22px 0 8px; position: relative; }
.result-meter__fill { position: absolute; left: 18%; right: 16%; top: 0; bottom: 0; border-radius: 999px; background: linear-gradient(90deg, #4d9fe6, var(--navy)); }
.result-meter__scale { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--muted); }
.result-note { display: flex; gap: 9px; font-size: 12px; color: var(--ink-soft); background: var(--bg-gray); border-radius: 8px; padding: 12px 14px; margin-top: 18px; line-height: 1.75; }
.result-note .ico { width: 15px; height: 15px; flex: none; color: var(--red); margin-top: 3px; }

/* 相場目安と買取価格のギャップ訴求（価格レンジ直下） */
.gap-callout { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--red); border-radius: 12px; box-shadow: 0 10px 26px rgba(17,29,66,.08); padding: 24px 28px; margin-top: 22px; }
.gap-callout h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; line-height: 1.6; }
.gap-callout h3 .em { color: var(--red); }
.gap-callout p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.95; margin-bottom: 16px; }
.gap-callout__row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.gap-callout__row .btn { padding: 14px 26px; }
.gap-callout__micro { font-size: 11.5px; color: var(--muted); margin: 0; line-height: 1.7; }
@media (max-width: 600px) {
  .gap-callout { padding: 20px 18px; }
  .gap-callout h3 { font-size: 15.5px; }
  .gap-callout__row .btn { width: 100%; text-align: center; }
}

/* グラフの段階表示トグル */
.charts-more { text-align: center; margin: 28px 0 6px; }
.charts-more .btn { min-width: 300px; padding: 14px 28px; }
@media (max-width: 600px) {
  .charts-more { margin: 20px 16px 4px; }
  .charts-more .btn { width: 100%; min-width: 0; }
}
.basis-stat { display: flex; align-items: center; gap: 14px; padding: 12px 2px; border-bottom: 1px dashed var(--line); }
.basis-stat .v { font-family: var(--font-en); font-weight: 600; font-size: 26px; color: var(--navy); line-height: 1.1; flex: none; min-width: 92px; }
.basis-stat .v .u { font-family: var(--font-body); font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.basis-stat .l { font-size: 12.5px; color: var(--ink-soft); line-height: 1.7; }
.basis-bars { display: flex; align-items: flex-end; gap: 8px; height: 80px; margin-top: 18px; border-bottom: 1px solid var(--line); }
.basis-bars .b { flex: 1; background: var(--bg-gray); border-radius: 3px 3px 0 0; }
.basis-bars .b.hi { background: linear-gradient(180deg, #4d9fe6, var(--navy)); }

.chat-section { scroll-margin-top: 120px; }
.chat-wrap { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; box-shadow: 0 12px 30px rgba(17,29,66,.1); position: relative; z-index: 2; }
.chat-head { display: flex; align-items: center; gap: 13px; padding: 15px 20px; background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; }
.chat-head__av { width: 40px; height: 40px; border-radius: 8px; background: #fff; color: var(--navy); display: grid; place-items: center; flex: none; font-family: var(--font-en); font-weight: 600; font-size: 17px; position: relative; }
.chat-head__av::after { content: ""; position: absolute; right: -3px; bottom: -3px; width: 11px; height: 11px; border-radius: 50%; background: #35d07f; border: 2px solid var(--navy); }
.chat-head__t { font-weight: 700; font-size: 15px; }
.chat-head__s { font-size: 11px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; }
.chat-head__s .live { width: 6px; height: 6px; border-radius: 50%; background: #35d07f; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .25 } }
.chat-head .powered { margin-left: auto; font-size: 11px; color: rgba(255,255,255,.55); }
.chat-body { padding: 22px 20px; display: flex; flex-direction: column; gap: 16px; max-height: 440px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.msg { display: flex; gap: 10px; max-width: 88%; }
.msg__av { width: 32px; height: 32px; border-radius: 7px; flex: none; display: grid; place-items: center; font-family: var(--font-en); font-weight: 600; font-size: 13px; }
.msg--ai .msg__av { background: var(--navy); color: #fff; }
.msg--user { margin-left: auto; flex-direction: row-reverse; }
.msg--user .msg__av { background: var(--bg-gray); color: var(--ink-soft); }
.msg__bub { padding: 12px 16px; font-size: 13.5px; line-height: 1.85; border-radius: 10px; }
.msg--ai .msg__bub { background: var(--bg-gray); color: var(--ink); border-top-left-radius: 3px; }
.msg--user .msg__bub { background: var(--navy); color: #fff; border-top-right-radius: 3px; }
.msg__bub strong { color: var(--red); }
.msg--user .msg__bub strong { color: #ffd23e; }
.typing { display: inline-flex; gap: 4px; align-items: center; padding: 14px 16px; }
.typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s } .typing span:nth-child(3) { animation-delay: .4s }
@keyframes typing { 0%,60%,100% { transform: translateY(0); opacity: .4 } 30% { transform: translateY(-5px); opacity: 1 } }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 20px 16px; }
.chat-quick button { font-size: 12.5px; font-weight: 700; padding: 9px 15px; border-radius: 999px; border: 1.5px solid var(--red); color: var(--red); background: #fff; transition: all .2s; }
.chat-quick button:hover { background: var(--red); color: #fff; }
.chat-cta { margin: 0 20px 18px; border: 1.5px dashed var(--red); background: #fdf1ed; border-radius: 10px; padding: 18px 20px; }
.chat-cta h4 { font-size: 15.5px; margin-bottom: 5px; }
.chat-cta p { font-size: 12.5px; color: var(--ink-soft); margin-bottom: 14px; }
.chat-cta__row { display: flex; gap: 10px; flex-wrap: wrap; }
.chat-cta__row .btn { flex: 1; min-width: 170px; padding: 14px 18px; font-size: 14px; }
.chat-input { display: flex; gap: 10px; padding: 14px 16px; border-top: 1px solid var(--line); align-items: center; }
.chat-input input { flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 12px 18px; font-family: inherit; font-size: 14px; background: var(--bg-gray); }
.chat-input input:focus { outline: none; border-color: var(--navy); background: #fff; }
.chat-input .send { width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; flex: none; transition: background .2s, transform .2s; }
.chat-input .send:hover { background: var(--navy-soft); transform: translateY(-1px); }
.chat-note { text-align: center; margin: 16px auto 0; font-size: 11.5px; color: var(--muted); max-width: 660px; line-height: 1.8; position: relative; z-index: 2; }

.trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.trio-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 22px 20px; text-align: center; box-shadow: 0 4px 14px rgba(17,29,66,.05); }
.trio-card .ico { width: 30px; height: 30px; color: var(--navy); margin: 0 auto 10px; }
.trio-card h3 { font-size: 15px; margin-bottom: 6px; }
.trio-card p { font-size: 12.5px; color: var(--ink-soft); }

.doc { max-width: 820px; margin: 0 auto; padding-block: clamp(40px, 6vw, 64px); }
.doc > p { font-size: 14px; color: var(--ink-soft); }
.doc h2 { font-size: 17.5px; margin: 36px 0 10px; padding-left: 12px; border-left: 4px solid var(--red); }
.doc h2:first-of-type { margin-top: 0; }
.doc h2 + p, .doc ul + p, .doc p + p { margin-top: 8px; }
.doc ul { padding-left: 1.4em; list-style: disc; margin-top: 6px; }
.doc li { font-size: 14px; color: var(--ink-soft); margin-bottom: 4px; }
.doc .date { font-size: 12.5px; color: var(--muted); margin-top: 36px; text-align: right; }

.co-table { width: 100%; border-collapse: collapse; margin-top: 6px; background: #fff; }
.co-table th, .co-table td { border: 1px solid var(--line); padding: 14px 18px; font-size: 14px; text-align: left; vertical-align: top; line-height: 1.8; }
.co-table th { width: 190px; background: var(--bg-gray); color: var(--navy); font-weight: 700; }

.form-card { max-width: 680px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 26px rgba(17,29,66,.08); padding: 30px 32px; position: relative; z-index: 2; }
.form-row { margin-bottom: 18px; }
.form-row > label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 7px; }
.form-row .req { color: #fff; background: var(--red); font-size: 10.5px; border-radius: 3px; padding: 1px 8px; margin-left: 8px; vertical-align: 1px; }
.form-row .opt { color: var(--muted); background: var(--bg-gray); font-size: 10.5px; border-radius: 3px; padding: 1px 8px; margin-left: 8px; vertical-align: 1px; }
.input, .textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px;
  font-family: inherit; font-size: 15px; background: var(--bg-gray); transition: border-color .2s, box-shadow .2s;
}
.input:focus, .textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 3px rgba(27,43,94,.12); }
.textarea { min-height: 120px; resize: vertical; }
.agree { display: flex; gap: 9px; align-items: flex-start; font-size: 13px; color: var(--ink-soft); margin: 20px 0; line-height: 1.7; }
.agree input { margin-top: 4px; width: 16px; height: 16px; accent-color: var(--red); }
.agree a { color: var(--navy); text-decoration: underline; }

.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 24px; padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 12.5px; }
.footer__nav a { color: rgba(255,255,255,.72); transition: color .2s; }
.footer__nav a:hover { color: #ffd23e; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
#satei { scroll-margin-top: 120px; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

@media (max-width: 1000px) {
  .header__tel { display: none; }
  
  .hero__grid { display: block; min-height: 0; }
  .hero__fig {
    position: absolute; top: 0; left: 0; right: 0;
    height: clamp(330px, 44vw, 400px); min-height: 0; margin-inline: 0;
  }
  .hero__fig::after {
    display: block;
    background: linear-gradient(180deg,
      rgba(17,29,66,.28) 0%, rgba(17,29,66,.06) 38%,
      rgba(255,255,255,0) 58%, rgba(255,255,255,.92) 86%, #fff 100%);
  }
  .hero__copy { position: relative; z-index: 2; padding: 112px 0 30px; }
  .hero__eyebrow {
    align-self: flex-start; width: fit-content; 
    background: rgba(255,255,255,.93); color: var(--navy);
    padding: 6px 14px; border-radius: 4px; font-size: 12px;
    box-shadow: 0 4px 14px rgba(17,29,66,.16);
  }
  .hero__sub { margin-top: 26px; }
  .hero__sample { display: none; }
  .case-grid { grid-template-columns: 1fr 1fr; }
  .reason-wrap { grid-template-columns: 1fr; }
  .reason-fig { position: static; flex-direction: row; }
  .reason-fig .ph { height: 170px; flex: 1; }
  .flow-grid { grid-template-columns: 1fr 1fr; gap: 22px 18px; }
  .flow-card:not(:last-child)::after { display: none; }
}
@media (max-width: 720px) {
  .header__right { display: none; }
  .burger { display: grid; margin-left: auto; }
  
  .subnav { display: none; }
  .header.is-open .subnav {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy); box-shadow: 0 22px 44px rgba(17,29,66,.35);
    max-height: calc(100vh - 70px); overflow-y: auto;
  }
  .header.is-open .subnav__list { display: flex; flex-direction: column; padding: 4px 0 0; }
  .header.is-open .subnav__list a {
    text-align: left; padding: 14px 24px; font-size: 14px; flex: none;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }
  .header.is-open .subnav__list a + a::before { display: none; }
  .header.is-open .subnav__cta { display: flex; flex-direction: column; gap: 10px; padding-block: 16px 18px; }
  .subnav__tel { display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; font-family: var(--font-en); font-weight: 600; font-size: 22px; padding-top: 4px; }
  .subnav__tel .ico { width: 18px; height: 18px; color: #ffd23e; }
  .subnav__tel .hours { font-family: var(--font-body); font-size: 10.5px; font-weight: 400; color: rgba(255,255,255,.7); margin-left: 6px; }
  .achv__inner { grid-template-columns: 1fr 1fr; }
  .achv-item:nth-child(3)::before { display: none; }
  .flow-grid { grid-template-columns: 1fr; gap: 14px; }
  .worry-bridge p br { display: none; }
  .satei-step { flex-direction: column; align-items: stretch; gap: 8px; padding: 16px 16px; }
  .satei-step__no { display: flex; align-items: baseline; gap: 8px; width: auto; text-align: left; }
  .satei-row, .satei-row--3 { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .scheme__row { grid-template-columns: 1fr; gap: 8px; }
  .scheme__arrow { transform: rotate(90deg); font-size: 20px; }
  .voice-grid { grid-template-columns: 1fr; }
  .worry-grid { grid-template-columns: 1fr; }
  .reason-fig { flex-direction: column; }
  .fixed-cta { display: flex; }
  .footer { padding-bottom: 120px; }
}
@media (max-width: 900px) {
  .report-grid { grid-template-columns: 1fr; }
  .trio { grid-template-columns: 1fr; gap: 12px; }
}
@media (max-width: 480px) {
  
  .brand__tag { display: none; }
  .report-card { padding: 22px 18px; }
  .chat-body { padding: 18px 14px; max-height: 400px; }
  .chat-quick { padding-inline: 14px; }
  .chat-cta { margin-inline: 14px; }
  .chat-cta__row .btn { min-width: 100%; }
  .form-card { padding: 24px 18px; }
  .co-table th { width: 110px; padding: 12px 12px; }
  .co-table td { padding: 12px 12px; }
  .brand__logo-mark { height: 38px; }
  .brand__logo-text { height: 17px; }
  .btn--lg { width: 100%; padding: 18px 20px; font-size: 15.5px; }
  .hero__sample { left: 12px; right: 12px; max-width: none; }
  .satei-panel__head .t { font-size: 23px; }
  .cta-final__tel { display: block; padding: 14px 18px; }
  .cta-final__tel .num { font-size: 29px; justify-content: center; }
  .case-card__price .v { font-size: 23px; }
}

.brand__name { font-family: "Noto Sans JP", sans-serif; font-weight: 900; font-size: 25px; line-height: 1.1; letter-spacing: .06em; align-self: flex-start; white-space: nowrap; }
.brand__name .b-navy { color: var(--navy); }
.brand__name .b-orange { color: #e8961e; }
@media (max-width: 480px) { .brand__name { font-size: 21px; } }

.form-card--table { max-width: 820px; padding: 0; overflow: hidden; }
.frow { display: grid; grid-template-columns: 230px 1fr; border-bottom: 1px solid var(--line); }
.frow__label {
  background: #f7f8fc; padding: 20px 18px; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; gap: 10px; justify-content: space-between;
}
.frow--top .frow__label { align-items: flex-start; padding-top: 26px; }

.frow__label .req {
  flex: none; color: #fff; background: var(--red);
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  border-radius: 3px; padding: 2.5px 10px; line-height: 1.6;
}
.frow__field { padding: 16px 20px; display: flex; align-items: center; }
.frow__field .input, .frow__field .textarea { width: 100%; }
.form-card--table .select {
  width: 100%; max-width: 320px;
  border: 1px solid var(--line); border-radius: 6px; padding: 12px 38px 12px 14px;
  font-family: inherit; font-size: 15px; color: var(--ink); background-color: var(--bg-gray);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231d2433' stroke-width='2.4' stroke-linecap='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color .2s, box-shadow .2s;
}
.form-card--table .select:focus { outline: none; border-color: var(--navy); background-color: #fff; box-shadow: 0 0 0 3px rgba(27,43,94,.12); }
.form-card--table .select:disabled { opacity: .55; cursor: not-allowed; }

.input--req, .form-card--table .select--req { background-color: #fdf2f1; }
.input--req:focus, .form-card--table .select--req:focus { background-color: #fff; }
.form-foot { padding: 22px 24px 26px; }
.form-foot .agree { margin: 0 0 16px; }
@media (max-width: 720px) {
  .frow { grid-template-columns: 1fr; }
  .frow__label { padding: 11px 16px; justify-content: flex-start; }
  .frow--top .frow__label { padding-top: 11px; }
  .frow__field { padding: 12px 16px 16px; }
  .form-card--table .select { max-width: none; }
}
.is-hidden { display: none !important; }

.input-suffix { display: flex; align-items: center; gap: 8px; }
.input-suffix .input { max-width: 200px; }
.input-suffix__u { font-size: 13px; font-weight: 700; color: var(--ink-soft); white-space: nowrap; }

.yield-card { max-width: 880px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 26px rgba(17,29,66,.08); padding: 28px 30px; position: relative; z-index: 2; }
.yield-card__head { text-align: center; margin-bottom: 22px; }
.yield-card__head .en { font-family: var(--font-en); font-weight: 500; font-size: 12px; letter-spacing: .3em; color: var(--red); text-transform: uppercase; }
.yield-card__head h2 { font-size: clamp(19px, 2.6vw, 24px); font-weight: 900; margin: 6px 0 8px; }
.yield-card__head p { font-size: 13px; color: var(--ink-soft); max-width: 660px; margin: 0 auto; }
.yield-card__calc { display: flex; align-items: flex-end; justify-content: center; gap: 14px; flex-wrap: wrap; }
.yield-field label { display: block; font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-bottom: 6px; }
.yield-field .input-suffix .input { max-width: 150px; }
.yield-op { font-size: 22px; font-weight: 700; color: var(--muted); padding-bottom: 9px; }
.yield-out { background: var(--navy); color: #fff; border-radius: 10px; padding: 11px 22px; text-align: center; align-self: stretch; display: flex; flex-direction: column; justify-content: center; }
.yield-out .lbl { display: block; font-size: 11px; opacity: .85; letter-spacing: .04em; }
.yield-out .val { font-family: var(--font-en); font-weight: 600; font-size: 30px; line-height: 1.25; }
.yield-out .val .u { font-family: var(--font-body); font-size: 14px; font-weight: 700; margin-left: 4px; }
.yield-note { text-align: center; font-size: 11.5px; color: var(--muted); margin-top: 18px; line-height: 1.7; }
@media (max-width: 600px) {
  .yield-card { padding: 22px 18px; }
  .yield-card__calc { flex-direction: column; align-items: stretch; gap: 8px; }
  .yield-op { text-align: center; padding: 2px 0; }
  .yield-field .input-suffix .input { max-width: none; }
}

.satei-loading { display: none; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 700; color: var(--navy); padding: 30px 4px; }
.satei-loading .spin { width: 20px; height: 20px; border: 3px solid var(--line); border-top-color: var(--navy); border-radius: 50%; animation: satei-spin .8s linear infinite; flex: none; }
@keyframes satei-spin { to { transform: rotate(360deg); } }
.satei-pending .satei-loading { display: flex; }
.satei-pending .result-price,
.satei-pending .result-meter,
.satei-pending .result-meter__scale,
.satei-pending .result-note,
.satei-pending .basis-stat,
.satei-pending .basis-bars,
.satei-pending .basis-bars__cap { display: none; }

.basis-bars__cap { display: flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 11px; color: var(--muted); line-height: 1.5; }
.basis-bars__cap .key { width: 11px; height: 11px; border-radius: 2px; background: linear-gradient(180deg, #4d9fe6, var(--navy)); flex: none; }
.basis-bars__cap strong { color: var(--ink-soft); font-weight: 700; }

.basis-axis { display: flex; justify-content: space-between; gap: 8px; margin-top: 7px; font-size: 10.5px; color: var(--muted); }
.basis-axis span:nth-child(2) { color: var(--ink-soft); font-weight: 700; }
.satei-pending .basis-axis { display: none; }

.data-notice { background: #fff7ed; border: 1px solid #f3c98b; border-radius: 10px; padding: 16px 20px; margin-bottom: 22px; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.data-notice.is-strong { background: #fdf1ed; border-color: var(--red); }
.data-notice__body { display: flex; gap: 10px; align-items: flex-start; flex: 1; min-width: 240px; }
.data-notice .ico { width: 18px; height: 18px; flex: none; color: #c9842a; margin-top: 2px; }
.data-notice.is-strong .ico { color: var(--red); }
.data-notice p { font-size: 13px; color: var(--ink-soft); line-height: 1.75; margin: 0; }
.data-notice .btn { flex: none; padding: 12px 20px; font-size: 14px; }
.satei-pending .data-notice { display: none !important; }
@media (max-width: 600px) { .data-notice .btn { width: 100%; } }

.scatter-section { background: var(--bg-gray); }
.scatter-wrap { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 26px rgba(17,29,66,.08); padding: 20px 22px 16px; position: relative; z-index: 2; }
.scatter-wrap svg { width: 100%; height: auto; display: block; }
.scatter-legend { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 12px; font-size: 12px; color: var(--ink-soft); }
.scatter-legend span { display: inline-flex; align-items: center; gap: 6px; }
.scatter-legend i { width: 14px; height: 14px; border-radius: 3px; display: inline-block; flex: none; }
.scatter-legend .lg-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(27,43,94,.45); }
.scatter-legend .lg-band { background: rgba(207,48,35,.12); border: 1px solid rgba(207,48,35,.4); }
.scatter-legend .lg-subj { width: 12px; height: 12px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 3px rgba(207,48,35,.2); }

.sc-pt { fill: rgba(27,43,94,.42); }
.sc-grid { stroke: #e8ebf2; stroke-width: 1; }
.sc-axis { stroke: #c3cad8; stroke-width: 1; }
.sc-tick { fill: var(--muted); font-size: 11px; font-family: var(--font-en); }
.sc-atitle { fill: var(--ink-soft); font-size: 12px; font-weight: 700; }
.sc-band { fill: rgba(207,48,35,.09); }
.sc-median { stroke: var(--red); stroke-width: 1.4; stroke-dasharray: 5 4; opacity: .7; }
.sc-subj { fill: var(--red); }
.sc-subj-ring { fill: none; stroke: var(--red); stroke-width: 2; opacity: .35; }
.sc-subj-label { fill: var(--red); font-size: 12px; font-weight: 700; }
.sc-subjbox { fill: rgba(207,48,35,.14); stroke: var(--red); stroke-width: 1.4; stroke-dasharray: 4 3; }
.lt-fill { fill: rgba(27,43,94,.07); }
.lt-line { fill: none; stroke: var(--navy); stroke-width: 2.4; stroke-linejoin: round; stroke-linecap: round; }
.lt-dot { fill: var(--navy); stroke: #fff; stroke-width: 1.6; }
.lt-val { fill: var(--ink-soft); font-size: 11px; font-weight: 700; }
.scatter-wrap svg { cursor: crosshair; user-select: none; -webkit-user-select: none; -webkit-touch-callout: none; touch-action: manipulation; }
.sc-cross { stroke: #8a96ad; stroke-width: 1; stroke-dasharray: 3 3; pointer-events: none; }
.sc-cross-dot { fill: var(--navy); stroke: #fff; stroke-width: 1.5; pointer-events: none; }
.sc-tip-bg { fill: rgba(20,28,46,.94); pointer-events: none; }
.sc-tip-text { fill: #fff; font-size: 12px; font-weight: 700; pointer-events: none; }

.result-na { font-size: 20px; font-weight: 900; color: var(--navy); line-height: 1.5; display: block; padding: 6px 0 4px; }
