/* ============================================================
   Meguri health lab ─ 保育園AI伴走サポート マンガLP
   palette: paper #fff9f0 / ink #2e3a52 / pink #e0538c / mint #58ae8c / sky #e4f3f9 / yellow #f5c33b
   （ロゴ logo.png のピンク・ミント・イエローから採色）
============================================================ */

:root {
  --paper: #fff9f0;
  --cream: #faf0da;
  --sky: #e4f3f9;
  --pink-pale: #fbe7f0;
  --ink: #2e3a52;
  --ink-soft: #5a6373;
  --mint: #58ae8c;
  --mint-deep: #2f7d63;
  --mint-pale: #e2f4ec;
  --coral: #e0538c;
  --coral-deep: #c73e75;
  --yellow: #f5c33b;
  --line-green: #06c755;
  --white: #fffefa;
  --shadow: 0 10px 30px rgba(46, 58, 82, 0.10);
  --radius: 20px;
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --font-hand: "Yusei Magic", "Zen Maru Gothic", sans-serif;
  --w-wide: 1120px;
  --w-narrow: 760px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background-color: var(--paper);
  /* 紙の質感：ごく薄いピンクのドット網点 */
  background-image: radial-gradient(rgba(224, 83, 140, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
/* :where()で詳細度を0にして、各リストのmargin: 0 autoを妨げない */
:where(ul[role="list"], ol[role="list"]) { list-style: none; margin: 0; padding: 0; }

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

/* ---------- reveal（スクロール出現） ----------
   出現はopacity/transform、ホバーの浮き上がりはtranslateプロパティに分離し、
   遅延は--d変数でopacity/transformのみに適用する（ホバーには効かせない） */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .7s ease var(--d, 0s),
    transform .7s cubic-bezier(.22, .9, .3, 1.1) var(--d, 0s),
    translate .25s ease;
}
.reveal--left { transform: translateX(-40px); }
.reveal--right { transform: translateX(40px); }
.reveal--pop { transform: translateY(24px) scale(.94); }
.reveal--tilt { transform: translateY(32px) rotate(-2.5deg) scale(.97); }
.reveal.is-shown { opacity: 1; transform: none; }
.reveal.d1 { --d: .1s; }
.reveal.d2 { --d: .2s; }
.reveal.d3 { --d: .32s; }
.reveal.d4 { --d: .45s; }

/* ---------- ホバー時の浮き上がり ---------- */
.price__sub { transition: translate .25s ease; }
.service__card:hover, .price__sub:hover, .flow__step:hover, .reason__item:hover, .voice__card:hover { translate: 0 -5px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid var(--ink);
  padding: .8em 1.9em;
  font-size: 1rem;
  line-height: 1.4;
  cursor: pointer;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--white);
  color: var(--ink);
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.btn--primary { background: var(--coral); color: #fff; }
.btn--primary:hover { background: var(--coral-deep); }
.btn--ghost { background: var(--white); }
.btn--outline { background: transparent; }
.btn--line { background: var(--line-green); color: #fff; border-color: var(--ink); }
.btn--lg { padding: 1em 2.2em; font-size: 1.06rem; }
.btn--sm { padding: .5em 1.3em; font-size: .9rem; box-shadow: 3px 3px 0 var(--ink); }
.btn__arrow { font-family: var(--font-body); }

/* ---------- セクション共通 ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--mint { background: var(--mint-pale); }
.section--sky { background: var(--sky); }
.section--pinkpale { background: var(--pink-pale); }

/* 波形のセクション区切り（紙色の波を上下端に重ねて、色面をやわらかく切り替える） */
.section--cream::before, .section--mint::before, .section--sky::before, .section--pinkpale::before,
.section--cream::after, .section--mint::after, .section--sky::after, .section--pinkpale::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1100 32' preserveAspectRatio='none'%3E%3Cpath fill='%23fff9f0' d='M0,0 H1100 V12 C1008,28 917,28 825,12 C733,-4 642,-4 550,12 C458,28 367,28 275,12 C183,-4 92,-4 0,12 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 1100px 32px;
  pointer-events: none;
}
.section--cream::before, .section--mint::before, .section--sky::before, .section--pinkpale::before { top: -1px; }
.section--cream::after, .section--mint::after, .section--sky::after, .section--pinkpale::after { bottom: -1px; transform: scaleX(-1) scaleY(-1); }
.section__inner { max-width: var(--w-wide); margin: 0 auto; padding: 0 24px; }
.section__inner--narrow { max-width: var(--w-narrow); }

.section-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head__en {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .24em;
  color: var(--coral-deep);
  background: var(--white);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: .35em 1.3em .35em 1.55em;
  margin-bottom: 1.2em;
  box-shadow: 2px 2px 0 rgba(46,58,82,.18);
}
.section-head__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.5rem, 3.6vw, 2.15rem);
  line-height: 1.5;
  margin: 0;
  letter-spacing: .02em;
}
.section-head__lead { margin: 1.2em 0 0; color: var(--ink-soft); }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 249, 240, .92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
  transition: transform .3s ease;
}
.header__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; min-width: 0; }
.header__logo-img {
  width: 46px; height: 46px;
  object-fit: contain;
  flex: 0 0 auto;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  padding: 2px;
}
.header__logo-text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.header__logo-text strong { font-family: var(--font-head); font-weight: 900; font-size: 1rem; white-space: nowrap; }
.header__logo-text small { font-size: .68rem; color: var(--ink-soft); letter-spacing: .05em; white-space: nowrap; }

.header__nav { display: flex; align-items: center; gap: 22px; }
.header__nav-list { display: flex; gap: 22px; }
.header__nav-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .92rem;
  text-decoration: none;
  position: relative;
  padding: .3em 0;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 3px;
  background: var(--coral);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.header__nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ハンバーガー：buttonは空要素。3本線は background-image と ::before / ::after で描画 */
.header__hamburger {
  display: none;
  width: 46px; height: 46px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--ink);
  cursor: pointer;
  padding: 0;
  position: relative;
  background-color: var(--white);
  background-image: linear-gradient(var(--ink), var(--ink));
  background-repeat: no-repeat;
  background-size: 20px 2.5px;
  background-position: center;
}
.header__hamburger::before, .header__hamburger::after {
  content: "";
  position: absolute;
  left: 50%; top: calc(50% - 1.25px);
  width: 20px; height: 2.5px;
  margin-left: -10px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease;
}
.header__hamburger::before { transform: translateY(-8px); }
.header__hamburger::after { transform: translateY(8px); }
.header__hamburger.is-open { background-size: 0 0; }
.header__hamburger.is-open::before { transform: rotate(45deg); }
.header__hamburger.is-open::after { transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  border-top: 2px solid var(--ink);
  background: var(--paper);
}
.mobile-menu.is-open { display: block; }
.mobile-menu__list { padding: 18px 24px 26px; display: grid; gap: 4px; }
.mobile-menu__link {
  display: block;
  padding: .8em .4em;
  font-family: var(--font-head);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px dashed rgba(46,58,82,.25);
}
.mobile-menu__cta { margin-top: 16px; }

@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__hamburger { display: block; }
}

/* 小さいスマホでもロゴ＋テキストが見切れないように */
@media (max-width: 380px) {
  .header__inner { padding-left: 14px; padding-right: 14px; gap: 10px; }
  .header__logo-img { width: 40px; height: 40px; }
  .header__logo-text strong { font-size: .88rem; }
  .header__logo-text small { font-size: .6rem; }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: clamp(120px, 16vw, 170px) 0 clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* 集中線風の淡い放射 */
  content: "";
  position: absolute;
  top: -30%; right: -18%;
  width: 70vw; height: 70vw;
  background: repeating-conic-gradient(from 0deg, rgba(224,83,140,.06) 0deg 3deg, transparent 3deg 9deg);
  border-radius: 50%;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  position: relative;
}
.hero__kicker {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  margin: 0 0 1.4em;
}
.hero__kicker-line {
  display: inline-block;
  align-self: flex-start;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  padding: .28em .9em;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 4.6vw, 3rem);
  line-height: 1.42;
  letter-spacing: .01em;
  margin: 0 0 .7em;
}
.hero__title em {
  font-style: normal;
  color: var(--coral-deep);
  background: linear-gradient(transparent 68%, rgba(242, 182, 76, .55) 68%);
  padding: 0 .06em;
}
.hero__sub { font-size: clamp(1rem, 1.6vw, 1.12rem); margin: 0 0 1.8em; color: var(--ink-soft); }
.hero__sub strong { color: var(--ink); font-size: 1.2em; background: linear-gradient(transparent 70%, rgba(251,231,240,1) 70%); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.6em; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hero__trust li {
  font-size: .86rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: .45em;
}
.hero__trust li::before {
  content: "✓";
  display: grid; place-items: center;
  width: 1.35em; height: 1.35em;
  background: var(--mint);
  color: #fff;
  border-radius: 50%;
  font-size: .8em;
  font-weight: 700;
}

.hero__visual { margin: 0; position: relative; }
.hero__frame {
  border: 3px solid var(--ink);
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
  box-shadow: 10px 10px 0 rgba(224,83,140,.24);
  transform: rotate(1.4deg);
}
.hero__frame img { border-radius: 4px; }
.hero__stamp {
  position: absolute;
  top: -22px; left: -14px;
  width: 86px; height: 86px;
  display: grid; place-items: center;
  text-align: center;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--font-hand);
  font-size: .95rem;
  line-height: 1.3;
  border: 2.5px solid var(--ink);
  border-radius: 50%;
  transform: rotate(-10deg);
  box-shadow: 3px 3px 0 var(--ink);
  z-index: 1;
}
.hero__scroll {
  margin: clamp(36px, 5vw, 56px) auto 0;
  width: fit-content;
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .3em;
  color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span {
  width: 2px; height: 42px;
  background: var(--ink-soft);
  animation: scrollLine 1.8s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ---------- ヒーローの浮き装飾（ハート・リング・ドット） ---------- */
.hero__deco { position: absolute; pointer-events: none; }
.hero__deco--heart {
  top: 16%; right: 5%;
  width: 22px; height: 22px;
  background: var(--coral);
  transform: rotate(45deg);
  animation: heartFloat 4.4s ease-in-out infinite;
}
.hero__deco--heart::before, .hero__deco--heart::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: inherit;
}
.hero__deco--heart::before { top: -11px; left: 0; }
.hero__deco--heart::after { top: 0; left: -11px; }
@keyframes heartFloat {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%      { transform: rotate(45deg) translate(-5px, -5px); }
}
.hero__deco--ring {
  bottom: 14%; left: 3.5%;
  width: 30px; height: 30px;
  border: 6px solid var(--yellow);
  border-radius: 50%;
  animation: floatY 5.2s ease-in-out infinite;
}
.hero__deco--dot { top: 24%; left: 10%; width: 13px; height: 13px; background: var(--mint); border-radius: 50%; }

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 480px; margin-inline: auto; }
  .hero__stamp { top: -16px; right: -8px; left: auto; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__deco { display: none; }
}

/* ============================================================
   MANGA（エピソード）
============================================================ */
.manga__head { text-align: center; margin-bottom: clamp(24px, 4vw, 40px); }
.manga__ep {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .8rem;
  letter-spacing: .34em;
  color: #fff;
  background: var(--ink);
  padding: .35em 1.4em .35em 1.7em;
  margin-bottom: 1.1em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%, 10px 50%);
}
.manga__title {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: clamp(1.45rem, 3.4vw, 2rem);
  margin: 0;
  letter-spacing: .03em;
}
.manga__page {
  margin: 0 auto;
  max-width: 560px;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 8px;
  padding: clamp(10px, 2vw, 16px);
  box-shadow: var(--shadow), 8px 8px 0 rgba(46,58,82,.12);
  position: relative;
}
.manga__page::before, .manga__page::after {
  /* マスキングテープ風 */
  content: "";
  position: absolute;
  top: -12px;
  width: 92px; height: 26px;
  background: rgba(242, 182, 76, .75);
  border: 1px solid rgba(46,58,82,.15);
}
.manga__page::before { left: 8%; transform: rotate(-5deg); }
.manga__page::after { right: 8%; transform: rotate(4deg); background: rgba(88,174,140,.5); }
.manga__page img { border-radius: 3px; }
.manga__bridge {
  text-align: center;
  margin: clamp(28px, 4vw, 44px) auto 0;
  font-size: clamp(1.02rem, 1.9vw, 1.18rem);
  line-height: 2.1;
}
.manga__bridge strong {
  font-family: var(--font-head);
  font-weight: 900;
  background: linear-gradient(transparent 66%, rgba(224,83,140,.35) 66%);
  padding: 0 .1em;
}

/* ============================================================
   PROBLEM
============================================================ */
.problem__list { max-width: 720px; margin: 0 auto; display: grid; gap: 14px; }
.problem__item {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 12px;
  padding: 1em 1.3em 1em 3.4em;
  font-weight: 500;
  position: relative;
  box-shadow: 4px 4px 0 rgba(46,58,82,.12);
}
.problem__item::before {
  content: "";
  position: absolute;
  left: 1.1em; top: 50%;
  transform: translateY(-50%);
  width: 1.35em; height: 1.35em;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper);
}
.problem__item::after {
  content: "✔";
  position: absolute;
  left: 1.28em; top: 46%;
  transform: translateY(-50%) rotate(-6deg);
  color: var(--coral-deep);
  font-size: 1.2em;
  font-weight: 700;
  opacity: 0;
}
.problem__item.is-shown::after {
  animation: checkPop .45s cubic-bezier(.68, -0.55, .27, 1.55) .4s forwards;
}
@keyframes checkPop {
  from { opacity: 0; transform: translateY(-50%) scale(0) rotate(-40deg); }
  to   { opacity: 1; transform: translateY(-50%) scale(1) rotate(-6deg); }
}
.problem__note {
  max-width: 720px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(20px, 3.4vw, 32px) clamp(20px, 4vw, 40px);
  text-align: center;
  position: relative;
}
.problem__note::before {
  content: "";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-bottom-color: var(--ink);
  border-top: 0;
}
.problem__note p { margin: 0; }
.problem__note strong { color: var(--yellow); }

/* ============================================================
   SERVICE
============================================================ */
.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
}
.service__card {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px);
  box-shadow: 6px 6px 0 rgba(46,58,82,.14);
  display: flex;
  flex-direction: column;
}
.service__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  background: var(--mint);
  border: 2px solid var(--ink);
  width: 2.6em; height: 2.6em;
  display: grid; place-items: center;
  border-radius: 50%;
  margin-bottom: 1em;
  box-shadow: 2px 2px 0 var(--ink);
}
.service__title { font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; margin: 0 0 .6em; }
.service__body { margin: 0 0 1.2em; font-size: .95rem; color: var(--ink-soft); flex: 1; }
.service__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service__tags li {
  font-size: .78rem;
  font-weight: 500;
  background: var(--mint-pale);
  border: 1.5px solid var(--mint);
  color: var(--mint-deep);
  border-radius: 999px;
  padding: .2em .9em;
}

.service__voice {
  margin-top: clamp(36px, 5vw, 56px);
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  max-width: 720px;
  margin-inline: auto;
}
.service__chara {
  margin: 0;
  flex: 0 0 clamp(96px, 14vw, 140px);
}
.service__chara img {
  border-radius: 50%;
  border: 3px solid var(--ink);
  background: var(--white);
  box-shadow: 4px 4px 0 rgba(46,58,82,.16);
}
.service__bubble {
  position: relative;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  padding: 1.1em 1.5em;
  font-family: var(--font-hand);
  font-size: clamp(.98rem, 1.7vw, 1.1rem);
}
.service__bubble::before {
  content: "";
  position: absolute;
  left: -16px; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 18px;
  background: var(--white);
  border-left: 2.5px solid var(--ink);
  border-bottom: 2.5px solid var(--ink);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.service__bubble p { margin: 0; }
.service__bubble strong { color: var(--coral-deep); }

@media (max-width: 860px) {
  .service__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICE
============================================================ */
.price { overflow: hidden; }
.price__main {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(30px, 5vw, 48px) clamp(22px, 5vw, 52px) clamp(28px, 4vw, 40px);
  text-align: center;
  position: relative;
  box-shadow: 10px 10px 0 rgba(224,83,140,.35);
}
.price__badge {
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: var(--yellow);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .9rem;
  padding: .35em 1.4em;
  white-space: nowrap;
  box-shadow: 3px 3px 0 var(--ink);
}
.price__plan-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.15rem, 2.4vw, 1.4rem);
  margin: .6em 0 .2em;
}
.price__amount {
  margin: .2em 0 .8em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .18em;
  flex-wrap: wrap;
}
.price__unit {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--ink);
  color: var(--paper);
  padding: .15em .7em;
  border-radius: 6px;
  align-self: center;
  margin-right: .4em;
}
.price__num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.2rem, 8vw, 4.6rem);
  line-height: 1;
  color: var(--coral-deep);
  letter-spacing: .01em;
}
.price__yen { font-family: var(--font-head); font-weight: 900; font-size: 1.5rem; }
.price__yen small { font-size: .7em; font-weight: 700; color: var(--ink-soft); }
.price__includes {
  text-align: left;
  max-width: 440px;
  margin: 0 auto 1.6em;
  display: grid;
  gap: .5em;
}
.price__includes li {
  padding-left: 1.8em;
  position: relative;
  font-weight: 500;
}
.price__includes li::before {
  content: "✓";
  position: absolute;
  left: 0; top: .2em;
  width: 1.3em; height: 1.3em;
  display: grid; place-items: center;
  background: var(--mint);
  color: #fff;
  border-radius: 50%;
  font-size: .85em;
  font-weight: 700;
}
.price__cta { width: min(100%, 380px); }

.price__options { max-width: 680px; margin: clamp(36px, 5vw, 52px) auto 0; }
.price__subs {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.price__sub {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 4px 4px 0 rgba(46,58,82,.12);
}
.price__sub-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .12em;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
  padding: .1em .8em;
  margin-bottom: .5em;
}
.price__sub h4 { margin: 0 0 .2em; font-family: var(--font-head); font-weight: 900; font-size: 1rem; }
.price__sub-num { margin: 0 0 .3em; font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: var(--mint-deep); }
.price__sub-num small { font-size: .55em; color: var(--ink-soft); font-weight: 700; }
.price__sub-desc { margin: 0; font-size: .86rem; color: var(--ink-soft); line-height: 1.7; }

.price__compare { max-width: 680px; margin: clamp(36px, 5vw, 52px) auto 0; }
.price__compare-title {
  text-align: center;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 0 1em;
}
.compare-table {
  border: 2.5px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.compare-table__row {
  display: grid;
  grid-template-columns: .8fr 1fr 1fr;
  border-top: 1.5px solid rgba(46,58,82,.2);
}
.compare-table__row:first-child { border-top: 0; }
.compare-table__row > span {
  padding: .85em 1em;
  font-size: .9rem;
  display: flex;
  align-items: center;
}
.compare-table__row--head > span {
  font-family: var(--font-head);
  font-weight: 900;
  background: var(--cream);
  justify-content: center;
  text-align: center;
}
.compare-table__label { font-weight: 700; background: var(--paper); font-size: .85rem; }
.compare-table .is-mine { background: var(--mint-pale); font-weight: 700; color: var(--mint-deep); }
.compare-table__row--head .is-mine { background: var(--mint); color: #fff; }
.price__note { font-size: .78rem; color: var(--ink-soft); margin: 1em 0 0; line-height: 1.7; }
/* 月額プランの対応範囲の明示（制作物の納品は含まない） */
.price__note--scope { text-align: left; max-width: 440px; margin: 0 auto 1.8em; }
.price__note--scope strong { color: var(--coral-deep); }

@media (max-width: 640px) {
  .price__subs { grid-template-columns: 1fr; }
  .compare-table__row > span { font-size: .8rem; padding: .7em .6em; }
}

/* ============================================================
   REASON
============================================================ */
.reason__list { max-width: 760px; margin: 0 auto; display: grid; gap: clamp(18px, 3vw, 28px); }
.reason__item {
  display: flex;
  gap: clamp(16px, 3vw, 28px);
  align-items: flex-start;
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(20px, 3.4vw, 30px);
  box-shadow: 6px 6px 0 rgba(88,174,140,.2);
}
.reason__no {
  flex: 0 0 auto;
  font-family: var(--font-hand);
  font-size: .95rem;
  line-height: 1.3;
  text-align: center;
  background: var(--coral);
  color: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  width: 64px; height: 64px;
  display: grid; place-items: center;
  transform: rotate(-6deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.reason__item h3 { margin: 0 0 .4em; font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; }
.reason__item p { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ============================================================
   FLOW
============================================================ */
.flow__list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.flow__step {
  background: var(--white);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  position: relative;
  box-shadow: 5px 5px 0 rgba(46,58,82,.12);
}
.flow__step:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -15px; top: 50%;
  transform: translateY(-50%);
  color: var(--coral);
  font-size: .9rem;
  z-index: 1;
}
.flow__no {
  display: inline-grid; place-items: center;
  font-family: var(--font-head);
  font-weight: 900;
  background: var(--ink);
  color: var(--paper);
  width: 2.4em; height: 2.4em;
  border-radius: 50%;
  margin-bottom: .7em;
}
.flow__step h3 { margin: 0 0 .4em; font-family: var(--font-head); font-weight: 900; font-size: 1.02rem; }
.flow__step p { margin: 0; font-size: .84rem; color: var(--ink-soft); line-height: 1.8; }

@media (max-width: 860px) {
  .flow__list { grid-template-columns: 1fr; max-width: 520px; }
  .flow__step:not(:last-child)::after {
    content: "▼";
    right: auto; left: 50%; top: auto; bottom: -22px;
    transform: translateX(-50%);
  }
}

/* ============================================================
   VOICE
============================================================ */
.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 24px);
}
.voice__card {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 24px;
  position: relative;
  box-shadow: 5px 5px 0 rgba(245,195,59,.4);
  display: flex;
  flex-direction: column;
}
.voice__card::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--coral);
  display: block;
  height: .55em;
}
.voice__text { margin: 0 0 1em; font-size: .93rem; flex: 1; }
.voice__from { font-style: normal; font-size: .8rem; color: var(--ink-soft); font-weight: 500; }
.voice__note { text-align: center; font-size: .78rem; color: var(--ink-soft); margin-top: 2em; }

@media (max-width: 860px) {
  .voice__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
}

/* ============================================================
   PROFILE
============================================================ */
.profile__wrap {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}
.profile__photo { margin: 0; flex: 0 0 clamp(180px, 26vw, 260px); position: relative; }
.profile__photo img {
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(88,174,140,.3);
  background: var(--white);
}
.profile__name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
  margin: .6em 0 .8em;
  display: flex;
  align-items: baseline;
  gap: 1em;
}
.profile__name span { font-size: .75rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .16em; }
.profile__text { margin: 0 0 1em; font-size: .95rem; color: var(--ink-soft); }
.profile__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.2em; }
.profile__tags li {
  font-size: .8rem;
  font-weight: 500;
  border: 1.5px solid var(--ink);
  background: var(--white);
  border-radius: 999px;
  padding: .25em 1em;
}

@media (max-width: 720px) {
  .profile__wrap { flex-direction: column; text-align: left; }
  .profile__photo { flex-basis: auto; width: 200px; }
}

/* ============================================================
   FAQ
============================================================ */
.faq__list { display: grid; gap: 14px; }
.faq__item {
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(46,58,82,.1);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-align: left;
  padding: 18px 56px 18px 18px;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  line-height: 1.6;
}
.faq__mark {
  flex: 0 0 auto;
  width: 2em; height: 2em;
  display: grid; place-items: center;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  border: 2px solid var(--ink);
  font-weight: 900;
}
.faq__plus {
  position: absolute;
  right: 20px; top: 50%;
  width: 16px; height: 16px;
  transform: translateY(-50%);
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .3s ease;
}
.faq__plus::before { left: 0; top: 7px; width: 16px; height: 2.5px; }
.faq__plus::after { left: 7px; top: 0; width: 2.5px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__plus::after { transform: scaleY(0); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__a p {
  margin: 0;
  padding: 0 20px 20px 66px;
  font-size: .93rem;
  color: var(--ink-soft);
}

/* ============================================================
   FINAL CTA
============================================================ */
.cta { padding-bottom: clamp(90px, 12vw, 130px); }
.cta__card {
  background: var(--ink);
  color: var(--paper);
  border-radius: 26px;
  padding: clamp(40px, 6vw, 64px) clamp(24px, 5vw, 56px);
  text-align: center;
  position: relative;
  box-shadow: 12px 12px 0 rgba(224,83,140,.3);
}
.cta__chara {
  margin: 0;
  position: absolute;
  top: -54px; right: 6%;
  width: clamp(84px, 12vw, 116px);
}
.cta__chara img {
  border-radius: 50%;
  border: 3px solid var(--paper);
  background: var(--white);
}
.cta__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.4rem, 3.4vw, 2rem);
  line-height: 1.5;
  margin: 0 0 .8em;
}
.cta__text { margin: 0 0 1.8em; color: rgba(255,249,240,.85); font-size: .96rem; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-bottom: 1.6em; }
.cta__actions .btn { border-color: var(--paper); box-shadow: 4px 4px 0 rgba(255,249,240,.4); }
/* 濃紺カード上のアウトラインボタン：文字も紙色にしないと見えない */
.cta__actions .btn--outline { color: var(--paper); }
.cta__actions .btn--outline:hover { background: rgba(255,249,240,.12); }
.cta__notes { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px; }
.cta__notes li { font-size: .82rem; color: rgba(255,249,240,.75); display: flex; align-items: center; gap: .4em; }
.cta__notes li::before { content: "✓"; color: var(--yellow); font-weight: 700; }

@media (max-width: 640px) {
  .cta__actions .btn { flex: 1 1 100%; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--cream);
  padding: 64px 0 96px;
  position: relative;
}
.site-footer::before {
  /* 波形の区切り */
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 100%; height: 32px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1100 32' preserveAspectRatio='none'%3E%3Cpath fill='%23fff9f0' d='M0,0 H1100 V12 C1008,28 917,28 825,12 C733,-4 642,-4 550,12 C458,28 367,28 275,12 C183,-4 92,-4 0,12 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 1100px 32px;
  pointer-events: none;
}
/* テキストを左・ロゴを右に配置 */
.footer__inner {
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__text { display: grid; gap: 16px; justify-items: start; min-width: 0; }
.footer__brand { margin: 0; display: flex; flex-direction: column; line-height: 1.4; }
.footer__brand strong { font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; }
.footer__brand small { font-size: .74rem; color: var(--ink-soft); letter-spacing: .06em; }
.footer__nav ul { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.footer__nav a { font-size: .86rem; text-decoration: none; font-weight: 500; }
.footer__nav a:hover { text-decoration: underline; }
.footer__copy { margin: 0; color: var(--ink-soft); }
.footer__logo-figure { margin: 0; flex: 0 0 clamp(88px, 13vw, 132px); }
.footer__logo-figure img {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 22px;
  box-shadow: 4px 4px 0 rgba(46,58,82,.18);
  padding: 8px;
}

@media (max-width: 520px) {
  .footer__inner { align-items: flex-start; gap: 16px; }
  .footer__logo-figure { flex-basis: 84px; }
}

/* ============================================================
   STICKY CTA（スマホ）
============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 249, 240, .95);
  backdrop-filter: blur(6px);
  border-top: 2px solid var(--ink);
  transform: translateY(110%);
  transition: transform .35s ease;
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { flex: 1; font-size: .84rem; padding: .8em .5em; box-shadow: 3px 3px 0 var(--ink); }

@media (max-width: 860px) {
  .sticky-cta { display: flex; }
}

/* ============================================================
   MOTION（プロ仕様の動き）
============================================================ */

/* ---------- 読了プログレスバー ---------- */
.progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--yellow));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 120;
  pointer-events: none;
}

/* ---------- ヘッダー縮小 ---------- */
.header__inner { transition: padding .3s ease; }
.site-header.is-scrolled { box-shadow: 0 4px 18px rgba(46, 58, 82, .1); }
.site-header.is-scrolled .header__inner { padding-top: 7px; padding-bottom: 7px; }

/* ---------- マーキー帯 ---------- */
.marquee {
  overflow: hidden;
  background: var(--yellow);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: .55em 0;
  width: 104%;
  margin-left: -2%;
  transform: rotate(-1.2deg);
  position: relative;
  z-index: 1;
}
.marquee--mint { background: var(--mint-pale); transform: rotate(1.2deg); }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeMove 26s linear infinite;
}
.marquee--reverse .marquee__track { animation-direction: reverse; }
.marquee__seq {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: .92rem;
  letter-spacing: .1em;
  white-space: nowrap;
  padding-right: 2.2em;
}
.marquee__seq i { font-style: normal; color: var(--coral-deep); padding: 0 .9em; }
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 常時ゆらぎアニメーション ---------- */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.service__chara img, .cta__chara img { animation: floatY 3.6s ease-in-out infinite; }

@keyframes stampSway {
  0%, 100% { transform: rotate(-10deg); }
  50%      { transform: rotate(-3deg) translateY(-3px); }
}
.hero__stamp { animation: stampSway 3.2s ease-in-out infinite; }

@keyframes badgeBob {
  0%, 100% { transform: translateX(-50%) rotate(-2deg); }
  50%      { transform: translateX(-50%) rotate(2deg) translateY(-3px); }
}
.price__badge { animation: badgeBob 2.8s ease-in-out infinite; }

@keyframes spinSlow { to { transform: rotate(360deg); } }
.hero::before { animation: spinSlow 90s linear infinite; }

/* ---------- ボタンの光沢スイープ ---------- */
.btn { overflow: hidden; }
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .5) 50%, transparent 68%);
  transform: translateX(-130%);
  pointer-events: none;
}
.btn:hover::after { transition: transform .55s ease; transform: translateX(130%); }

/* ---------- reduced-motion では常時アニメーションを止める ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero__stamp, .price__badge,
  .service__chara img, .cta__chara img,
  .hero__deco--heart, .hero__deco--ring,
  .marquee__track, .problem__item.is-shown::after {
    animation: none;
  }
  .problem__item::after { opacity: 1; }
  .progress { display: none; }
}
