:root {
  --ink: #15201c;
  --ink-2: #34463f;
  --muted: #667085;
  --line: #dfe3ea;
  --line-dark: #cbd8d1;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --green: #0f6b4d;
  --green-dark: #0a4d38;
  --green-soft: #eaf4ef;
  --navy: #164c3a;
  --cream: #f5f1e8;
  --gold: #f0d785;
  --signal: #d96b4b;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input,
select { font: inherit; }
button,
summary,
a { -webkit-tap-highlight-color: transparent; }
button,
a { cursor: pointer; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(15, 107, 77, .28);
  outline-offset: 3px;
}

.landing-shell { min-height: 100vh; }
.section-pad { padding: 120px max(5.4vw, calc((100vw - 1320px) / 2)); }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: 76px;
  padding: 0 max(3.2vw, 24px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(11, 18, 32, .08);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 44px;
}

.brand-logo {
  display: block;
  width: 154px;
  height: auto;
}

.site-header nav { display: flex; align-items: center; gap: 34px; }
.site-header nav a,
.header-link {
  min-width: 44px;
  min-height: 44px;
  padding-inline: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #3f4c5f;
  transition: color .2s ease;
}
.site-header nav a:hover,
.header-link:hover { color: var(--green); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 22px; }
.header-demo { border: 0; min-height: 44px; padding: 0 20px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: #fff; font-size: 13px; font-weight: 700; transition: background .2s ease, transform .2s ease; }
.header-demo:hover { background: var(--green-dark); transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: 900px;
  padding: 144px max(4.2vw, 30px) 100px;
  /* 2026-08-09: 右カラムは製品スクショをやめてオリジナルのビジュアルにしたので、
     幅の制約が緩い。左を厚め（1.35fr）に取ってh1を66pxまで戻す。
     ホーム末尾の声の帯だけ全幅。 */
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(40px, 4vw, 64px) 4vw;
  align-items: center;
  background:
    radial-gradient(circle at 74% 48%, rgba(15, 107, 77, .06), transparent 27%),
    linear-gradient(#fff, #fefefe);
  overflow: hidden;
}

.hero-copy { position: relative; z-index: 4; max-width: 1180px; animation: rise-in .45s ease-out both; }
.announcement {
  width: max-content;
  max-width: 100%;
  margin: 0 0 26px;
  padding: 8px 13px 8px 8px;
  border: 1px solid #d8deea;
  border-radius: 999px;
  color: #4d596c;
  font-size: 12px;
  font-weight: 600;
}
.announcement span { margin-right: 9px; padding: 5px 8px; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: 10px; letter-spacing: .08em; }
.hero h1 { margin: 0; font-size: clamp(58px, 4.8vw, 70px); line-height: 1.12; letter-spacing: -.075em; font-weight: 720; text-wrap: balance; }
.hero h1 > span { white-space: nowrap; }
/* 折返しを許す幅でも「AI Agent」「1週間」は割らない（狭い画面で「で1／週間」に
   割れて読めなくなるため）。em は装飾でなく分割禁止のマーカー。 */
.hero h1 .nw { font-style: normal; white-space: nowrap; }
.hero-lead { margin: 30px 0 0; max-width: 44em; color: #5e6878; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.8; letter-spacing: .005em; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button {
  min-height: 56px;
  padding: 0 26px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 16px;
  font-weight: 720;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px rgba(10, 77, 56, .18); }
.button-primary:hover { background: var(--green-dark); box-shadow: 0 16px 34px rgba(10, 77, 56, .24); }
.button-quiet { background: #f0f1f3; color: var(--ink); }
.button-quiet:hover { background: #e8eaee; }
.hero-note { margin: 10px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 0 18px; color: #68758a; font-size: 13px; letter-spacing: .04em; }
.hero-note a { min-height: 44px; display: inline-flex; align-items: center; color: var(--green); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero-note a:visited { color: #365f52; }

/* 右カラム: 一人ひとりの音声が別トラックで、同時に走っている様子。
   製品スクショではなくCSSだけで描く（外部画像ゼロ・v6準拠）。 */
.hero-visual { position: relative; z-index: 3; grid-column: 2; width: 100%; animation: rise-in .52s .05s ease-out both; }
.vw-tracks { display: grid; gap: clamp(12px, 1.2vw, 18px); }
.vw-row { display: grid; grid-template-columns: 34px minmax(0, 1fr) auto; align-items: center; gap: 13px; }
.vw-row img { width: 34px; height: 34px; border-radius: 50%; background: #fff; padding: 2px; box-shadow: 0 1px 4px rgba(21, 32, 28, .09); }
.vw-bars { display: flex; align-items: center; gap: 3px; height: 34px; }
/* JSが動かなかったときも空白にしない（平らな波形として見せる） */
.vw-bars:empty { align-self: center; height: 7px; border-radius: 4px; background: linear-gradient(90deg, rgba(15, 107, 77, .22), rgba(15, 107, 77, .06)); }
/* --amp は1本ごとの振幅上限。話している所と間（ま）の差がないと
   イコライザーに見えてしまうので、JS側で包絡線を入れている。 */
.vw-bars i { --amp: 1; flex: 1; min-width: 0; height: 100%; border-radius: 2px; background: var(--green); transform-origin: center; animation: vwPulse 1.5s ease-in-out infinite; }
@keyframes vwPulse {
  0%, 100% { transform: scaleY(calc(var(--amp) * .3)); }
  50% { transform: scaleY(var(--amp)); }
}
.vw-when { color: var(--green); font-size: 10px; font-weight: 700; letter-spacing: .05em; white-space: nowrap; opacity: .82; }
.vw-more { display: grid; grid-template-columns: 34px minmax(0, 1fr); align-items: center; gap: 13px; margin-top: 6px; color: var(--ink-2); font-size: 12px; font-weight: 700; }
.vw-more b { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(15, 107, 77, .09); color: var(--green); font-size: 10px; }
@media (prefers-reduced-motion: reduce) {
  .vw-bars i { animation: none; transform: scaleY(.62); }
}

/* ホームの締め: 誰の声がその画面に入るのかを、顔と原発言で見せる */
.hero-voices { position: relative; z-index: 4; grid-column: 1 / -1; width: 100%; max-width: 1180px; }
.hero-voices-label {
  margin: clamp(30px, 2.8vw, 42px) 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.hero-voices-label small { margin-left: 12px; color: #8e98a5; font-size: 12px; font-weight: 500; letter-spacing: .02em; }
.hero-voices .voice-strip { margin-top: 20px; }
.hero-voices .voice-strip p { background: #fff; }

h2, h3 { text-wrap: balance; }
.section-kicker { margin: 0 0 25px; color: var(--green); font-size: 12px; font-weight: 750; letter-spacing: .16em; }
.section-kicker.light { color: #d7eadf; }

.section-heading { display: grid; grid-template-columns: 1fr minmax(280px, .48fr); align-items: end; gap: 6vw; }
.section-heading h2 { margin: 0; font-size: clamp(46px, 4.7vw, 72px); line-height: 1.18; letter-spacing: -.058em; font-weight: 680; }
.section-heading > p { margin: 0 0 8px; color: #687385; font-size: 15px; line-height: 1.8; max-width: 430px; }

.report-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 6vw; align-items: center; background: var(--navy); color: #fff; }
.report-copy h2 { margin: 0; font-size: clamp(50px, 5vw, 76px); line-height: 1.15; letter-spacing: -.06em; font-weight: 670; }
.report-copy > p:not(.section-kicker) { margin: 30px 0 38px; max-width: 500px; color: #a7b3c4; font-size: 15px; line-height: 1.9; }
.report-copy ul { margin: 0; padding: 0; border-top: 1px solid var(--line-dark); list-style: none; }
.report-copy li { padding: 18px 0; border-bottom: 1px solid var(--line-dark); display: grid; grid-template-columns: 36px 1fr; color: #d7deea; font-size: 12px; line-height: 1.55; }
.report-copy li span { color: #708097; font-size: 9px; }

/* Real CoeSignal product surfaces */
.product-screen-meta {
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid #e4e7ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  color: #7b8492;
  font-size: 9px;
  letter-spacing: .03em;
}
.product-screen-meta span { display: inline-flex; align-items: center; gap: 7px; }
.product-screen-meta i { width: 7px; height: 7px; border-radius: 50%; background: #2aa568; box-shadow: 0 0 0 3px rgba(42, 165, 104, .12); }
.product-screen-meta b { color: #303a49; font-size: 10px; font-weight: 700; }


.usecase-section { background: #fff; }
.usecase-list { margin-top: 75px; border-top: 1px solid #cfd5de; }
.usecase-list article { min-height: 150px; padding: 25px 0; border-bottom: 1px solid #cfd5de; display: grid; grid-template-columns: 42px 1.05fr 1.25fr 1.15fr 44px; align-items: center; gap: 3vw; }
.use-index { color: #758093; font-size: 12px; }
.use-title small { color: var(--green); font-size: 10px; font-weight: 750; letter-spacing: .1em; }
.use-title h3 { margin: 8px 0 0; font-size: 24px; letter-spacing: -.035em; }
.use-body { margin: 0; color: #566275; font-size: 14px; line-height: 1.75; }
.usecase-list blockquote { margin: 0; padding: 15px 17px; border-radius: 8px; background: var(--soft); color: #3f4b5d; font-size: 12px; line-height: 1.65; }
.usecase-list article > a { width: 44px; height: 44px; border: 1px solid #cdd3dd; border-radius: 50%; display: grid; place-items: center; transition: color .2s ease, border-color .2s ease, transform .2s ease; }
.usecase-list article > a:hover { color: var(--green); border-color: var(--green); transform: translateX(3px); }

.faq-section { display: grid; grid-template-columns: .65fr 1.35fr; gap: 8vw; }
.faq-heading h2 { margin: 0; font-size: clamp(50px, 4.8vw, 72px); letter-spacing: -.06em; font-weight: 680; }
.faq-heading > p:last-child { margin: 21px 0 0; color: #657183; font-size: 14px; }
.faq-list { border-top: 1px solid #cfd5de; }
.faq-list details { border-bottom: 1px solid #cfd5de; }
.faq-list summary { min-height: 76px; padding: 17px 0; list-style: none; display: grid; grid-template-columns: 42px 1fr 24px; align-items: center; gap: 8px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary > span { color: #939baa; font-size: 9px; }
.faq-list summary b { font-size: 15px; font-weight: 650; }
.faq-list summary i { position: relative; width: 18px; height: 18px; }
.faq-list summary i::before,
.faq-list summary i::after { content: ""; position: absolute; left: 1px; right: 1px; top: 8px; height: 1px; background: var(--ink); }
.faq-list summary i::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-list details[open] summary i::after { transform: rotate(0); }
.faq-list details > p { margin: -4px 32px 24px 50px; max-width: 720px; color: #566275; font-size: 14px; line-height: 1.9; }

.contact-section { display: grid; grid-template-columns: minmax(0, 1fr) 460px; gap: 5vw; align-items: center; background: var(--green); color: #fff; }
.contact-copy h2 { margin: 0; font-size: clamp(50px, 4.5vw, 68px); line-height: 1.16; letter-spacing: -.06em; font-weight: 670; text-wrap: balance; }
.contact-copy > p:not(.section-kicker) { margin: 27px 0 30px; color: #d8e9e1; font-size: 15px; line-height: 1.85; }
.contact-copy > small { display: block; margin-top: 14px; color: #d8e9e1; font-size: 12px; }
.contact-form { padding: 29px; background: #fff; color: var(--ink); border-radius: 13px; box-shadow: 0 34px 80px rgba(4, 14, 50, .25); }
.form-title { margin-bottom: 22px; padding-bottom: 17px; border-bottom: 1px solid #dfe3e9; display: flex; align-items: center; justify-content: space-between; }
.form-title span { font-size: 16px; font-weight: 700; }
.form-title small { color: #707b8c; font-size: 12px; }
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: #5d697b; font-size: 12px; }
.contact-form input,
.contact-form select,
.contact-form textarea { width: 100%; min-height: 46px; padding: 0 12px; border: 1px solid #ced4dd; border-radius: 7px; background: #fff; color: var(--ink); font-size: 14px; }
.contact-form textarea { min-height: 82px; padding-top: 11px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green); outline: 2px solid rgba(15, 107, 77, .12); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.contact-form > button { width: 100%; min-height: 48px; padding: 0 16px; border: 0; border-radius: 7px; display: flex; align-items: center; justify-content: space-between; background: var(--ink); color: #fff; font-size: 14px; font-weight: 700; }
.contact-form > button:disabled { cursor: wait; opacity: .65; }
.contact-form > p { margin: 10px 0 0; color: #707b8c; font-size: 11px; text-align: center; }
.contact-form > p.is-success { color: #0f6b4d; font-weight: 650; }
.contact-form > p.is-error { color: #b42318; font-weight: 650; }

footer { min-height: 106px; padding: 0 max(4.2vw, 30px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; border-top: 1px solid #dce5df; background: #f5f1e8; color: var(--ink); }
.footer-brand {
  min-height: 44px;
  padding: 3px 9px;
  border-radius: 8px;
  background: #f4f1e9;
}
.footer-brand .brand-logo { width: 142px; }
footer > p { color: #76847d; font-size: 11px; letter-spacing: .04em; }
footer > div { justify-self: end; display: flex; gap: 23px; color: #66766e; font-size: 11px; }
footer > div a { min-width: 44px; min-height: 44px; padding-inline: 4px; display: inline-flex; align-items: center; }
footer a:hover { color: var(--green); }

.demo-nudge { position: fixed; z-index: 100; right: 18px; bottom: 96px; width: min(440px, calc(100vw - 36px)); min-height: 72px; padding: 12px 15px; border: 1px solid #d8dde6; border-radius: 12px; display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 13px; background: rgba(255, 255, 255, .97); color: var(--ink); box-shadow: 0 20px 55px rgba(20, 36, 65, .2); backdrop-filter: blur(13px); animation: nudge-in .3s ease-out both; }
.nudge-brand-mark { width: 32px; height: 32px; }
.nudge-close { position: absolute; right: 4px; top: 4px; width: 32px; height: 32px; padding: 0; border: 0; display: grid; place-items: center; background: transparent; color: #697485; font-size: 17px; }
.demo-nudge > div { display: flex; flex-direction: column; gap: 3px; }
.demo-nudge small { color: #667184; font-size: 11px; }
.demo-nudge b { font-size: 12px; }
.demo-nudge > a { min-height: 44px; padding: 0 13px; border-radius: 7px; display: flex; align-items: center; gap: 9px; background: var(--green); color: #fff; font-size: 11px; font-weight: 700; }
@keyframes rise-in { from { opacity: .55; transform: translateY(10px); } }
@keyframes nudge-in { from { opacity: 0; transform: translateY(12px); } }

@media (max-width: 1180px) {
  .site-header nav { gap: 22px; }
  .report-section { grid-template-columns: .68fr 1.32fr; gap: 4vw; }
  .contact-section { grid-template-columns: 1fr 430px; gap: 5vw; }
}

@media (max-width: 900px) {
  .section-pad { padding: 100px 28px; }
  .site-header { grid-template-columns: 1fr auto; padding: 0 22px; }
  .site-header nav,
  .header-link { display: none; }
  .header-actions { gap: 0; }
  .hero { min-height: 0; padding: 120px 28px 80px; grid-template-columns: 1fr; gap: clamp(36px, 5vw, 54px); }
  /* 1カラムに畳むので、右カラム固定と全幅指定を解除する */
  .hero-visual { grid-column: 1; }
  .hero-voices { grid-column: 1; }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(54px, 10vw, 76px); }
  .hero h1 > span { white-space: normal; }
  .section-heading { grid-template-columns: 1fr; align-items: start; gap: 24px; }
  .report-section,
  .faq-section,
  .contact-section { grid-template-columns: 1fr; gap: 60px; }
  .usecase-list article { grid-template-columns: 34px 1fr 44px; gap: 20px; }
  .use-body,
  .usecase-list blockquote { grid-column: 2; }
  .usecase-list article > a { grid-column: 3; grid-row: 1 / 3; }
  .contact-form { width: min(100%, 560px); }
  footer { grid-template-columns: 1fr auto; }
  footer > p { display: none; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 68px; }
  .section-pad { padding: 82px 20px; }
  .site-header { height: 68px; padding: 0 16px; }
  .brand-logo { width: 138px; }
  .header-demo { min-height: 44px; padding: 0 14px; font-size: 11px; }
  .hero { padding: 106px 20px 62px; gap: clamp(32px, 8vw, 44px); }
  .announcement { margin-bottom: 20px; font-size: 11px; white-space: nowrap; }
  .hero h1 { font-size: clamp(45px, 13vw, 62px); line-height: 1.12; letter-spacing: -.065em; }
  .hero-lead { margin-top: 23px; font-size: 16.5px; line-height: 1.8; }
  .hero-actions { flex-direction: column; margin-top: 28px; }
  .button { width: 100%; min-height: 54px; font-size: 15.5px; }
  .hero-note { font-size: 12.5px; }
  .section-heading h2,
  .report-copy h2,
  .faq-heading h2,
  .contact-copy h2 { font-size: 42px; }
  .section-heading h2 { font-size: 36px; }
  .contact-copy h2 { font-size: 34px; letter-spacing: -.075em; }
  .report-section { gap: 44px; }
  .usecase-list { margin-top: 48px; }
  .usecase-list article { padding: 24px 0; grid-template-columns: 30px 1fr 40px; gap: 14px; }
  .use-title h3 { font-size: 21px; }
  .use-body { font-size: 13px; }
  .usecase-list blockquote { display: none; }
  .usecase-list article > a { width: 44px; height: 44px; }
  .faq-list summary { grid-template-columns: 30px 1fr 20px; }
  .faq-list summary b { font-size: 13px; }
  .faq-list details > p { margin-left: 38px; margin-right: 0; font-size: 14px; }
  .contact-form { padding: 22px 17px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  footer { min-height: 170px; padding: 28px 20px max(28px, env(safe-area-inset-bottom)); grid-template-columns: 1fr; gap: 18px; }
  footer > div { justify-self: start; flex-wrap: wrap; gap: 6px 20px; }
  footer > div span { flex-basis: 100%; margin-top: 8px; }
  .demo-nudge { bottom: max(10px, env(safe-area-inset-bottom)); right: 10px; width: calc(100vw - 20px); grid-template-columns: 28px 1fr auto; padding: 10px; }
  .demo-nudge b { font-size: 12px; }
  .demo-nudge > a { min-height: 44px; padding: 0 10px; font-size: 11px; }
}

@media (max-width: 900px) {
}

@media (max-width: 620px) {
  .product-screen-meta { min-height: 36px; padding: 0 10px; font-size: 8px; }
  .product-screen-meta b { font-size: 9px; }
}

/* Human-led landing page */
.hero {
  /* 2026-08-09: 縦積み化で高さはコンテンツ主導になった（見出し〜証拠帯までが
     ファーストビュー、製品画面と声の帯はその下に続く）。min-heightは効かせない。 */
  min-height: 0;
  padding-top: 138px;
  background:
    radial-gradient(circle at 74% 24%, rgba(240, 215, 133, .58), transparent 19%),
    radial-gradient(circle at 8% 86%, rgba(15, 107, 77, .12), transparent 28%),
    linear-gradient(128deg, #fbf9f4 0 49%, #edf5f1 49% 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 0 50%;
  opacity: .27;
  background-image:
    linear-gradient(rgba(15, 107, 77, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 107, 77, .09) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
  pointer-events: none;
}

/* 2026-08-09: 2カラム時代の列幅制限。縦積みではh1が折り返してしまうので解除し、
   読みやすさの制御は .hero-lead 側の max-width（44em）に任せる。 */
.hero-copy { max-width: 1180px; }
.announcement {
  border-color: rgba(15, 107, 77, .2);
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
}
.hero h1 {
  max-width: 760px;
  color: #15201c;
  font-size: clamp(58px, 4.7vw, 72px);
  font-weight: 900;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-lead { max-width: 40em; color: #4f5d57; }
.button { border-radius: 4px; }
.button-primary { box-shadow: 0 14px 34px rgba(15, 107, 77, .2); }
.button-primary:hover { box-shadow: 0 17px 38px rgba(15, 107, 77, .26); }
.button-quiet { border: 1px solid rgba(21, 32, 28, .1); background: rgba(255, 255, 255, .62); }

.avatar-stack { display: flex; padding-left: 7px; }
.avatar-stack img {
  width: 32px;
  height: 32px;
  margin-left: -7px;
  border: 2px solid #10251f;
  border-radius: 50%;
  background: var(--cream);
}

.report-section {
  grid-template-columns: minmax(620px, 1.32fr) minmax(330px, .68fr);
  gap: 5vw;
  background:
    radial-gradient(circle at 92% 10%, rgba(240, 215, 133, .38), transparent 24%),
    linear-gradient(145deg, #f7f3e9, #edf4ef);
  color: var(--ink);
}
.report-copy .section-kicker.light { color: var(--green); }
.report-copy > p:not(.section-kicker) { color: #53645c; }
.report-copy ul { border-color: #cbd8d1; }
.report-copy li {
  border-color: #cbd8d1;
  color: #30423a;
  font-size: 13px;
}
.report-copy li span { color: #75837c; }
.report-copy {
  align-self: center;
  grid-column: 2;
  grid-row: 1;
}
.analysis-showcase {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  color: var(--ink);
  filter: drop-shadow(0 34px 60px rgba(31, 56, 45, .16));
}
.analysis-product-bar {
  min-height: 48px;
  padding: 0 17px;
  border-bottom: 1px solid #dde2de;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  font-size: 9px;
  color: #75807b;
}
.analysis-product-bar span { display: inline-flex; align-items: center; gap: 8px; }
.analysis-product-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2aa568;
  box-shadow: 0 0 0 4px rgba(42, 165, 104, .12);
}
.analysis-product-bar b { color: var(--green); letter-spacing: .04em; }
.analysis-frame {
  position: relative;
  height: clamp(570px, 42vw, 680px);
  overflow: hidden;
  background: #f5f3ed;
}
.analysis-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.analysis-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 34%, rgba(15, 55, 40, .05) 62%, rgba(15, 55, 40, .16));
  pointer-events: none;
}
.analysis-screen > img {
  width: 100%;
  height: calc(100% + 24px);
  object-fit: cover;
  object-position: top left;
  transform: translateY(-24px);
}
.analysis-hotspot {
  position: absolute;
  z-index: 3;
  left: 18%;
  top: 54%;
  width: 250px;
  min-height: 108px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 107, 77, .24);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255, 255, 255, .97);
  color: var(--ink);
  text-align: left;
  box-shadow:
    0 0 0 6px rgba(240, 215, 133, .38),
    0 16px 38px rgba(15, 38, 30, .2);
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.analysis-hotspot:hover,
.analysis-hotspot:focus-visible {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 9px rgba(240, 215, 133, .48),
    0 20px 44px rgba(15, 38, 30, .26);
}
.analysis-hotspot span {
  color: var(--green);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .12em;
}
.analysis-hotspot b { margin-top: 7px; font-size: 15px; }
.analysis-hotspot em {
  margin-top: auto;
  color: #60706a;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}
.analysis-drawer {
  position: absolute;
  z-index: 6;
  inset: 0 0 0 auto;
  width: 43%;
  padding: clamp(28px, 2.8vw, 44px);
  border-left: 1px solid rgba(15, 107, 77, .16);
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(255, 255, 255, .92), rgba(255, 255, 255, .92)),
    var(--cream);
  box-shadow: -20px 0 55px rgba(20, 58, 42, .16);
  transform: translateX(102%);
  opacity: 0;
  overflow-y: auto;
  transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .25s ease-out;
}
.analysis-showcase[data-drawer-open="true"] .analysis-drawer {
  transform: translateX(0);
  opacity: 1;
}
.analysis-drawer-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  border: 1px solid #d8dedb;
  display: grid;
  place-items: center;
  background: #fff;
  color: #5e6a65;
  font-size: 18px;
}
.analysis-drawer-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}
.analysis-drawer h3 {
  margin: 0;
  font-size: clamp(25px, 2.05vw, 34px);
  line-height: 1.35;
  letter-spacing: -.055em;
}
.analysis-evidence-count {
  margin: 28px 0 24px;
  padding: 18px 0;
  border-top: 1px solid #dce1de;
  border-bottom: 1px solid #dce1de;
  display: flex;
  align-items: center;
  gap: 16px;
}
.analysis-evidence-count .avatar-stack img { border-color: #fff; }
.analysis-evidence-count p { margin: 0; display: flex; flex-direction: column; }
.analysis-evidence-count strong { color: var(--green); font-size: 16px; font-variant-numeric: tabular-nums; }
.analysis-evidence-count span { color: #7b8781; font-size: 8px; }
.analysis-drawer blockquote {
  margin: 0;
  font-size: clamp(15px, 1.45vw, 22px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -.015em;
}
.analysis-source {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #dce1de;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 11px;
}
.analysis-source > img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
}
.analysis-source p { margin: 0; display: flex; flex-direction: column; }
.analysis-source b { font-size: 10px; }
.analysis-source p span { color: #7b8781; font-size: 8px; }
.analysis-source button {
  min-width: 74px;
  min-height: 44px;
  border: 0;
  background: var(--green);
  color: #fff;
  font-size: 10px;
}
.analysis-source button span { margin-left: 5px; opacity: .68; font-variant-numeric: tabular-nums; }
.analysis-note {
  margin: auto 0 0;
  padding-top: 18px;
  color: #7a8680;
  font-size: 9px;
  line-height: 1.7;
}
.analysis-proof-note {
  margin: 10px 0 0;
  color: #75847c;
  font-size: 8px;
  text-align: right;
}

.section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 5vw;
}
.section-heading h2 {
  font-size: clamp(44px, 4.2vw, 62px);
  line-height: 1.22;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.section-heading > p {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.85;
}
.report-copy h2 {
  max-width: 8.2em;
  font-size: clamp(44px, 3.8vw, 56px);
  line-height: 1.24;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.report-copy h2 span {
  display: block;
  white-space: nowrap;
}
.contact-copy h2 {
  font-size: clamp(44px, 4vw, 60px);
  line-height: 1.22;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.faq-heading h2 {
  font-size: clamp(46px, 4.2vw, 62px);
  letter-spacing: -.045em;
}
.usecase-section { background: #fbfaf6; }
.usecase-list article {
  grid-template-columns: 42px 1.1fr .95fr 1.65fr 44px;
  transition: background .22s ease-out, padding .22s ease-out;
}
.usecase-list article:hover {
  padding-inline: 18px;
  background: #fff;
}
.usecase-list blockquote {
  min-height: 76px;
  padding: 13px 15px;
  border-radius: 0;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  color: #26352f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.8;
}
.usecase-list blockquote img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
}
.usecase-proof {
  min-width: 0;
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 10px;
  align-items: stretch;
}
.usecase-artifact {
  position: relative;
  min-height: 76px;
  padding: 13px 12px 11px;
  border: 1px solid #d8ddd8;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  color: var(--ink);
}
.usecase-artifact::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--green);
}
.usecase-artifact small {
  color: var(--green);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .11em;
}
.usecase-artifact strong {
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.45;
}
.usecase-artifact span {
  margin-top: 4px;
  color: #7a8780;
  font-size: 8px;
}
.usecase-proof[data-artifact="concept"] .usecase-artifact { background: linear-gradient(90deg, #fff 0 48%, #f5f1e8 48% 52%, #fff 52%); }
.usecase-proof[data-artifact="message"] .usecase-artifact { box-shadow: inset 0 -9px rgba(240, 215, 133, .38); }
.usecase-proof[data-artifact="ux"] .usecase-artifact { background: linear-gradient(90deg, #fff 0 62%, #eaf4ef 62% 64%, #fff 64%); }
.usecase-proof[data-artifact="churn"] .usecase-artifact { background: linear-gradient(90deg, transparent 15%, #d8ddd8 15% 85%, transparent 85%) center 47px / 100% 1px no-repeat, #fff; }
.usecase-proof[data-artifact="sales"] .usecase-artifact { background: repeating-linear-gradient(90deg, transparent 0 8px, rgba(15, 107, 77, .08) 8px 10px) right 10px bottom 10px / 52px 18px no-repeat, #fff; }
.contact-form { border-radius: 4px; }

@media (max-width: 1180px) {
  .analysis-frame { height: 560px; }
  .analysis-drawer { width: 48%; padding: 36px 30px; }
  .usecase-list article { grid-template-columns: 34px 1.05fr .95fr 1.5fr 44px; gap: 2vw; }
  .usecase-proof { grid-template-columns: minmax(0, 1fr); }
  .usecase-artifact { min-height: 58px; }
}

@media (max-width: 900px) {
  .hero { background: linear-gradient(155deg, #fbf9f4 0 48%, #edf5f1 48% 100%); }
  .hero::before { inset: 68px 0 0; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .report-section { grid-template-columns: 1fr; }
  .analysis-showcase { width: min(100%, 760px); margin: 0 auto; }
  .analysis-frame { height: 560px; }
  .usecase-list article { grid-template-columns: 34px minmax(0, 1fr) 44px; gap: 20px; }
  .use-body,
  .usecase-proof { grid-column: 2; }
  .usecase-proof { grid-template-columns: 128px minmax(0, 1fr); }
  .usecase-list article > a { grid-column: 3; grid-row: 1 / 4; }
}

@media (max-width: 620px) {
  .hero { padding-top: 102px; gap: 38px; }
  .hero h1 { font-size: clamp(44px, 12.6vw, 60px); }
  .report-copy h2,
  .faq-heading h2 { font-size: 36px; }
  .section-heading h2 { font-size: 34px; }
  .contact-copy h2 { font-size: 34px; }
  .avatar-stack img { width: 26px; height: 26px; }
  .analysis-product-bar b { font-size: 8px; }
  .analysis-frame { height: 500px; }
  .analysis-screen > img { width: 158%; max-width: none; object-position: left top; }
  .analysis-hotspot { left: 10px; top: 53%; width: 190px; min-height: 94px; padding: 13px; }
  .analysis-hotspot b { font-size: 13px; }
  .analysis-drawer { width: 78%; padding: 62px 18px 22px; }
  .analysis-drawer h3 { font-size: 25px; }
  .analysis-evidence-count { margin: 20px 0 18px; }
  .analysis-drawer blockquote { font-size: 15px; }
  .analysis-source { grid-template-columns: 36px 1fr; }
  .analysis-source > img { width: 36px; height: 36px; }
  .analysis-source button { grid-column: 1 / -1; width: 100%; }
  .analysis-note { font-size: 8px; }
  .analysis-proof-note { text-align: left; }
  .usecase-list article { grid-template-columns: 30px minmax(0, 1fr) 44px; gap: 14px; }
  .usecase-proof { display: none; }
  .usecase-list article:hover { padding-inline: 0; background: transparent; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Motion-led product story */
.page-progress {
  position: fixed;
  z-index: 60;
  top: 75px;
  left: 0;
  width: 100%;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), #4eb284 72%, var(--gold));
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left center;
  will-change: transform;
}
.site-header nav a { position: relative; }
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 7px;
  left: 4px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s ease-out;
}
.site-header nav a.is-current { color: var(--green); }
.site-header nav a.is-current::after { transform: scaleX(1); }

.report-section { align-items: start; }
.report-copy {
  align-self: start;
  padding-top: 30px;
}
.report-copy > p:not(.section-kicker) { margin-bottom: 30px; }
.analysis-story {
  border-top: 1px solid #cbd8d1;
  display: grid;
}
.analysis-story-step {
  min-height: 164px;
  padding: 25px 12px 25px 14px;
  border: 0;
  border-bottom: 1px solid #cbd8d1;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 30px;
  align-items: start;
  gap: 8px;
  background: transparent;
  color: #43534c;
  text-align: left;
  transition: background .24s ease-out, color .24s ease-out, box-shadow .24s ease-out;
}
.analysis-story-step > span {
  padding-top: 4px;
  color: #85928b;
  font-size: 9px;
  font-variant-numeric: tabular-nums;
}
.analysis-story-step small {
  color: #78867f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .13em;
}
.analysis-story-step h3 {
  margin: 8px 0 9px;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -.03em;
}
.analysis-story-step p {
  margin: 0;
  color: #68766f;
  font-size: 12px;
  line-height: 1.8;
}
.analysis-story-step > i {
  width: 30px;
  height: 30px;
  border: 1px solid #cad5cf;
  display: grid;
  place-items: center;
  color: #718078;
  font-size: 11px;
  font-style: normal;
}
.analysis-story-step:hover { background: rgba(255, 255, 255, .45); }
.analysis-story-step.is-active {
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
  box-shadow: inset 0 3px var(--gold);
}
.analysis-story-step.is-active > span,
.analysis-story-step.is-active small { color: var(--green); }
.analysis-story-step.is-active > i { border-color: var(--green); background: var(--green); color: #fff; }
.analysis-showcase {
  position: sticky;
  top: 104px;
}

body.motion-ready .motion-reveal {
  opacity: 1;
  transform: translateY(14px);
  transition: transform .65s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--reveal-order, 0) * 45ms);
}
body.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .analysis-showcase { position: relative; top: auto; }
  .report-copy { padding-top: 0; }
  .analysis-story-step { min-height: 138px; }
}

@media (max-width: 939px) {
  .report-section { grid-template-columns: 1fr; }
  .report-copy {
    grid-column: 1;
    grid-row: auto;
    padding-top: 0;
  }
  .analysis-showcase {
    grid-column: 1;
    grid-row: auto;
    position: relative;
    top: auto;
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (min-width: 940px) and (max-width: 1180px) {
  .report-section {
    grid-template-columns: minmax(0, 1.24fr) minmax(310px, .76fr);
    gap: 28px;
  }
  .report-copy { padding-top: 0; }
  .analysis-showcase { width: auto; margin: 0; }
}

@media (max-width: 620px) {
  .page-progress { top: 67px; }
  .analysis-story-step {
    min-height: 126px;
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    padding-block: 20px;
  }
  .analysis-story-step h3 { font-size: 17px; }
  .analysis-story-step p { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .page-progress span,
  .motion-reveal { transform: none !important; }
  body.motion-ready .motion-reveal { opacity: 1; }
}



/* Creator-side free trial preview */

/* ============================================================
   2026-07-30 社内主軸リニューアル v2
   囲み枠グリッドと罫線表を撤去し、余白・タイポ・淡いティントで
   構造を作る（デザイン方針v6の禁止パターン回避）
   ============================================================ */

/* --- お困りごと：エディトリアル --- */
.pains { border-top: 1px solid var(--line); }
.pain-lead {
  max-width: 20em;
  margin: 0 0 clamp(56px, 7vw, 104px);
  font-size: clamp(30px, 3.6vw, 56px);
  font-weight: 680;
  line-height: 1.42;
  letter-spacing: -.055em;
  color: var(--ink);
  text-wrap: balance;
}
.pain-lead em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--green-soft) 62%);
  padding: 0 .06em;
}
.pain-rows { display: grid; gap: clamp(32px, 3.4vw, 52px); max-width: 1060px; margin-left: clamp(0px, 5vw, 116px); }
.pain-rows article { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .66fr); gap: clamp(20px, 2.4vw, 40px); align-items: baseline; }
.pain-rows h3 {
  margin: 0;
  font-size: clamp(20px, 1.85vw, 30px);
  font-weight: 620;
  line-height: 1.56;
  letter-spacing: -.04em;
  color: var(--ink);
}
.pain-rows p { margin: 6px 0 0; color: #66717f; font-size: 15px; line-height: 1.95; }

/* --- 従来との比較：ダッシュボード --- */
.numbers { background: var(--soft); }
.metric-row {
  margin: clamp(52px, 5.6vw, 86px) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 2.6vw, 44px);
}
.metric-row article { display: flex; flex-direction: column; gap: 14px; }
.metric-row small {
  color: #6d7885;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .01em;
  padding-bottom: 14px;
  border-bottom: 1px solid #dce1e8;
}
.metric-row p { margin: 0; display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.metric-row span {
  color: #98a2af;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: #c3cad3;
}
.metric-row i { font-style: normal; color: #b3bcc6; font-size: 13px; }
.metric-row strong {
  display: block;
  color: var(--green);
  font-size: clamp(29px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.055em;
}
.metric-row b { color: #4c5865; font-size: 13px; font-weight: 600; line-height: 1.7; }
.metric-note { margin: clamp(40px, 4vw, 62px) 0 0; max-width: 74em; color: #737e8b; font-size: 12.5px; line-height: 2; }
.metric-note b { display: block; margin-bottom: 5px; color: #4c5865; font-size: 11px; font-weight: 700; letter-spacing: .06em; }

/* --- ご担当者の工数：罫線なしの定義リスト --- */

/* --- 情報の取り扱い（3項の帯） --- */
.safety-band { border-top: 1px solid var(--line); background: var(--soft); padding: clamp(48px, 5vw, 72px) max(5.4vw, calc((100vw - 1320px) / 2)); }
.safety-band .section-kicker { margin-bottom: 14px; }
.safety-band-lead { max-width: 46em; margin: 0; color: #66717f; font-size: 15px; line-height: 1.95; }
.safety-band-items { list-style: none; margin: clamp(26px, 3vw, 38px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 2vw, 24px); }
.safety-band-items li { padding: 20px 22px; border: 1px solid #e2e7ee; border-radius: 12px; background: #fff; display: grid; gap: 6px; align-content: start; }
.safety-band-items b { color: var(--ink); font-size: 16px; font-weight: 660; letter-spacing: -.03em; line-height: 1.5; }
.safety-band-items span { color: #66717f; font-size: 13.5px; line-height: 1.8; }
@media (max-width: 900px) {
  .safety-band-items { grid-template-columns: 1fr; }
}

/* --- 実施例の一覧 --- */
.catalog-items { list-style: none; margin: -4px 32px 28px 50px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 4vw; }
.catalog-items b { display: block; color: var(--ink); font-size: 14px; font-weight: 620; letter-spacing: -.015em; }
.catalog-items span { display: block; margin-top: 4px; color: #737e8b; font-size: 13px; line-height: 1.75; }

/* --- ご依頼のかたち（3列） --- */

@media (max-width: 1100px) {
  .metric-row { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
  .pain-rows article { grid-template-columns: 1fr; gap: 12px; }
  .catalog-items { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .pain-lead { margin-bottom: 44px; }
  .metric-row { grid-template-columns: 1fr; gap: 34px; margin-top: 40px; }
  .metric-row strong { font-size: 34px; }
  .catalog-items { margin: -4px 0 24px 38px; }
}

/* ============================================================
   2026-07-30 改善要望への対応 v3
   ①各セクションに人物＋吹き出し ②ヒーローの重なり解消
   ③製品画像の視認性 ④活用例と実施例の重複整理
   ============================================================ */

/* --- ② ヒーローの重なり解消 ---------------------------------
   原因: .hero h1 > span の white-space: nowrap で12文字の行が
   折り返せず、列幅(650px)を超えて製品画面に食い込んでいた。
   1440pxで60px、1100pxで144pxの重なりを実測。
   対策: 文字サイズを列幅に収まる係数へ下げ、狭い幅では折返しを許可する。 */
.hero h1 { font-size: clamp(36px, 3.75vw, 64px); letter-spacing: -.07em; }
@media (max-width: 1340px) {
  .hero h1 > span { white-space: normal; }
}

/* --- ③ 製品画像の視認性 ---
   切り抜き(cover)で画面上部しか見えていなかったものを全体表示に変える。 */
.analysis-screen { background: #fff; }
.analysis-screen > img { object-fit: contain; object-position: top center; }
.product-screen-meta { border-bottom: 1px solid #e6eaf0; }

/* --- ① 人物＋吹き出し ---
   voices-bandと同じ線画アバターを使い、各セクションの主張を
   当事者の言葉で1行だけ添える。装飾が本文を上回らない寸法に抑える。 */
.voice-strip {
  list-style: none;
  margin: clamp(48px, 5vw, 76px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 34px);
  max-width: 1180px;
}
.voice-strip li { display: grid; grid-template-columns: 46px 1fr; gap: 14px; align-items: start; }
.voice-strip img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #eef1f5;
  padding: 3px;
}
.voice-strip p {
  position: relative;
  margin: 0;
  padding: 13px 16px;
  border-radius: 3px 13px 13px 13px;
  background: #fff;
  border: 1px solid #e4e9ef;
  color: #3f4a57;
  font-size: 13.5px;
  line-height: 1.75;
  letter-spacing: -.005em;
}
.voice-strip p::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 12px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-left: 1px solid #e4e9ef;
  border-bottom: 1px solid #e4e9ef;
  transform: rotate(45deg);
}
.voice-strip small { grid-column: 2; margin-top: 7px; color: #8e98a5; font-size: 11.5px; letter-spacing: .02em; }
.numbers .voice-strip p { background: #fff; }
.pains .voice-strip p { background: #fdfdfe; }

/* --- ④ 実施例は活用例の詳細として置く --- */

@media (max-width: 1100px) {
  .voice-strip { grid-template-columns: 1fr; gap: 16px; max-width: 720px; }
}

@media (max-width: 720px) {
  .voice-strip { margin-top: 40px; }
  .voice-strip li { grid-template-columns: 38px 1fr; gap: 11px; }
  .voice-strip img { width: 38px; height: 38px; }
  .voice-strip p { font-size: 13px; padding: 11px 13px; }
}

/* --- 2026-07-30 ご依頼のかたちを1ブロックへ圧縮 --------------
   3枚のうち「自社で使う」はFAQ09、「調査を任せる」は進め方と
   重複していたため、差別化点である実行支援1点に絞る。 */

/* ============================================================
   2026-07-30 v4
   ①ヒーローで「何をするサービスか」を先に言う
   ②全セクションの見出しを1つの型に統一（左上・同じ寸法）
   ③画像の縮小率を上げる（contain化は逆効果だったので撤回）
   ============================================================ */

/* --- ① ヒーロー：何をするかを3語で --- */
.hero-sub {
  margin: 22px 0 0;
  color: var(--green);
  font-size: clamp(19px, 1.85vw, 28px);
  font-weight: 680;
  letter-spacing: -.03em;
  line-height: 1.5;
}
.hero-lead b { color: var(--ink); font-weight: 650; }

/* --- ② 見出しの型を1つに統一 ---
   これまで section-heading(2列) / 内包カラム / kicker+h2(左) の
   3種が混在し、セクションごとに読み方が変わっていた。
   すべて「小見出し → 大見出し → リード1本」を左上に積む形へ揃える。 */
.section-heading { display: block; }
.section-heading > div { display: contents; }
.section-kicker { margin: 0 0 20px; font-size: 12px; letter-spacing: .14em; }
.section-heading h2,
.report-copy h2,
.faq-heading h2,
.contact-copy h2 {
  max-width: 19em;
  margin: 0;
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 680;
  line-height: 1.34;
  letter-spacing: -.055em;
}
.section-heading > p,
.faq-heading > p:last-child,
.contact-copy > p:not(.contact-reassurance):not(.section-kicker) {
  max-width: 44em;
  margin: 24px 0 0;
  color: #5e6878;
  font-size: 16px;
  line-height: 1.95;
}
.pain-lead { font-size: clamp(32px, 3.5vw, 54px); line-height: 1.4; margin-bottom: clamp(48px, 5.4vw, 84px); }

/* --- ③ 画像：縮小率を上げる ---
   contain は余白を作って描画サイズを下げるだけだった（61%→さらに縮小）。
   cover へ戻し、進め方は図を全幅に置いて実寸に近づける。 */
.analysis-screen > img { object-fit: cover; object-position: top center; }


@media (max-width: 720px) {
  .hero-sub { font-size: 19px; }
}


/* ============================================================
   2026-07-30 v5 聞き方（3つの会話モード）
   実製品の interview_mode（自然な会話／じっくり回答／操作しながら回答）
   を価値の柱としてLPに出す。見せ方はv6準拠の製品UIモックアップ
   （回答画面の会話例）で、装飾カードにしない。
   ============================================================ */
.modes { border-top: 1px solid var(--line); }
.modes-lead { max-width: 44em; margin: 24px 0 0; color: #5e6878; font-size: 16px; line-height: 1.95; }
.modes-lead b { color: var(--ink); font-weight: 650; }
.mode-grid { margin: clamp(44px, 4.6vw, 68px) 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mode-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #dde3ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 50px -34px rgba(33, 47, 72, .18);
}
.mode-dialog { flex: 1; display: grid; gap: 10px; align-content: start; padding: 20px 18px 22px; }
.md-ai, .md-user { margin: 0; max-width: 92%; padding: 11px 14px; border-radius: 12px; font-size: 13.5px; line-height: 1.75; }
.md-ai { background: var(--soft); color: #3f4a57; border-bottom-left-radius: 3px; }
.md-user { justify-self: end; background: var(--green-soft); color: #21402f; border-bottom-right-radius: 3px; }
.md-note { margin: 2px 0; justify-self: center; color: #8e98a5; font-size: 11.5px; text-align: center; }
.mode-fit { margin: 0 18px 20px; padding-top: 13px; border-top: 2px solid var(--green); color: #4c5865; font-size: 13px; line-height: 1.8; }
.mode-fit b { display: block; margin-bottom: 3px; color: var(--ink); font-size: 14.5px; font-weight: 700; letter-spacing: -.02em; }
.modes-note { margin: 26px 0 0; color: #737e8b; font-size: 13px; }
.modes-note a { display: inline-flex; align-items: center; min-height: 44px; color: var(--green); font-weight: 650; text-decoration: underline; text-underline-offset: 3px; }
.modes h2 { max-width: 19em; margin: 0; font-size: clamp(32px, 3.5vw, 54px); font-weight: 680; line-height: 1.34; letter-spacing: -.055em; }

/* --- 聞き方: 仕組みブロック（理解→深掘り→同時並行） --- */
.mechanism { margin: clamp(44px, 4.6vw, 68px) 0 0; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 18px; align-items: stretch; }
.mechanism-flow, .mechanism-parallel { display: flex; flex-direction: column; overflow: hidden; border: 1px solid #dde3ea; border-radius: 14px; background: #fff; box-shadow: 0 24px 50px -34px rgba(33, 47, 72, .18); }
.mechanism-dialog { padding-bottom: 20px; }
.voice-note { display: inline-flex; align-items: center; gap: 8px; justify-self: end; margin: 2px 4px 0 0; color: var(--green); font-size: 11.5px; font-weight: 650; text-align: right; }
.voice-mark { display: inline-flex; align-items: center; gap: 2.5px; height: 14px; }
.voice-mark i { width: 2.5px; height: 14px; border-radius: 2px; background: var(--green); opacity: .8; transform: scaleY(.5); }
.voice-mark i:nth-child(1) { transform: scaleY(.35); }
.voice-mark i:nth-child(3) { transform: scaleY(1); }
.voice-mark i:nth-child(4) { transform: scaleY(.6); }
.voice-mark i:nth-child(5) { transform: scaleY(.8); }
@media (prefers-reduced-motion: no-preference) {
  .voice-mark i { animation: voice-wave 1.1s ease-in-out infinite; }
  .voice-mark i:nth-child(2) { animation-delay: .14s; }
  .voice-mark i:nth-child(3) { animation-delay: .28s; }
  .voice-mark i:nth-child(4) { animation-delay: .42s; }
  .voice-mark i:nth-child(5) { animation-delay: .56s; }
}
@keyframes voice-wave {
  0%, 100% { transform: scaleY(.35); }
  50% { transform: scaleY(1); }
}
.ai-step { justify-self: stretch; max-width: none; margin: 2px 0; padding: 11px 14px; border: 1px dashed rgba(15, 107, 77, .45); border-radius: 10px; background: #fbfdfa; display: grid; gap: 3px; text-align: left; }
.ai-step b { color: var(--green); font-size: 11px; font-weight: 750; letter-spacing: .06em; }
.ai-step span { color: #5e6878; font-size: 12px; line-height: 1.7; }
.mechanism-rows { list-style: none; margin: 0; padding: 6px 18px; display: grid; }
.mechanism-rows li { display: grid; gap: 2px; padding: 12px 2px; border-bottom: 1px solid #eef1f5; }
.mechanism-rows li:last-child { border-bottom: 0; }
.mechanism-rows b { color: var(--ink); font-size: 13px; font-weight: 700; }
.mechanism-rows span { color: #6b7787; font-size: 12.5px; }
.mechanism-rows .is-more b { color: var(--green); }
.mechanism-sum { margin: auto 0 0; padding: 14px 18px 18px; border-top: 1px solid #eef1f5; color: #5e6878; font-size: 13px; line-height: 1.85; }
.mechanism-sum b { color: var(--ink); font-weight: 700; }
.modes-sub { margin-top: clamp(52px, 5.4vw, 80px); }

@media (max-width: 1100px) {
  .mode-grid { grid-template-columns: 1fr; max-width: 640px; }
  .mechanism { grid-template-columns: 1fr; max-width: 640px; }
}

/* ============================================================
   2026-07-30 v6 吹き出しの統一と会話再生
   枠線は右下ポップアップ（.demo-fab-bubble）と同値:
   1.5px solid rgba(15,107,77,.45) / 白背景 / 影 0 2px 8px rgba(21,32,28,.12)
   ============================================================ */
.voice-strip p {
  background: #fff;
  border: 1.5px solid rgba(15, 107, 77, .45);
  box-shadow: 0 2px 8px rgba(21, 32, 28, .12);
}
.voice-strip p::before {
  border-left: 1.5px solid rgba(15, 107, 77, .45);
  border-bottom: 1.5px solid rgba(15, 107, 77, .45);
}
.pains .voice-strip p,
.numbers .voice-strip p { background: #fff; }
.md-ai {
  background: #fff;
  border: 1.5px solid rgba(15, 107, 77, .45);
  box-shadow: 0 2px 8px rgba(21, 32, 28, .12);
}
.md-user {
  border: 1.5px solid rgba(15, 107, 77, .45);
  box-shadow: 0 2px 8px rgba(21, 32, 28, .12);
}

/* --- 会話再生（lp.jsのconvoObserverと対） --- */
.voice-strip p, .md-ai, .md-user { position: relative; }
.type-ghost { visibility: hidden; }
.type-live { position: absolute; inset: 0; padding: inherit; }
.type-live.is-waiting::after { content: "…"; letter-spacing: 2px; animation: convo-wait .9s ease-in-out infinite; }
@keyframes convo-wait { 0%, 100% { opacity: .25; } 50% { opacity: .9; } }
.convo-armed > .md-ai,
.convo-armed > .md-user,
.convo-armed > .md-note,
.voice-strip.convo-armed > li {
  opacity: 0;
  transform: translateY(7px);
  transition: opacity .3s ease, transform .3s ease;
}
.convo-armed > .is-said,
.voice-strip.convo-armed > li.is-said { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .convo-armed > .md-ai, .convo-armed > .md-user, .convo-armed > .md-note, .voice-strip.convo-armed > li { opacity: 1; transform: none; }
}

/* 2026-08-09 ヒーローを縦積みにしたのでh1の幅制約が消えた。
   2カラム時代は右の製品画面に食い込まないよう3.6vw(1440pxで52px)まで
   落としていたが、その結果ページ全体が縮こまって見えていた。
   参照実測(1440px): Linear 64 / Mercury 49 / Vanta 72 / Listen Labs 88。
   1440pxで72pxに戻す。 */
/* 左カラム幅（1440pxで725px）に12文字が収まる係数。4.6vwだと723pxでぎりぎり。 */
.hero h1 { font-size: clamp(44px, 4.5vw, 66px); }

/* 2026-07-30 v7 全セクション末尾に3人組（ダーク面・グリッド面対応） */
.faq-section .voice-strip,
.contact-section .voice-strip { grid-column: 1 / -1; }
.contact-section .voice-strip small { color: rgba(255, 255, 255, .72); }

/* 成果物の3人組はスティッキーの可動域の外に置く（同色バンドで連続に見せる）。
   セクション内に行を足すと右カラムのstickyが伸びてタブに重なるため。 */
.report-voices { background: linear-gradient(145deg, #f1f2e9, #edf4ef); padding: 0 max(5.4vw, calc((100vw - 1320px) / 2)) clamp(72px, 8vw, 110px); }
.report-voices .voice-strip { margin-top: 0; }

/* 装飾レイヤーはクリックを奪わない */
.voice-strip, .mode-dialog { pointer-events: none; }

/* ============================================================
   2026-07-30 v8 3人組の吹き出しをポップアップ準拠に
   ①「※人物と発言は例です」の注記を撤去（aria-labelの「例」表記は維持）
   ②役職ラベルを人物アバターの真下へ
   ③文字・角丸・色・しっぽを .demo-fab-bubble の実値に揃える
     （font 700 / #34463f / radius 9px / しっぽ6px）
   ============================================================ */
/* 2026-08-09: ラベルを「声で回答 · 役職」に統一したことで、アバター幅(46px)の
   真下に中央揃えでは収まらなくなった。吹き出しの下・左揃えへ移す。
   （v8は small をアバター下の列1に置き、p を grid-row 1/3 で2行にまたがらせて
     いたため、smallを列2に寄せると吹き出しと同じセルに重なって潰れていた） */
.voice-strip li { grid-template-rows: auto auto; row-gap: 0; }
.voice-strip img { grid-column: 1; grid-row: 1; }
.voice-strip p {
  grid-column: 2;
  grid-row: 1;
  padding: 9px 12px;
  border-radius: 9px;
  color: #34463f;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0;
}
.voice-strip p::before { width: 6px; height: 6px; left: -4px; top: 14px; }
.voice-strip small {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  align-self: start;
  width: auto;
  margin-top: 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-align: left;
  color: #6e7874;
  font-size: 10.5px;
  letter-spacing: .01em;
}
/* 音声で答えたことを示す波形マーク。全セクション共通 */
.voice-strip .voice-mark { flex: none; display: inline-flex; align-items: flex-end; gap: 2px; height: 11px; }
.voice-strip .voice-mark i { width: 2px; border-radius: 1px; background: var(--green); opacity: .65; }
.voice-strip .voice-mark i:nth-child(1) { height: 5px; }
.voice-strip .voice-mark i:nth-child(2) { height: 9px; }
.voice-strip .voice-mark i:nth-child(3) { height: 11px; }
.voice-strip .voice-mark i:nth-child(4) { height: 7px; }
.voice-strip .voice-mark i:nth-child(5) { height: 4px; }
/* 濃い面（相談セクション）ではマークも明色へ */
.contact-section .voice-strip .voice-mark i { background: #d7eadf; opacity: .8; }

/* ============================================================
   2026-07-30 v9 実施例を活用例カード内へ統合
   （ご依頼のかたち・実施例の独立セクションは廃止）
   ============================================================ */
.usecase-list article { cursor: pointer; }
.usecase-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #cdd3dd;
  border-radius: 50%;
  background: none;
  color: inherit;
  font: inherit;
  font-size: 16px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, transform .25s ease;
}
.usecase-list article:hover .usecase-toggle { color: var(--green); border-color: var(--green); }
.usecase-list article.is-open .usecase-toggle { color: var(--green); border-color: var(--green); transform: rotate(90deg); }
.usecase-detail { grid-column: 1 / -1; display: grid; grid-template-rows: 0fr; transition: grid-template-rows .32s ease; }
.ud-inner { overflow: hidden; min-height: 0; }
.usecase-list article.is-open .usecase-detail { grid-template-rows: 1fr; }
.ud-head { margin: 10px 0 14px; color: var(--green); font-size: 11px; font-weight: 750; letter-spacing: .1em; }
.usecase-detail .catalog-items { margin: 0; grid-template-columns: repeat(2, 1fr); gap: 14px 4vw; max-width: 1080px; }
.ud-consult { display: inline-flex; align-items: center; min-height: 44px; gap: 8px; margin: 20px 0 6px; color: var(--green); font-size: 13.5px; font-weight: 700; }
.ud-consult:hover { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1100px) {
  .usecase-detail .catalog-items { grid-template-columns: 1fr; }
}


/* 2026-07-30 修正: v4の見出し統一でリード文を濃グレーに揃えた際、
   緑背景の相談セクションまで巻き込み、文字が読めなくなっていた。
   ダーク面のリードは明色へ戻す。 */
.contact-copy > p:not(.contact-reassurance):not(.section-kicker) { color: #d8e9e1; }

/* ============================================================
   2026-08-08 成果物セクション v2
   「1画面で01/02/03を切り替える」構成をやめ、聞き方（3つの
   会話モード）と同じ3カード並置に統一。切り替え操作なしで、
   共通・反対・原文の3ビューがスクロールだけで全部見える。
   旧 .report-copy / .analysis-* のうちモック切り替え系のCSSは
   未参照になった（整理は別途）。
   ============================================================ */
.deliverable-section { border-top: 1px solid var(--line); }
.deliverable-section > h2 {
  max-width: 19em;
  margin: 0;
  font-size: clamp(32px, 3.5vw, 54px);
  font-weight: 680;
  line-height: 1.34;
  letter-spacing: -.055em;
}
.deliverable-mini {
  flex: 1;
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}
.deliverable-mini h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -.03em;
}
.dm-count { display: flex; align-items: center; gap: 10px; }
.dm-count p { margin: 0; display: flex; flex-direction: column; }
.dm-count strong { color: var(--green); font-size: 15px; font-variant-numeric: tabular-nums; }
.dm-count span { color: #7b8781; font-size: 10px; }
.deliverable-mini blockquote {
  margin: 0;
  padding: 11px 14px;
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  background: var(--soft);
  color: #3f4a57;
  font-size: 13px;
  line-height: 1.8;
}
.dm-source {
  margin-top: auto;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid #edf0f4;
  display: flex;
  align-items: center;
  gap: 9px;
}
.dm-source img { width: 30px; height: 30px; border-radius: 50%; }
.dm-source p { margin: 0; display: flex; flex-direction: column; }
.dm-source b { font-size: 11px; }
.dm-source p span { color: #7b8781; font-size: 9px; }
.dm-play {
  margin-left: auto;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.deliverable-note { color: #8b958f; font-size: 11px; }

/* お声の帯は独自の緑グラデをやめ、成果物セクションと地続きにする
   （白→薄緑→クリームと3色が縦に並んで見えるのを解消） */
.report-voices { background: none; }

/* 活用例カードの抽象ミニ図（usecase-artifact）は撤去。引用の吹き出しだけを残す */
.usecase-proof { grid-template-columns: minmax(0, 1fr); }

/* ============================================================
   従来比較の数値ブロックをカード型に再設計。
   旧: 打ち消し線の旧値と新値をインラインで並べる形。カラムごとに
   折り返し位置が変わりベースラインがガタつき、テキストを並べた
   だけに見えていた。新: 白カードの中で 指標ラベル → 従来値（小・
   グレー）→ 現行値（大・緑）→ 効果バッジ の同一4段構成に統一。
   HTMLは変更せず、この上書きだけで切り替える。
   ============================================================ */
.metric-row { gap: 18px; }
.metric-row article {
  gap: 0;
  padding: 20px 22px 22px;
  border: 1px solid #dde3ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 50px -34px rgba(33, 47, 72, .18);
}
.metric-row small {
  padding-bottom: 13px;
  border-bottom: 1px solid #edf0f4;
  color: #5e6878;
  font-size: 12.5px;
}
.metric-row p { margin: 16px 0 14px; display: block; }
.metric-row p span {
  display: block;
  color: #98a2af;
  font-size: 12.5px;
  font-weight: 500;
  text-decoration: none;
}
.metric-row p span::before { content: "従来 "; color: #b3bcc6; font-size: 10.5px; font-weight: 700; letter-spacing: .06em; }
.metric-row p i { display: none; }
.metric-row p strong {
  margin-top: 6px;
  font-size: clamp(26px, 2.3vw, 34px);
  line-height: 1.15;
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
}
.metric-row b {
  margin-top: auto;
  align-self: flex-start;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #21402f;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 720px) {
  .metric-row article { padding: 16px 18px 18px; }
  .metric-row strong { font-size: 28px; }
}

/* 実働の削減を主役カードに格上げ。100時間超の内訳（実施50h＋書き起こし・
   整理50h）がバーで見え、それがどこへ消えて約5時間だけ残るのかを1枚で語る。
   数字は「試算の前提」に既にある値のみを使用。残り3指標はサブの3カラムに。 */
.metric-feature {
  margin: clamp(52px, 5.6vw, 86px) 0 0;
  padding: 22px 24px 24px;
  border: 1px solid #dde3ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 50px -34px rgba(33, 47, 72, .18);
}
.mf-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #edf0f4;
}
.mf-head small { color: #5e6878; font-size: 12.5px; font-weight: 600; }
.mf-head b {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #21402f;
  font-size: 11.5px;
  font-weight: 700;
}
/* 同じ工程軸の中で従来（灰）とCoeSignal（緑）のバーを重ねて比較する。
   バーは共通スケール（1時間＝12px）のpx直指定 */
.mf-totals {
  margin: 16px 0 2px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -.02em;
}
.mf-totals i { display: inline-block; width: 11px; height: 11px; margin-right: 7px; border-radius: 3px; vertical-align: -1px; }
.mf-totals .is-old { color: #6d7885; }
.mf-totals .is-old i { background: #cdd5df; }
.mf-totals .is-new { color: var(--green); }
.mf-totals .is-new i { background: var(--green); }
.mf-totals em { color: #b3bcc6; font-style: normal; font-weight: 400; }
.mf-steps { margin: 0; padding: 0; list-style: none; }
.mf-steps li {
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f2f4f7;
  font-size: 12px;
}
.mf-steps li:last-child { border-bottom: 0; }
.mf-steps li > b { color: #37414e; font-size: 12.5px; font-weight: 700; }
.mf-pair { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.mf-bar-line { display: flex; align-items: center; gap: 8px; min-width: 0; }
.mf-bar-line i {
  width: calc(var(--h) * 12px);
  min-width: 3px;
  border-radius: 3px;
  flex-shrink: 0;
}
/* 主役は緑。従来バーは細く薄く、CoeSignalバーは太く濃く光らせる（長さの縮尺は共通のまま） */
.mf-bar-line.is-old i { height: 8px; background: #d8dee6; }
.mf-bar-line.is-old span { color: #98a2af; font-size: 11px; font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mf-bar-line.is-new i { height: 16px; background: var(--green); box-shadow: 0 2px 7px rgba(15, 107, 77, .3); }
.mf-bar-line.is-new span { color: var(--green); font-size: 13.5px; font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.mf-bar-line small { color: #98a2af; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mf-foot { margin: 14px 0 0; color: #98a2af; font-size: 10.5px; }
.metric-row { margin-top: 18px; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
  .metric-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .mf-bar-line i { width: calc(var(--h) * 5px); }
  .mf-steps li { grid-template-columns: 1fr; row-gap: 6px; padding: 11px 0; }
  .mf-bar-line small { white-space: normal; }
}
@media (max-width: 720px) {
  .metric-row { grid-template-columns: 1fr; }
}

/* 成果物セクションの間はフローティング案内を退避（カード列に被るため。lp.jsが付け外し） */
#corporate-demo-contact-root { transition: opacity .25s ease-out; }
body.fab-suppressed #corporate-demo-contact-root {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease-out, visibility 0s linear .25s;
}

