:root {
  --ink: #17243a;
  --ink-soft: #4f5e70;
  --navy: #13213a;
  --navy-2: #1d3154;
  --coral: #ff9500;
  --coral-dark: #ff6b00;
  --peach: #fff5e6;
  --cream: #fffaf2;
  --mint: #dff3ea;
  --green: #2a8c69;
  --line: #e7e8ec;
  --white: #fff;
  --shadow: 0 18px 50px rgba(23, 36, 58, .10);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  padding-top: 76px;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; height: 76px; background: rgba(255,255,255,.93); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(23,36,58,.08); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 8px 30px rgba(23,36,58,.08); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-mark { width: 40px; height: 40px; display: grid; place-items: center; }
.brand-mark img { width: 40px; height: 40px; }
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark path { fill: none; stroke: #fff; stroke-width: 3.2; stroke-linecap: round; }
.brand-mark circle { fill: #fff; }
.brand-text { display: grid; line-height: 1.2; }
.brand-text strong { font-size: 1.08rem; letter-spacing: .03em; }
.brand-text small { color: var(--coral-dark); font-weight: 700; font-size: .71rem; letter-spacing: .12em; margin-top: 3px; }
.global-nav { display: flex; align-items: center; gap: 25px; font-size: .89rem; font-weight: 700; }
.global-nav > a:not(.button) { color: #3d4c61; position: relative; }
.global-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; background: var(--coral); transition: right .2s ease; }
.global-nav > a:not(.button):hover::after { right: 0; }
.global-nav .nav-back { display: inline-flex; align-items: center; padding: 6px 16px; border-radius: 999px; background: #ff9500; color: #fff !important; font-size: .875rem; font-weight: 500; line-height: 1.4; }
.global-nav .nav-back:hover { background: #ff6b00; }
.global-nav .nav-back::after { display: none !important; }
.menu-button { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.menu-button span { width: 26px; height: 2px; background: var(--ink); display: block; margin: 6px 0; transition: .25s; }

.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 26px; border-radius: 999px; font-weight: 800; line-height: 1.25; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: linear-gradient(135deg,var(--coral),#ffb347); box-shadow: 0 12px 25px rgba(255,149,0,.28); }
.button-primary:hover { box-shadow: 0 16px 30px rgba(255,149,0,.35); }
.button-ghost { color: #fff; border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-outline { border-color: var(--coral); color: var(--coral-dark); background: #fff; }
.button-small { min-height: 42px; padding: 0 19px; font-size: .85rem; }
.button-wide { width: 100%; border: 0; }

/* スクロール追従の相談CTA（右下固定・バナー風・画像不使用） */
.floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: inline-flex; align-items: center; gap: 11px; padding: 13px 22px; border-radius: 16px; background: linear-gradient(135deg, var(--coral), var(--coral-dark)); color: #fff; text-decoration: none; box-shadow: 0 14px 32px rgba(23,36,58,.30); transition: transform .2s ease, box-shadow .2s ease; }
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 42px rgba(23,36,58,.36); }
.floating-cta svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; flex: 0 0 auto; }
.floating-cta > span { display: block; font-weight: 800; font-size: .98rem; line-height: 1.2; }
.floating-cta small { display: block; font-weight: 600; font-size: .68rem; opacity: .9; margin-top: 2px; }
@media (max-width: 560px) { .floating-cta { right: 14px; bottom: 14px; padding: 11px 16px; gap: 8px; } .floating-cta small { display: none; } .floating-cta > span { font-size: .9rem; } }

/* デモアカウント */
.demo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px,1fr)); gap: 16px; }
.demo-card { border: 1px solid var(--line); border-radius: 18px; padding: 22px; background: #fff; display: flex; flex-direction: column; box-shadow: 0 8px 22px rgba(23,36,58,.05); }
.demo-card h3 { margin: 0 0 14px; font-size: 1rem; }
.demo-card dl { margin: 0 0 18px; display: grid; grid-template-columns: auto 1fr; gap: 6px 12px; font-size: .82rem; flex: 1; align-content: start; }
.demo-card dt { color: var(--ink-soft); white-space: nowrap; }
.demo-card dd { margin: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; word-break: break-all; }
.demo-card .demo-muted { color: var(--ink-soft); font-size: .8rem; margin: 0 0 18px; flex: 1; }
.demo-card .button { width: 100%; margin-top: auto; }
.demo-note { margin-top: 24px; text-align: center; color: var(--ink-soft); font-size: .8rem; }
.demo-section code { font-family: ui-monospace, monospace; background: var(--cream); padding: 2px 9px; border-radius: 6px; color: var(--coral-dark); font-weight: 700; }

.hero { min-height: 760px; position: relative; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-media { position: absolute; inset: 0; background: url('../images/hero.webp') center/cover no-repeat; transform: scale(1.01); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,27,47,.96) 0%, rgba(14,27,47,.82) 42%, rgba(14,27,47,.38) 68%, rgba(14,27,47,.08) 100%); }
.hero::after { content: ""; position: absolute; width: 520px; height: 520px; border-radius: 50%; left: -260px; bottom: -300px; background: rgba(255,149,0,.19); filter: blur(2px); }
.hero-inner { position: relative; z-index: 2; }
.hero-content { width: min(720px, 65%); color: #fff; padding: 72px 0 86px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; color: var(--coral-dark); font-weight: 900; letter-spacing: .15em; font-size: .76rem; margin: 0 0 17px; }
.eyebrow { color: #ffd98a; }
.eyebrow span { display: inline-block; width: 34px; height: 2px; background: var(--coral); }
.hero h1 { margin: 0; font-size: clamp(2rem, 3.4vw, 3.6rem); line-height: 1.08; letter-spacing: -.05em; font-weight: 850; }
.hero h1 em { color: #ffb347; font-style: normal; }
.hero-lead { font-size: clamp(1rem,1.5vw,1.2rem); line-height: 2; margin: 28px 0 32px; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-points { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; gap: 11px 24px; font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.85); }
.hero-points li::before { content: "✓"; color: #ffc266; margin-right: 7px; }

.intro-strip { background: #fff; border-bottom: 1px solid var(--line); }
.intro-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.intro-grid div { padding: 25px 26px; border-right: 1px solid var(--line); }
.intro-grid div:last-child { border-right: 0; }
.intro-grid strong, .intro-grid span { display: block; }
.intro-grid strong { color: var(--coral-dark); font-size: .78rem; letter-spacing: .1em; margin-bottom: 5px; }
.intro-grid span { font-weight: 700; font-size: .94rem; }

.section { padding: 110px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--navy); color: #fff; }
.section-heading { margin-bottom: 55px; }
.section-heading.centered { text-align: center; max-width: 790px; margin-inline: auto; margin-bottom: 58px; }
.section-heading.centered .section-kicker { justify-content: center; }
.section-heading h2, .visual-copy h2, .dashboard-copy h2, .operation-copy h2, .future-copy h2, .contact-copy h2 { font-size: clamp(2rem,4vw,3.4rem); line-height: 1.3; letter-spacing: -.035em; margin: 0 0 18px; }
.section-heading p, .visual-copy > p, .dashboard-copy > p, .operation-copy > p, .future-copy > p, .contact-copy > p { color: var(--ink-soft); margin: 0; font-size: 1.03rem; }
.section-heading.split-heading { display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; }
.section-heading.split-heading p { padding-bottom: 8px; }

.problem-solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.problem-card { background: #fff; border: 1px solid #eee8e4; border-radius: var(--radius); padding: 30px; box-shadow: 0 10px 25px rgba(23,36,58,.04); transition: transform .25s, box-shadow .25s; }
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-number { display: block; color: #ffc266; font-weight: 900; letter-spacing: .12em; font-size: .8rem; }
.problem-card h3 { font-size: 1.15rem; line-height: 1.55; margin: 12px 0 10px; }
.problem-card p { color: var(--ink-soft); margin: 0 0 24px; font-size: .9rem; }
.solution-line { border-top: 1px solid var(--line); padding-top: 18px; font-weight: 800; font-size: .88rem; }
.solution-line span { display: inline-block; color: #fff; background: var(--green); border-radius: 99px; padding: 2px 9px; font-size: .7rem; margin-right: 8px; }

.cycle-section { background: linear-gradient(180deg,#fff 0,#f8fafc 100%); }
.cycle { display: grid; grid-template-columns: repeat(11, auto); align-items: center; justify-content: center; gap: 9px; }
.cycle-step { width: 145px; height: 145px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(23,36,58,.07); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; position: relative; }
.cycle-step:nth-of-type(odd) { background: linear-gradient(145deg,#fff,#fff8ee); }
.cycle-step span { position: absolute; top: 10px; color: #ffc266; font-size: .71rem; font-weight: 900; }
.cycle-step strong { font-size: 1.15rem; margin-bottom: 4px; }
.cycle-step small { color: var(--ink-soft); font-size: .69rem; }
.cycle-arrow { color: var(--coral); font-size: 1.5rem; font-weight: 900; }

.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 31px; min-height: 260px; background: #fff; transition: .25s ease; }
.feature-card:hover { border-color: #ffe0b0; box-shadow: var(--shadow); transform: translateY(-4px); }
.feature-icon { width: 55px; height: 55px; border-radius: 18px; display: grid; place-items: center; background: var(--peach); color: var(--coral-dark); font-weight: 900; font-size: .85rem; margin-bottom: 24px; }
.feature-card h3 { margin: 0 0 11px; font-size: 1.16rem; }
.feature-card p { color: var(--ink-soft); margin: 0; font-size: .91rem; }
.options-note { margin: 26px auto 0; max-width: 760px; text-align: center; color: var(--ink-soft); font-size: .82rem; line-height: 1.75; }

.visual-section { overflow: hidden; }
.visual-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 75px; }
.section-kicker.light { color: #ffb84d; }
.visual-copy > p { color: rgba(255,255,255,.72); }
.check-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 13px; }
.check-list li { font-weight: 700; color: rgba(255,255,255,.92); }
.check-list li::before { content: "✓"; display: inline-grid; place-items: center; width: 24px; height: 24px; margin-right: 11px; border-radius: 50%; background: rgba(255,149,0,.18); color: #ffc266; }
.visual-image { margin: 0; position: relative; }
.visual-image img { border-radius: 30px; box-shadow: 0 28px 80px rgba(0,0,0,.35); }
.visual-image::before { content: ""; position: absolute; inset: -25px -40px auto auto; width: 180px; height: 180px; border-radius: 50%; background: rgba(255,149,0,.18); z-index: 0; }
.visual-image img, .visual-image figcaption { position: relative; z-index: 1; }
.visual-image figcaption { color: rgba(255,255,255,.55); font-size: .76rem; margin-top: 12px; text-align: right; }

.acquisition-section { background: #fff; }
.channel-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.channel-card { min-height: 250px; padding: 27px 23px; border-radius: 22px; background: linear-gradient(180deg,#fff,#fffaf2); border: 1px solid #f0e8e4; }
.channel-card span { color: #ffc266; font-weight: 900; font-size: .75rem; }
.channel-card h3 { margin: 26px 0 11px; font-size: 1.08rem; }
.channel-card p { color: var(--ink-soft); font-size: .87rem; margin: 0; }

.dashboard-section { background: #f5f8fb; }
.dashboard-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 75px; align-items: center; }
.dashboard-mockup { background: #fff; border-radius: 24px; box-shadow: 0 30px 75px rgba(23,36,58,.14); overflow: hidden; border: 1px solid #e7ecf2; }
.dash-top { height: 56px; background: var(--navy); color: #fff; display: flex; justify-content: space-between; align-items: center; padding: 0 22px; font-size: .72rem; }
.dash-logo { font-weight: 900; letter-spacing: .06em; }
.dash-user { color: rgba(255,255,255,.68); }
.dash-body { display: grid; grid-template-columns: 140px 1fr; min-height: 410px; }
.dash-body aside { background: #f4f7fa; padding: 22px 12px; display: grid; align-content: start; gap: 8px; }
.dash-body aside span { padding: 9px 11px; border-radius: 8px; color: #778293; font-size: .68rem; }
.dash-body aside .active { background: #fff5e6; color: var(--coral-dark); font-weight: 800; }
.dash-main { padding: 26px; }
.dash-title { display: flex; justify-content: space-between; align-items: center; }
.dash-title strong { font-size: .95rem; }
.dash-title small { color: #9aa4b0; font-size: .58rem; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 22px; }
.dash-stats div { background: #f8fafc; border: 1px solid #edf0f4; padding: 16px; border-radius: 12px; }
.dash-stats small { display: block; color: #7e8997; font-size: .62rem; }
.dash-stats strong { font-size: 1.45rem; margin-right: 3px; }
.dash-stats em { font-style: normal; color: #8b95a1; font-size: .6rem; }
.dash-chart { margin-top: 23px; height: 200px; background: repeating-linear-gradient(to bottom,#f4f6f8 0,#f4f6f8 1px,transparent 1px,transparent 48px); position: relative; border-bottom: 1px solid #e8ebef; }
.bars { position: absolute; inset: 20px 20px 25px; display: flex; align-items: end; gap: 13px; }
.bars i { flex: 1; min-width: 10px; background: linear-gradient(180deg,#ffb347,var(--coral)); border-radius: 5px 5px 0 0; }
.chart-labels { position: absolute; bottom: -20px; inset-inline: 0; display: flex; justify-content: space-around; color: #9aa4b0; font-size: .55rem; }
.dashboard-copy > p { color: var(--ink-soft); }
.mini-benefits { margin-top: 30px; display: grid; gap: 16px; }
.mini-benefits div { border-left: 3px solid var(--coral); padding-left: 16px; }
.mini-benefits strong, .mini-benefits span { display: block; }
.mini-benefits span { color: var(--ink-soft); font-size: .85rem; }

.operation-grid { display: grid; grid-template-columns: 1.03fr .97fr; gap: 75px; align-items: center; }
.operation-image { margin: 0; }
.operation-image img { border-radius: 28px; box-shadow: var(--shadow); }
.number-list { list-style: none; padding: 0; margin: 31px 0 0; display: grid; gap: 17px; }
.number-list li { display: flex; align-items: center; gap: 16px; }
.number-list li > span { flex: 0 0 40px; width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 900; font-size: .8rem; }
.number-list strong, .number-list small { display: block; }
.number-list small { color: var(--ink-soft); }

.benefit-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.benefit-card { padding: 28px 24px; border-top: 3px solid var(--coral); background: #fff; box-shadow: 0 14px 35px rgba(23,36,58,.07); border-radius: 0 0 18px 18px; }
.benefit-card > span { color: #ffc266; font-weight: 900; font-size: .7rem; }
.benefit-card h3 { font-size: 1.05rem; margin: 18px 0 10px; }
.benefit-card p { color: var(--ink-soft); font-size: .84rem; margin: 0; }

.future-section { padding-top: 25px; }
.future-card { display: grid; grid-template-columns: 1fr .65fr; gap: 60px; align-items: center; background: linear-gradient(135deg,#fff8ee,#f0f8f5); border-radius: 34px; padding: 65px 75px; overflow: hidden; }
.future-copy small { color: #7a8594; }
.future-visual { display: grid; place-items: center; }
.orbit { width: 280px; height: 280px; position: relative; border: 1px dashed rgba(23,36,58,.24); border-radius: 50%; display: grid; place-items: center; }
.orbit::before { content: ""; position: absolute; width: 190px; height: 190px; border: 1px dashed rgba(23,36,58,.18); border-radius: 50%; }
.orbit b { width: 105px; height: 105px; border-radius: 35px; background: linear-gradient(145deg,var(--coral),#ffb347); color: #fff; display: grid; place-items: center; text-align: center; box-shadow: 0 18px 30px rgba(255,149,0,.25); z-index: 2; }
.orbit span { position: absolute; background: #fff; padding: 7px 13px; border-radius: 99px; box-shadow: 0 8px 20px rgba(23,36,58,.1); font-size: .75rem; font-weight: 800; }
.orbit span:nth-child(1){top:-5px;left:50%;transform:translateX(-50%)}
.orbit span:nth-child(2){right:-18px;top:50%;transform:translateY(-50%)}
.orbit span:nth-child(3){bottom:-5px;left:50%;transform:translateX(-50%)}
.orbit span:nth-child(4){left:-25px;top:50%;transform:translateY(-50%)}

.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: process; }
.process-card { background: #fff; border-radius: 22px; padding: 30px; position: relative; min-height: 225px; border: 1px solid #eee9e5; }
.process-card:not(:last-child)::after { content: "→"; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); z-index: 2; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--coral); color: #fff; font-weight: 900; }
.process-card > span { color: var(--coral-dark); font-size: .72rem; letter-spacing: .1em; font-weight: 900; }
.process-card h3 { font-size: 1.08rem; margin: 23px 0 11px; }
.process-card p { color: var(--ink-soft); font-size: .86rem; margin: 0; }

.plan-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 35px; display: flex; flex-direction: column; box-shadow: 0 14px 35px rgba(23,36,58,.05); }
.plan-card.featured { border: 2px solid var(--coral); transform: translateY(-12px); box-shadow: 0 25px 50px rgba(255,149,0,.16); }
.recommend { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--coral); color: #fff; padding: 5px 18px; border-radius: 99px; font-weight: 900; font-size: .72rem; }
.plan-head span { color: var(--coral-dark); font-weight: 900; letter-spacing: .13em; font-size: .7rem; }
.plan-head h3 { font-size: 1.65rem; margin: 8px 0 3px; }
.plan-head p { color: var(--ink-soft); margin: 0; font-size: .86rem; }
.plan-price { margin: 27px 0; padding: 20px 0; border-block: 1px solid var(--line); font-size: 1.35rem; font-weight: 900; }
.plan-card ul { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 11px; flex: 1; }
.plan-card li { color: var(--ink-soft); font-size: .89rem; }
.plan-card li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 9px; }
.price-breakdown { margin-top: 55px; background: var(--navy); color: #fff; border-radius: 26px; padding: 35px 40px; }
.price-breakdown h3 { margin: 0 0 24px; }
.price-items { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; }
.price-items div { padding: 0 20px; border-left: 1px solid rgba(255,255,255,.15); }
.price-items div:first-child { border-left: 0; padding-left: 0; }
.price-items strong, .price-items span { display: block; }
.price-items strong { color: #ffc266; font-size: .85rem; margin-bottom: 6px; }
.price-items span { color: rgba(255,255,255,.68); font-size: .75rem; line-height: 1.6; }

.faq-container { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid #eae8e5; border-radius: 16px; overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 21px 58px 21px 22px; font-weight: 800; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span, .faq-item summary span::after { content: ""; position: absolute; width: 16px; height: 2px; background: var(--coral); right: 22px; top: 50%; transition: transform .2s; }
.faq-item summary span::after { right: 0; top: 0; transform: rotate(90deg); }
.faq-item[open] summary span::after { transform: rotate(0); }
.faq-item div { padding: 0 22px 22px; color: var(--ink-soft); font-size: .9rem; }
.faq-item p { margin: 0; }

.contact-section { background: var(--navy); color: #fff; padding: 105px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 75px; align-items: start; }
.contact-copy > p { color: rgba(255,255,255,.7); }
.contact-notes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.contact-notes span { border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.86); border-radius: 99px; padding: 7px 13px; font-size: .78rem; }
.contact-form { background: #fff; color: var(--ink); border-radius: 28px; padding: 38px; box-shadow: 0 30px 80px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; font-weight: 800; font-size: .85rem; }
.contact-form label > span:not(.consent span) { color: var(--coral-dark); font-size: .65rem; margin-left: 5px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #dfe3e8; border-radius: 11px; padding: 12px 13px; background: #fbfcfd; color: var(--ink); outline: none; transition: border .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,149,0,.12); }
.contact-form textarea { resize: vertical; }
.contact-form .consent { display: flex; align-items: flex-start; gap: 9px; font-weight: 500; font-size: .76rem; color: var(--ink-soft); }
.contact-form .consent input { width: 17px; height: 17px; margin-top: 4px; flex: 0 0 auto; }
.form-note { margin: 10px 0 0; text-align: center; color: #89939f; font-size: .72rem; }

.site-footer { background: #0d182a; color: #fff; padding: 65px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 70px; }
.footer-brand .brand-text small { color: #ffb84d; }
.footer-grid > div:first-child > p { color: rgba(255,255,255,.5); max-width: 500px; font-size: .83rem; margin-top: 19px; }
.footer-links { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 7px; }
.footer-links a { color: rgba(255,255,255,.58); font-size: .82rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; color: rgba(255,255,255,.4); font-size: .75rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .global-nav { gap: 16px; font-size: .8rem; }
  .global-nav .nav-back { display: none; }
  .hero-content { width: 75%; }
  .problem-solution-grid, .feature-grid { grid-template-columns: repeat(2,1fr); }
  .cycle { grid-template-columns: repeat(5, auto); row-gap: 22px; }
  .cycle-step { width: 130px; height: 130px; }
  .cycle-arrow:nth-of-type(5) { display: none; }
  .channel-grid, .benefit-grid { grid-template-columns: repeat(3,1fr); }
  .price-items { grid-template-columns: repeat(3,1fr); row-gap: 25px; }
  .price-items div:nth-child(4) { border-left: 0; padding-left: 0; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { height: 68px; }
  body { padding-top: 68px; }
  .hero { min-height: 690px; }
  .menu-button { display: block; z-index: 2; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .global-nav { position: fixed; left: 0; right: 0; top: 68px; background: #fff; padding: 20px 24px 25px; display: grid; gap: 0; border-bottom: 1px solid var(--line); box-shadow: 0 20px 30px rgba(23,36,58,.1); transform: translateY(-130%); opacity: 0; transition: .25s ease; }
  .global-nav.open { transform: none; opacity: 1; }
  .global-nav > a:not(.button) { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .global-nav .nav-back { display: block; }
  .global-nav .button { margin-top: 14px; }
  .hero-media { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg,rgba(14,27,47,.95),rgba(14,27,47,.73)); }
  .hero-content { width: 100%; padding-block: 80px; }
  .hero h1 { font-size: clamp(1.8rem,6vw,2.8rem); }
  .hero-lead br { display: none; }
  .intro-grid { grid-template-columns: repeat(2,1fr); }
  .intro-grid div:nth-child(2) { border-right: 0; }
  .intro-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .section-heading.split-heading { grid-template-columns: 1fr; gap: 10px; }
  .problem-solution-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .cycle { grid-template-columns: repeat(3,auto); }
  .cycle-arrow { transform: rotate(0); }
  .visual-grid, .dashboard-grid, .operation-grid, .future-card, .contact-grid, .faq-container { grid-template-columns: 1fr; }
  .visual-grid, .dashboard-grid, .operation-grid, .contact-grid { gap: 45px; }
  .visual-copy { order: 1; }
  .visual-image { order: 2; }
  .channel-grid, .benefit-grid { grid-template-columns: repeat(2,1fr); }
  .future-card { padding: 48px 35px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card:nth-child(2)::after { display: none; }
  .plan-grid { grid-template-columns: 1fr; max-width: 580px; margin-inline: auto; }
  .plan-card.featured { transform: none; }
  .price-items { grid-template-columns: repeat(2,1fr); }
  .price-items div:nth-child(3), .price-items div:nth-child(5) { border-left: 0; padding-left: 0; }
  .price-items div:nth-child(4) { border-left: 1px solid rgba(255,255,255,.15); padding-left: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 560px) {
  .brand-mark { width: 38px; height: 38px; border-radius: 12px; }
  .brand-text strong { font-size: .95rem; }
  .hero { min-height: 680px; }
  .hero-content { padding-block: 60px; }
  .hero h1 { font-size: 1.8rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-points { display: grid; gap: 7px; }
  .intro-grid { grid-template-columns: 1fr; }
  .intro-grid div { border-right: 0; border-bottom: 1px solid var(--line); padding: 18px 6px; }
  .intro-grid div:last-child { border-bottom: 0; }
  .section { padding: 70px 0; }
  .section-heading { margin-bottom: 38px; }
  .problem-solution-grid, .feature-grid, .channel-grid, .benefit-grid, .process-grid { grid-template-columns: 1fr; }
  .cycle { grid-template-columns: 1fr; gap: 10px; }
  .cycle-step { width: 160px; height: 160px; }
  .cycle-arrow { transform: rotate(90deg); }
  .channel-card { min-height: auto; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-body aside { display: none; }
  .dash-main { padding: 18px; }
  .dash-stats { gap: 6px; }
  .dash-stats div { padding: 10px; }
  .dash-stats strong { font-size: 1.1rem; }
  .future-card { padding: 38px 22px; }
  .orbit { width: 225px; height: 225px; }
  .orbit::before { width: 145px; height: 145px; }
  .orbit b { width: 92px; height: 92px; }
  .process-card:not(:last-child)::after { display: none; }
  .price-breakdown { padding: 28px 22px; }
  .price-items { grid-template-columns: 1fr; }
  .price-items div { border-left: 0 !important; border-top: 1px solid rgba(255,255,255,.12); padding: 15px 0 !important; }
  .price-items div:first-child { border-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { display: grid; gap: 8px; }
}

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

/* ============================================================
   トンマナ統一 (利用者LP / home に合わせる) — 2026-07-21
   移植元サイトの極太(weight 700〜900)・特大フォントを、本プロジェクトの
   規約(太字禁止・weight 500 基準)と home のタイプスケールに寄せる。
   元ルールは上にそのまま残し、ここで最後に上書きする(可逆)。
   ※このCSSは当該LPページでのみ読み込まれるため、影響は当該LPに閉じる。
   ============================================================ */

/* 太字は使わない(規約: weight 600+ 禁止)。階層は size と色で作る home 方式に統一 */
body,
body * { font-weight: 500 !important; }

/* ヒーロー見出し: 移植の最大 4.7〜6rem / weight 850 → 抑制的なマーケサイズ / 500。
   ヒーローは利用者LPと同一にはせず、マーケらしい大きさは残す。 */
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}

/* セクション見出し: 移植の最大 3.4rem → home の text-2xl(1.5rem) 相当に */
.section-heading h2,
.visual-copy h2,
.dashboard-copy h2,
.operation-copy h2,
.future-copy h2,
.contact-copy h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  letter-spacing: -.02em;
}

/* フォントも利用者LP(システム)と同じ Zen Maru Gothic に統一。
   base.html.twig で全ページ読込済み。LP の body が OS既定ゴシックに
   上書きしていたのを、ここで最後に戻す。 */
body { font-family: 'Zen Maru Gothic', sans-serif !important; }
