/* ============================================================
   株式会社ReALL — Meta広告運用代行 LP v3 (2026-07)
   エディトリアル設計: 紙色 × 藍 × 黄
   - 等幅フォントのセクション番号 (01)–
   - Archivo の巨大数字・アウトライン文字帯
   - 細罫線での分割 / 角丸なし / ハードシャドウ
   ============================================================ */

:root {
  /* colors */
  --paper: #f5f3ec;        /* 紙色の地 */
  --paper-2: #eeebe0;      /* 一段濃い紙色 */
  --ink: #14181f;          /* 墨色（本文・罫線・帯） */
  --ink-soft: #495061;
  --navy: #1c3b8f;         /* ブランド藍 */
  --yellow: #ffd000;       /* ブランド黄（図形として使う） */
  --line: rgba(20, 24, 31, .18);
  --line-strong: rgba(20, 24, 31, .85);

  /* type */
  --font-jp: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Archivo", "Zen Kaku Gothic New", sans-serif;
  --font-mono: "IBM Plex Mono", "Menlo", monospace;

  /* misc */
  --header-h: 72px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-jp);
  font-size: 15.5px;
  line-height: 1.95;
  letter-spacing: .02em;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote, fieldset { margin: 0; }
fieldset { border: 0; padding: 0; }
button { font-family: inherit; }
::selection { background: var(--yellow); color: var(--ink); }

/* 紙の質感（グレイン） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 880px; }

.br-pc { display: inline; }
.br-sp { display: none; }
@media (max-width: 768px) {
  .br-pc { display: none; }
  .br-sp { display: inline; }
}

/* ---------- buttons（エディトリアル・ハードシャドウ） ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  line-height: 1.4;
  border: 1.5px solid var(--ink);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s;
}
.btn--cta {
  background: var(--yellow);
  color: var(--ink);
  padding: 15px 30px;
  font-size: .98rem;
  letter-spacing: .04em;
  box-shadow: 4px 4px 0 var(--ink);
}
.btn--cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.btn--cta:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.btn--cta .btn__arrow { font-family: var(--font-en); transition: transform .18s var(--ease); }
.btn--cta:hover .btn__arrow { transform: translateX(4px); }
.btn--lg { padding: 18px 40px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn--header { padding: 10px 18px; font-size: .88rem; box-shadow: 3px 3px 0 var(--ink); }
.btn--ghost {
  padding: 15px 28px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(20, 24, 31, .05); }

/* ---------- header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 243, 236, .94);
  backdrop-filter: blur(6px);
  border-bottom: 1.5px solid var(--ink);
  transition: transform .35s var(--ease);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo img { width: 112px; height: auto; }
.nav { display: flex; gap: 24px; margin-left: auto; }
.nav a {
  font-size: .88rem;
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 8px 28px 22px;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
}
.nav-mobile a {
  font-weight: 500;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
}
.nav-mobile .btn { margin-top: 18px; border-bottom: 1.5px solid var(--ink); }
.nav-mobile.is-open { display: flex; }

@media (max-width: 1000px) {
  .nav, .btn--header { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
}

/* ---------- ヒーロー（エディトリアル） ---------- */
.hero {
  position: relative;
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
  padding: 76px 0 0;
}
.hero__ghost {
  position: absolute;
  top: 4px; left: -12px;
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 120%;
  font-size: clamp(80px, 15vw, 210px);
  line-height: 1;
  letter-spacing: .02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(20, 24, 31, .11);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 68px;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero__eyebrow::after {
  content: "";
  width: 52px; height: 1px;
  background: var(--ink);
  opacity: .5;
}
.hero__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero__title-sub {
  display: block;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.hero__lead {
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 24px;
}
.hero__lead strong { color: var(--ink); }
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero__chips li {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  border: 1px solid var(--line-strong);
  padding: 6px 14px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero__campaign {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 11px 18px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.hero__campaign:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.hero__campaign-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: .66rem;
  letter-spacing: .14em;
  background: var(--ink);
  color: var(--yellow);
  padding: 5px 12px;
}
.hero__campaign-text { line-height: 1.5; }
.hero__campaign-text strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 900;
}
.hero__campaign-text small {
  display: block;
  font-size: .7rem;
  color: rgba(20, 24, 31, .75);
}
.hero__campaign-arrow {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.1rem;
  margin-left: 4px;
}
@media (max-width: 560px) {
  .hero__campaign { display: flex; gap: 10px; padding: 10px 14px; }
  .hero__campaign-text strong { font-size: .95rem; }
}

.hero__photo { position: relative; }
.hero__photo img {
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--yellow);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1.5px solid var(--ink);
}
.hero__stats li {
  padding: 22px 20px 6px;
  border-left: 1px solid var(--line);
}
.hero__stats li:first-child { border-left: 0; padding-left: 0; }
.hero__stats strong {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 110%;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
}
.hero__stats strong small { font-size: .45em; font-weight: 900; margin-left: 2px; }
.hero__stats span {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--ink-soft);
}
.hero__note {
  font-size: .68rem;
  color: var(--ink-soft);
  padding: 10px 0 18px;
}
@media (max-width: 900px) {
  .hero { padding: 48px 0 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
  .hero__photo { max-width: 560px; }
  .hero__photo img { box-shadow: 8px 8px 0 var(--yellow); }
}
@media (max-width: 560px) {
  .hero__eyebrow { font-size: 10px; letter-spacing: .16em; gap: 10px; }
  .hero__eyebrow::after { width: 30px; }
  .hero__stats li { padding: 16px 10px 4px; }
  .hero__stats strong { font-size: 1.5rem; }
  .hero__stats span { font-size: .6rem; letter-spacing: .04em; }
}

/* ---------- タイポグラフィ・バンド ---------- */
.band {
  display: flex;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 20px 0 24px;
  border-bottom: 1.5px solid var(--ink);
}
.band__inner {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
  animation: bandMove 26s linear infinite;
}
.band__item {
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 115%;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: .01em;
  white-space: nowrap;
}
.band__item--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 243, 236, .55);
}
.band__x {
  color: var(--yellow);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 24px);
}
@keyframes bandMove { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .band__inner { animation: none; } }

/* ---------- sections（共通・左揃えエディトリアル） ---------- */
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--paper-2); }
body { counter-reset: sec; }
.section__eyebrow {
  counter-increment: sec;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: left;
}
.section__eyebrow::before {
  content: "(" counter(sec, decimal-leading-zero) ")";
  color: var(--ink-soft);
}
.section__eyebrow::after {
  content: "";
  width: 52px; height: 1px;
  background: var(--ink);
  opacity: .5;
}
.section__title {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: .01em;
  text-align: left;
  margin-bottom: 48px;
}
.section__lead {
  text-align: left;
  color: var(--ink-soft);
  margin: -34px 0 48px;
  max-width: 680px;
}
.marker {
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
  padding: 0 .06em;
}
.text-brand { color: var(--navy); }

/* ---------- 資格・媒体 ---------- */
.section--quals { padding: 56px 0 60px; border-bottom: 1px solid var(--line); }
.quals__lead {
  font-family: var(--font-mono);
  text-align: center;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.quals {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 250px));
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}
@media (max-width: 760px) {
  .quals { grid-template-columns: repeat(2, 1fr); }
}
.qual {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 10px 16px;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
}
.qual__logo { flex-shrink: 0; display: grid; place-items: center; }
.media-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.mi {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  padding: 7px 14px;
  white-space: nowrap;
}
.marquee {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee .media-icons {
  flex: 0 0 auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 8px;
  padding-right: 8px;
  animation: marquee-scroll 26s linear infinite;
}
.marquee:hover .media-icons { animation-play-state: paused; }
@keyframes marquee-scroll { to { transform: translateX(-100%); } }
@media (prefers-reduced-motion: reduce) { .marquee .media-icons { animation: none; } }

/* ---------- お悩み（番号付き・罫線区切り） ---------- */
.problems {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px 22px;
  counter-reset: prob;
}
.problem {
  counter-increment: prob;
  position: relative;
  border-top: 2px solid var(--ink);
  padding: 20px 4px 44px;
  text-align: left;
}
.problem::after {
  content: counter(prob, decimal-leading-zero);
  position: absolute;
  right: 2px; bottom: 4px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px rgba(20, 24, 31, .3);
}
.problem__icon {
  width: 44px; height: 44px;
  margin-bottom: 14px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
}
.problem__icon svg { width: 22px; height: 22px; }
.problem p { font-size: .92rem; font-weight: 700; line-height: 1.7; }
.problems__bridge { display: flex; justify-content: center; margin-top: 46px; }
.problems__bridge span {
  width: 0; height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 18px solid var(--ink);
}
@media (max-width: 960px) { .problems { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .problems { grid-template-columns: repeat(2, 1fr); } }

/* ---------- 解決 ---------- */
.solution {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}
.solution .section__eyebrow { justify-content: flex-start; }
.solution__title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 900;
  line-height: 1.55;
  margin-bottom: 20px;
}
.solution__body { color: var(--ink-soft); margin-bottom: 26px; }
.checklist li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .3em;
  width: 20px; height: 20px;
  background: var(--yellow);
  border: 1.5px solid var(--ink);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 5px; top: calc(.3em + 5px);
  width: 8px; height: 4px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}
.solution__photo { position: relative; }
.solution__photo img {
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
}
.solution__photo-accent { display: none; }
@media (max-width: 900px) {
  .solution { grid-template-columns: 1fr; gap: 44px; }
  .solution__photo { max-width: 560px; margin: 0 auto; }
  .solution__photo img { box-shadow: 8px 8px 0 var(--yellow); }
}

/* ---------- 数字で見る成果（墨色バンド・巨大数字） ---------- */
.section--dark {
  background: var(--ink);
  color: var(--paper);
}
.section--dark .section__eyebrow { color: var(--yellow); }
.section--dark .section__eyebrow::before { color: rgba(245, 243, 236, .5); }
.section--dark .section__eyebrow::after { background: var(--paper); }
.section--dark .section__title { color: var(--paper); }
.section--dark .section__lead { color: rgba(245, 243, 236, .68); }
.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(245, 243, 236, .25);
  border-bottom: 1px solid rgba(245, 243, 236, .25);
}
.metric {
  text-align: left;
  padding: 30px 20px 26px;
  border-left: 1px solid rgba(245, 243, 236, .25);
}
.metric:first-child { border-left: 0; }
.metric__num {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 110%;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  color: var(--yellow);
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.metric__unit { font-size: .5em; margin-left: 2px; }
.metric__label {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(245, 243, 236, .85);
  line-height: 1.7;
}
.metric__label small { color: rgba(245, 243, 236, .5); }
.results__disclaimer {
  margin-top: 26px;
  text-align: left;
  font-size: .74rem;
  color: var(--ink-soft);
}
.results__disclaimer--onDark { color: rgba(245, 243, 236, .45); }
@media (max-width: 960px) {
  .metrics { grid-template-columns: repeat(3, 1fr); }
  .metric:nth-child(4) { border-left: 0; border-top: 1px solid rgba(245,243,236,.25); }
  .metric:nth-child(5) { border-top: 1px solid rgba(245,243,236,.25); }
}
@media (max-width: 600px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric { border: 0 !important; border-bottom: 1px solid rgba(245,243,236,.25) !important; }
}

/* ---------- 選ばれる理由（巨大番号カラム） ---------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.reason {
  position: relative;
  border-top: 2px solid var(--ink);
  padding: 24px 4px 0;
}
.reason__num {
  display: block;
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 115%;
  font-size: 3.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 20px;
  position: static;
}
.reason__icon {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--paper);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.reason__icon svg { width: 24px; height: 24px; }
.reason__title {
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.65;
  margin-bottom: 10px;
}
.reason__body { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .reasons { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; gap: 30px; }
}

/* ---------- 比較表 ---------- */
.compare__wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--paper);
  border: 2px solid var(--ink);
}
.compare th, .compare td {
  padding: 16px 20px;
  text-align: center;
  font-size: .92rem;
  border-bottom: 1px solid var(--line);
}
.compare thead th {
  font-size: .98rem;
  font-weight: 900;
  padding: 18px 20px;
  border-bottom: 2px solid var(--ink);
}
.compare__corner { background: var(--paper); }
.compare__us { background: var(--yellow); color: var(--ink); }
.compare__them { background: var(--paper-2); color: var(--ink-soft); }
.compare tbody th {
  text-align: left;
  font-weight: 700;
  background: var(--paper-2);
  width: 30%;
}
.compare td.is-us { font-weight: 700; border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
.compare td.is-them { color: var(--ink-soft); }
.mark {
  display: inline-grid;
  place-items: center;
  width: 27px; height: 27px;
  border-radius: 50%;
  font-weight: 900;
  font-size: .85rem;
  margin-right: 10px;
  vertical-align: middle;
  border: 1.5px solid var(--ink);
}
.mark--o { background: var(--yellow); color: var(--ink); }
.mark--tri { background: var(--paper-2); color: var(--ink-soft); border-color: var(--line-strong); }
.mark--x { background: var(--ink); color: var(--paper); }
.cell-text { vertical-align: middle; }
.compare__note {
  margin-top: 16px;
  font-size: .74rem;
  color: var(--ink-soft);
}

/* ---------- 実績・対応領域 ---------- */
.results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1.5px solid var(--ink);
  border-left: 1.5px solid var(--ink);
}
.result {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 20px 18px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  background: var(--paper);
  transition: background .2s;
}
.result:hover { background: #fffbe6; }
.result svg { width: 30px; height: 30px; flex-shrink: 0; color: var(--navy); }
.result strong { display: block; font-size: .92rem; line-height: 1.5; }
.result span { display: block; font-size: .76rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 900px) { .results { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .results { grid-template-columns: 1fr; } }

/* ---------- お客様の声 ---------- */
.voices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.voice {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  padding: 28px 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.voice::before {
  content: "\201C";
  position: absolute;
  top: 2px; left: 16px;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
}
.voice__quote {
  font-size: .9rem;
  padding-top: 26px;
  margin-bottom: 20px;
  flex: 1;
}
.voice__quote strong { color: var(--navy); }
.voice__name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  font-weight: 700;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  line-height: 1.5;
}
.voice__name small { font-weight: 400; color: var(--ink-soft); font-family: var(--font-mono); font-size: .68rem; }
.voice__avatar { border-radius: 50%; flex-shrink: 0; border: 1.5px solid var(--ink); }
.voice__disclaimer { margin-top: 22px; font-size: .74rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .voices { grid-template-columns: 1fr; max-width: 600px; }
}

/* ---------- サービスの流れ ---------- */
.flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px 22px;
  counter-reset: fl;
}
.flow-step {
  position: relative;
  border-top: 2px solid var(--ink);
  padding: 18px 2px 0;
  text-align: left;
}
.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 20px; right: -18px;
  font-family: var(--font-en);
  font-weight: 900;
  color: var(--navy);
}
.flow-step__num {
  position: static;
  transform: none;
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ink);
  background: none;
  padding: 0;
  margin-bottom: 14px;
}
.flow-step__icon {
  width: 42px; height: 42px;
  margin: 0 0 12px;
  background: var(--ink);
  color: var(--yellow);
  display: grid;
  place-items: center;
}
.flow-step__icon svg { width: 20px; height: 20px; }
.flow-step h3 { font-size: .95rem; font-weight: 900; line-height: 1.55; margin-bottom: 6px; }
.flow-step p { font-size: .76rem; color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 960px) {
  .flow { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 26px; }
  .flow-step:not(:last-child)::after {
    top: auto; right: auto;
    bottom: -24px; left: 2px;
    content: "↓";
  }
}

/* ---------- 料金 ---------- */
.price {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.price-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  text-align: left;
  padding: 32px 30px 30px;
}
.price-card--featured {
  background: #fff9dc;
  box-shadow: 10px 10px 0 var(--yellow);
}
.price-card__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.price-card__amt { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.price-card__amt strong {
  font-family: var(--font-en);
  font-weight: 900;
  font-stretch: 110%;
  font-size: 2.2rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.price-card__amt .yen { font-size: 1rem; margin-left: 2px; }
.price-card__sub { font-size: .94rem; margin-bottom: 6px; }
.price-card__sub strong { color: var(--navy); }
.price-card__note { font-size: .78rem; color: var(--ink-soft); line-height: 1.8; }
.price__note {
  margin-top: 30px;
  font-weight: 700;
  color: var(--navy);
}
@media (max-width: 760px) { .price { grid-template-columns: minmax(0, 440px); } }

/* ---------- CTAバンド ---------- */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  padding: 52px 0;
  border-top: 1.5px solid var(--ink);
}
.cta-band__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band__title {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 900;
  line-height: 1.7;
}
@media (max-width: 760px) { .cta-band__inner { justify-content: flex-start; } }

/* ---------- 代表メッセージ ---------- */
.message {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.message__photo img {
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--yellow);
}
.message__body p { margin-bottom: 1.25em; }
.message__sign {
  margin-top: 28px;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--ink-soft);
}
.message__sign strong { font-family: var(--font-jp); font-size: 1.3rem; color: var(--ink); }
@media (max-width: 760px) {
  .message { grid-template-columns: 1fr; }
  .message__photo { max-width: 260px; }
}

/* ---------- FAQ ---------- */
.faq { border-top: 2px solid var(--ink); }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  padding: 20px 52px 20px 2px;
  position: relative;
  transition: background .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::before {
  content: "Q";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-en);
  font-weight: 900;
}
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 10px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item summary:hover { background: rgba(20, 24, 31, .04); }
.faq__a {
  padding: 0 2px 22px 48px;
  color: var(--ink-soft);
  font-size: .94rem;
}

/* ---------- キャンペーン（黄色ブロック） ---------- */
.section--campaign { background: var(--paper-2); }
.campaign {
  text-align: center;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
  padding: 50px 34px 46px;
}
.campaign__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  background: var(--ink);
  color: var(--yellow);
  padding: 8px 22px;
  margin-bottom: 22px;
}
.campaign__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.campaign__title .text-yellow {
  color: inherit;
  background: linear-gradient(transparent 62%, var(--paper) 62%);
}
.campaign__lead { margin-bottom: 26px; }
.campaign__lead strong { color: var(--navy); }
.campaign__perks {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto 30px;
  text-align: left;
}
.campaign__perks li::before { background: var(--paper); }
.countdown { margin-bottom: 32px; }
.countdown__label {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  margin-bottom: 12px;
}
.countdown__timer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.cd {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 8px 14px;
}
.cd__num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.9rem;
  line-height: 1.1;
  min-width: 1.6em;
  text-align: center;
}
.cd__unit { font-size: .74rem; color: var(--ink-soft); }
.cd__sep { font-family: var(--font-en); font-weight: 900; font-size: 1.3rem; }
.countdown__ended { font-weight: 700; }
.campaign .btn--cta {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--paper);
}
.campaign .btn--cta:hover { box-shadow: 6px 6px 0 var(--paper); }
@media (max-width: 560px) {
  .countdown__timer { gap: 5px; }
  .cd { padding: 5px 7px; gap: 2px; }
  .cd__num { font-size: 1.15rem; min-width: 1.4em; }
  .cd__unit { font-size: .6rem; white-space: nowrap; }
  .cd__sep { display: none; }
  .campaign { padding: 40px 16px 38px; box-shadow: 8px 8px 0 var(--ink); }
  .campaign .btn--lg { width: 100%; font-size: .92rem; padding: 16px 10px; gap: .35em; }
}

/* ---------- お問い合わせ（墨色バンド） ---------- */
.section--contact {
  background: var(--ink);
  color: var(--paper);
}
.contact {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.contact__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .16em;
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  padding: 8px 18px;
  margin-bottom: 24px;
}
.contact__title {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 18px;
}
.contact__title-em { background: linear-gradient(transparent 62%, rgba(255, 208, 0, .85) 62%); color: var(--paper); }
.contact__title-em, .section--contact .contact__title-em { color: var(--paper); }
.contact__lead { color: rgba(245, 243, 236, .78); margin-bottom: 32px; }
.contact__lead strong { color: var(--yellow); }
.contact__steps { margin-bottom: 28px; border-top: 1px solid rgba(245, 243, 236, .25); }
.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(245, 243, 236, .25);
}
.step__num {
  font-family: var(--font-en);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.2;
  color: transparent;
  -webkit-text-stroke: 1px var(--yellow);
  flex-shrink: 0;
  padding-top: 2px;
}
.step__body strong { display: block; margin-bottom: 2px; }
.step__body span { font-size: .82rem; color: rgba(245, 243, 236, .6); }
.contact__perks { display: flex; flex-wrap: wrap; gap: 8px; }
.contact__perks li {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  border: 1px solid rgba(245, 243, 236, .4);
  padding: 6px 14px;
}

.form {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
  padding: 34px 30px;
  color: var(--ink);
}
.form__row { margin-bottom: 20px; }
.form__row label, .form__row legend {
  display: block;
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form__row label:not(.check)::after, .form__row legend::after {
  content: "必須";
  font-size: .66rem;
  font-weight: 700;
  color: var(--paper);
  background: #c94040;
  padding: 2px 8px;
  margin-left: 8px;
  vertical-align: 1px;
}
.form__row--checks legend::after { content: "任意"; background: var(--ink-soft); }
.form input[type="text"],
.form input[type="email"],
.form textarea {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: 12px 14px;
  transition: box-shadow .15s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  box-shadow: 3px 3px 0 var(--yellow);
}
.form input.is-invalid, .form textarea.is-invalid {
  border-color: #c94040;
  background: #fff6f6;
}
.form textarea { resize: vertical; min-height: 110px; }
.check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  background: #ffffff;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  padding: 8px 14px;
  margin: 0 8px 8px 0;
  cursor: pointer;
  transition: background .15s;
}
.check:has(input:checked) { background: var(--yellow); font-weight: 700; }
.check input { accent-color: var(--ink); margin: 0; }
.form__error {
  color: #c94040;
  background: #fdeeee;
  border: 1px solid #c94040;
  font-size: .86rem;
  font-weight: 700;
  padding: 12px 16px;
  margin-bottom: 16px;
}
.form__note {
  margin-top: 14px;
  text-align: center;
  font-size: .78rem;
  color: var(--ink-soft);
}
.form-success {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 12px 12px 0 var(--yellow);
  padding: 60px 30px;
  text-align: center;
  color: var(--ink);
}
.form-success__icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 900;
  display: grid;
  place-items: center;
}
.form-success h3 { font-size: 1.2rem; font-weight: 900; margin-bottom: 10px; }
.form-success p { color: var(--ink-soft); }
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; gap: 44px; }
  .form { padding: 26px 18px; box-shadow: 8px 8px 0 var(--yellow); }
}

/* ---------- フッター ---------- */
.footer {
  background: var(--ink);
  color: rgba(245, 243, 236, .8);
  padding: 56px 0 0;
  border-top: 1px solid rgba(245, 243, 236, .2);
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  padding-bottom: 44px;
}
.logo--footer img { width: 136px; }
.footer__brand p { margin-top: 14px; font-size: .84rem; }
.footer__addr {
  font-family: var(--font-mono);
  color: rgba(245, 243, 236, .45);
  font-size: .72rem !important;
  margin-top: 8px !important;
  letter-spacing: .04em;
}
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 36px;
  align-content: start;
}
.footer__nav a { font-size: .86rem; color: rgba(245, 243, 236, .75); }
.footer__nav a:hover { color: var(--yellow); }
.footer__copy {
  font-family: var(--font-mono);
  text-align: center;
  font-size: .7rem;
  letter-spacing: .08em;
  color: rgba(245, 243, 236, .4);
  border-top: 1px solid rgba(245, 243, 236, .15);
  padding: 20px 24px;
  margin: 0;
}

/* ---------- floating CTA ---------- */
.floating-cta {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 90;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
  font-size: .92rem;
  border: 1.5px solid var(--ink);
  border-radius: 3px;
  padding: 14px 22px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .25s var(--ease), opacity .25s, visibility .25s;
}
.floating-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
@media (min-width: 1001px) { .floating-cta { display: none; } }

/* ---------- reveal（GSAP無効時のフォールバック） ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
