/*
Theme Name: ママリブMEO LP
Theme URI: https://mamalive.example.com/
Author: ママリブ
Author URI: https://mamalive.example.com/
Description: 株式会社Akatsuki提供のMEO対策ツール「Kuchiyose」をママリブがOEM提供する「ママリブMEO」専用のランディングページテーマ。Googleマップ上位表示・口コミ管理・AI改善提案をワンストップで支援します。ピンク基調のブランドデザイン。
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mamalive-meo
*/

/* =========================================================================
   ママリブMEO — Design Tokens
   ロゴの「蝶＝重なり合う半透明の花びら」を活かした、やわらかく上品なピンク基調
   ========================================================================= */
:root {
  /* Brand pink scale */
  --pink-50:  #FDEFF5;
  --pink-100: #FBE0EC;
  --pink-200: #F6C7DD;
  --pink-300: #EFA9C8;
  --pink-400: #E88BB2; /* ブランド基調（ロゴの花びら） */
  --pink-500: #DE6E9C;
  --pink-600: #CB4E80; /* CTA */
  --pink-700: #A83A66; /* CTA hover / 濃色 */
  --rose-ink: #7A2B4A; /* 見出しアクセント */

  /* Neutrals（ロゴのチャコール文字に合わせる） */
  --cream:    #FFF9FB; /* ページ背景（ほんのりピンク） */
  --white:    #FFFFFF;
  --ink:      #2E2A2E;
  --charcoal: #3F3F46;
  --muted:    #6E6A70;
  --muted-2:  #948E96;
  --line:     rgba(203, 78, 128, 0.16);
  --line-soft:rgba(203, 78, 128, 0.10);

  /* Accents */
  --leaf:     #7FB09A; /* 補助（比較表のプラス評価など） */
  --gold:     #E7A93B; /* 星評価 */

  /* Gradients */
  --grad-cta:   linear-gradient(135deg, #E88BB2 0%, #CB4E80 100%);
  --grad-cta-h: linear-gradient(135deg, #DE6E9C 0%, #A83A66 100%);
  --grad-soft:  linear-gradient(180deg, #FFFFFF 0%, #FDEFF5 100%);
  --grad-hero:  radial-gradient(1200px 700px at 85% -10%, #FBE0EC 0%, rgba(251,224,236,0) 60%),
                radial-gradient(900px 600px at 5% 20%, #FDEFF5 0%, rgba(253,239,245,0) 55%);

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(122, 43, 74, 0.06);
  --sh-md: 0 12px 30px rgba(122, 43, 74, 0.10);
  --sh-lg: 0 26px 60px rgba(122, 43, 74, 0.14);
  --sh-cta:0 12px 26px rgba(203, 78, 128, 0.34);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Type */
  --font-body: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-head: "Zen Kaku Gothic New", var(--font-body);
  --font-num:  "Poppins", var(--font-head);

  /* Layout */
  --container: 1140px;
  --container-wide: 1280px;
  --gutter: clamp(20px, 5vw, 40px);
}

/* =========================================================================
   Reset & Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.85;
  letter-spacing: .01em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.35; color: var(--ink); margin: 0; font-weight: 700; letter-spacing: .02em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--pink-400); outline-offset: 3px; border-radius: 4px; }

/* =========================================================================
   Layout helpers
   ========================================================================= */
.sp-only { display: none; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: var(--container-wide); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--soft { background: var(--grad-soft); }
.section--pink { background: linear-gradient(180deg, #FDEFF5 0%, #FBE0EC 100%); }

/* Section heading block */
.sec-head { text-align: center; max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-num); font-weight: 600; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--pink-600); margin-bottom: 18px;
}
.sec-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--pink-400); border-radius: 2px; }
.sec-eyebrow::after  { content: ""; width: 26px; height: 2px; background: var(--pink-400); border-radius: 2px; }
.sec-title {
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  font-weight: 800; letter-spacing: .03em; line-height: 1.45;
}
.sec-title .mark { color: var(--pink-600); }
.sec-title .u {
  background: linear-gradient(transparent 62%, var(--pink-200) 62%);
  padding-inline: .1em;
}
.sec-lead { margin-top: 20px; font-size: 1.02rem; color: var(--muted); line-height: 2; }

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--font-head); font-weight: 700; letter-spacing: .04em;
  padding: 15px 30px; border-radius: var(--r-pill); font-size: 1rem;
  transition: transform .18s ease, box-shadow .2s ease, background .3s ease, color .2s ease;
  text-align: center; line-height: 1.4; white-space: nowrap;
}
.btn--primary { background: var(--grad-cta); color: #fff; box-shadow: var(--sh-cta); }
.btn--primary:hover { background: var(--grad-cta-h); transform: translateY(-3px); box-shadow: 0 18px 34px rgba(168,58,102,.4); }
.btn--ghost { background: #fff; color: var(--pink-700); box-shadow: inset 0 0 0 2px var(--pink-200), var(--sh-sm); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--pink-400), var(--sh-md); transform: translateY(-2px); color: var(--pink-700); }
.btn--white { background: #fff; color: var(--pink-700); box-shadow: var(--sh-md); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn--lg { padding: 18px 40px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }
.btn .ico { width: 1.15em; height: 1.15em; }

/* =========================================================================
   Header / Navigation
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 249, 251, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled { box-shadow: var(--sh-sm); background: rgba(255, 249, 251, 0.95); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 34px; width: auto; }
.brand .brand-sub {
  font-family: var(--font-head); font-weight: 700; font-size: .74rem; letter-spacing: .12em;
  color: var(--pink-600); background: var(--pink-50); padding: 3px 9px; border-radius: var(--r-pill);
  border: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--charcoal);
  padding: 10px 14px; border-radius: var(--r-pill); position: relative;
}
.nav a:hover { color: var(--pink-600); background: var(--pink-50); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 11px 22px; font-size: .92rem; }
.nav-toggle { display: none; }

/* Mobile nav */
.mobile-panel { display: none; }

@media (max-width: 1000px) {
  .nav, .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 5px; width: 46px; height: 46px;
    align-items: center; justify-content: center; border-radius: 12px; background: #fff; box-shadow: var(--sh-sm);
  }
  .nav-toggle span { width: 22px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: .3s; }
  body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-panel {
    display: none; position: fixed; top: 74px; left: 0; right: 0; bottom: 0; z-index: 99;
    width: 100%; background: var(--cream); padding: 28px var(--gutter) 48px;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  body.menu-open .mobile-panel { display: block; animation: mpFade .28s ease; }
  @keyframes mpFade { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .mobile-panel a.m-link {
    display: block; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem;
    padding: 16px 8px; border-bottom: 1px solid var(--line); color: var(--ink);
  }
  .mobile-panel .m-cta { margin-top: 28px; display: grid; gap: 14px; }
}

/* =========================================================================
   Decorative petals (背景装飾：花びら)
   ========================================================================= */
.petal {
  position: absolute; border-radius: 76% 24% 70% 30% / 60% 40% 60% 40%;
  filter: blur(2px); opacity: .5; pointer-events: none; z-index: 0;
}
.petal--a { background: radial-gradient(circle at 30% 30%, var(--pink-200), var(--pink-100)); }
.petal--b { background: radial-gradient(circle at 40% 40%, var(--pink-100), rgba(251,224,236,0)); }

/* =========================================================================
   Hero
   ========================================================================= */
.hero { position: relative; padding-top: clamp(48px, 7vw, 90px); padding-bottom: clamp(56px, 8vw, 110px); background: var(--grad-hero); overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='2' cy='2' r='1' fill='%23E88BB2' fill-opacity='0.10'/%3E%3C/svg%3E");
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; background: #fff;
  padding: 8px 16px 8px 10px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
  font-size: .84rem; font-weight: 600; color: var(--rose-ink); margin-bottom: 26px;
  border: 1px solid var(--line);
}
.hero-badge .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--grad-cta); color: #fff; display: grid; place-items: center; font-size: .7rem; }
.hero h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.35rem); font-weight: 900; line-height: 1.34; letter-spacing: .02em;
}
.hero h1 .hl {
  position: relative; color: var(--pink-600);
}
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 4%; height: 30%;
  background: var(--pink-200); z-index: -1; border-radius: 4px; opacity: .7;
}
.hero-sub { margin-top: 26px; font-size: clamp(1rem, 1.6vw, 1.14rem); color: var(--charcoal); line-height: 2.05; max-width: 540px; }
.hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.hero-trust .item { display: flex; align-items: center; gap: 9px; font-size: .9rem; color: var(--muted); font-weight: 500; }
.hero-trust .item strong { font-family: var(--font-num); color: var(--pink-600); font-size: 1.15rem; font-weight: 700; }
.hero-trust .check { width: 20px; height: 20px; border-radius: 50%; background: var(--pink-100); color: var(--pink-600); display: grid; place-items: center; flex: 0 0 auto; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-phone {
  position: relative; z-index: 2; width: min(300px, 78%); margin-inline: auto;
  border-radius: 40px; box-shadow: var(--sh-lg); background: #fff;
  border: 8px solid #fff; rotate: 2deg;
}
.hero-blob {
  position: absolute; z-index: 1; inset: -6% -4% -10% -4%;
  background: radial-gradient(closest-side, var(--pink-200), rgba(246,199,221,0));
  border-radius: 50%; filter: blur(6px);
}
.hero-chip {
  position: absolute; z-index: 3; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 12px 16px; display: flex; align-items: center; gap: 11px;
  border: 1px solid var(--line);
}
.hero-chip .ic { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; flex: 0 0 auto; color: #fff; }
.hero-chip .t1 { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: var(--ink); line-height: 1.3; }
.hero-chip .t2 { font-size: .74rem; color: var(--muted); }
.hero-chip--1 { top: 8%; left: -2%; animation: float 5s ease-in-out infinite; }
.hero-chip--2 { bottom: 12%; right: -4%; animation: float 5.6s ease-in-out .6s infinite; }
.hero-chip--1 .ic { background: var(--grad-cta); }
.hero-chip--2 .ic { background: linear-gradient(135deg, #7FB09A, #5E9B82); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Logo bar */
.logobar { border-top: 1px solid var(--line-soft); }
.logobar .container { display: flex; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 54px); flex-wrap: wrap; padding-block: 26px; }
.logobar .lb-label { font-size: .82rem; color: var(--muted-2); font-weight: 600; letter-spacing: .06em; }
.logobar .lb-item { font-family: var(--font-head); font-weight: 700; color: var(--muted-2); font-size: 1.02rem; }

/* =========================================================================
   Problem section
   ========================================================================= */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.problem-card {
  background: #fff; border-radius: var(--r-lg); padding: 30px 26px; box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft); position: relative; overflow: hidden;
}
.problem-card .q {
  font-family: var(--font-num); font-weight: 700; color: var(--pink-200); font-size: 2.6rem; line-height: 1;
  position: absolute; top: 14px; right: 18px;
}
.problem-card .balloon { font-family: var(--font-head); font-weight: 700; font-size: 1.08rem; color: var(--ink); line-height: 1.6; }
.problem-card p { margin-top: 12px; font-size: .92rem; color: var(--muted); }
.problem-after {
  margin-top: 44px; text-align: center; background: var(--grad-cta); color: #fff;
  border-radius: var(--r-lg); padding: 34px 26px; box-shadow: var(--sh-cta);
}
.problem-after .lead { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.2rem,2.6vw,1.7rem); line-height: 1.6; }
.problem-after .lead .em { background: rgba(255,255,255,.22); padding: 2px 10px; border-radius: 8px; }

/* =========================================================================
   Strengths (3 core)
   ========================================================================= */
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.strength-card {
  background: #fff; border-radius: var(--r-lg); padding: 38px 30px; text-align: center;
  box-shadow: var(--sh-sm); border: 1px solid var(--line-soft); transition: transform .25s ease, box-shadow .25s ease;
}
.strength-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.strength-ic {
  width: 78px; height: 78px; margin: 0 auto 22px; border-radius: 24px;
  display: grid; place-items: center; color: #fff; background: var(--grad-cta); box-shadow: var(--sh-cta);
}
.strength-ic svg { width: 38px; height: 38px; }
.strength-card h3 { font-size: 1.28rem; font-weight: 800; }
.strength-card .num { font-family: var(--font-num); font-weight: 600; font-size: .8rem; color: var(--pink-500); letter-spacing: .1em; display: block; margin-bottom: 8px; }
.strength-card p { margin-top: 14px; font-size: .94rem; color: var(--muted); line-height: 1.95; }

/* =========================================================================
   Comparison table
   ========================================================================= */
.compare-wrap { overflow-x: auto; }
.compare {
  width: 100%; min-width: 680px; border-collapse: separate; border-spacing: 0;
  background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md);
}
.compare th, .compare td { padding: 20px 22px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.compare thead th { font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: var(--ink); background: var(--pink-50); }
.compare thead th.is-hero { background: var(--grad-cta); color: #fff; position: relative; }
.compare thead th.is-hero .tag { display: block; font-size: .72rem; font-weight: 600; opacity: .9; margin-top: 3px; }
.compare tbody th { text-align: left; font-family: var(--font-head); font-weight: 600; color: var(--charcoal); background: #fff; font-size: .95rem; min-width: 130px; }
.compare td.col-hero { background: var(--pink-50); font-weight: 600; color: var(--rose-ink); }
.compare .mk { font-family: var(--font-num); font-weight: 700; font-size: 1.15rem; }
.compare .mk-good { color: var(--leaf); }
.compare .mk-mid  { color: var(--gold); }
.compare .mk-bad  { color: var(--muted-2); }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: none; }

/* =========================================================================
   Stats
   ========================================================================= */
.stats { background: linear-gradient(135deg, var(--rose-ink) 0%, var(--pink-700) 100%); color: #fff; }
.stats .sec-title { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 12px; }
.stat { text-align: center; padding: 20px; }
.stat .fig { font-family: var(--font-num); font-weight: 800; font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1; letter-spacing: -.02em; }
.stat .fig .pct { font-size: .5em; }
.stat .cap { margin-top: 14px; font-size: .98rem; line-height: 1.8; color: rgba(255,255,255,.9); }
.stats-note { text-align: center; margin-top: 30px; font-size: .8rem; color: rgba(255,255,255,.6); }

/* =========================================================================
   Steps (3 step journey)
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft); position: relative;
}
.step .step-no {
  font-family: var(--font-num); font-weight: 700; font-size: .82rem; color: #fff; letter-spacing: .1em;
  background: var(--grad-cta); width: fit-content; padding: 5px 16px; border-radius: var(--r-pill); margin-bottom: 20px;
}
.step-img { border-radius: var(--r-md); overflow: hidden; margin-bottom: 22px; background: var(--pink-50); box-shadow: var(--sh-sm); }
.step-img img { width: 100%; }
.step h3 { font-size: 1.2rem; font-weight: 800; }
.step p { margin-top: 12px; font-size: .92rem; color: var(--muted); }
.steps.has-arrow .step:not(:last-child)::after {
  content: ""; position: absolute; top: 50%; right: -20px; width: 22px; height: 22px;
  border-top: 3px solid var(--pink-300); border-right: 3px solid var(--pink-300);
  transform: translateY(-50%) rotate(45deg); z-index: 3;
}

/* =========================================================================
   Features (6 items)
   ========================================================================= */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat {
  background: #fff; border-radius: var(--r-lg); padding: 32px 28px; box-shadow: var(--sh-sm);
  border: 1px solid var(--line-soft); transition: transform .25s ease, box-shadow .25s ease; position: relative; overflow: hidden;
}
.feat::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--grad-cta); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.feat:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feat:hover::before { transform: scaleX(1); }
.feat .feat-no { font-family: var(--font-num); font-weight: 700; font-size: .8rem; color: var(--pink-300); letter-spacing: .12em; }
.feat .feat-ic { width: 58px; height: 58px; border-radius: 18px; background: var(--pink-50); color: var(--pink-600); display: grid; place-items: center; margin: 14px 0 18px; }
.feat .feat-ic svg { width: 30px; height: 30px; }
.feat h3 { font-size: 1.16rem; font-weight: 800; }
.feat p { margin-top: 12px; font-size: .92rem; color: var(--muted); line-height: 1.9; }

/* =========================================================================
   Dashboard section
   ========================================================================= */
.dash { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
.dash-visual { position: relative; }
.dash-visual img { border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.dash-visual .halo { position: absolute; inset: -8%; background: radial-gradient(closest-side, var(--pink-100), rgba(253,239,245,0)); z-index: -1; border-radius: 50%; }
.dash-list { margin-top: 26px; display: grid; gap: 18px; }
.dash-item { display: flex; gap: 16px; align-items: flex-start; }
.dash-item .ic { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-cta); color: #fff; display: grid; place-items: center; flex: 0 0 auto; box-shadow: var(--sh-cta); }
.dash-item .ic svg { width: 22px; height: 22px; }
.dash-item h4 { font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--ink); }
.dash-item p { margin-top: 4px; font-size: .9rem; color: var(--muted); }

/* =========================================================================
   Pricing
   ========================================================================= */
.price-card {
  max-width: 720px; margin: 0 auto; background: #fff; border-radius: var(--r-xl);
  box-shadow: var(--sh-lg); overflow: hidden; border: 1px solid var(--line);
}
.price-top { background: var(--grad-cta); color: #fff; padding: 30px; text-align: center; }
.price-top .plan { font-family: var(--font-head); font-weight: 700; letter-spacing: .08em; font-size: 1.05rem; }
.price-top .desc { font-size: .86rem; opacity: .92; margin-top: 6px; }
.price-body { padding: clamp(30px, 4vw, 46px); text-align: center; }
.price-amount { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.price-amount .num { font-family: var(--font-num); font-weight: 800; font-size: clamp(3.2rem, 8vw, 4.6rem); color: var(--ink); line-height: 1; }
.price-amount .yen { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--ink); }
.price-amount .per { font-size: .95rem; color: var(--muted); }
.price-tax { font-size: .82rem; color: var(--muted-2); margin-top: 8px; }
.price-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 26px 0 8px; }
.price-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--pink-50); color: var(--rose-ink); font-weight: 700; font-family: var(--font-head); padding: 10px 18px; border-radius: var(--r-pill); font-size: .9rem; border: 1px solid var(--line); }
.price-badge svg { width: 18px; height: 18px; color: var(--pink-600); }
.price-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 26px; text-align: left; max-width: 520px; margin: 26px auto 30px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--charcoal); }
.price-features li svg { width: 18px; height: 18px; color: var(--pink-600); flex: 0 0 auto; }
.price-cta { display: grid; gap: 12px; max-width: 420px; margin: 0 auto; }

/* =========================================================================
   Flow (導入フロー)
   ========================================================================= */
.flow { position: relative; display: grid; gap: 26px; max-width: 820px; margin: 0 auto; }
.flow::before { content: ""; position: absolute; left: 34px; top: 20px; bottom: 20px; width: 2px; background: linear-gradient(var(--pink-300), var(--pink-100)); }
.flow-item { display: grid; grid-template-columns: 70px 1fr; gap: 24px; align-items: start; position: relative; }
.flow-no {
  width: 70px; height: 70px; border-radius: 50%; background: #fff; box-shadow: var(--sh-md);
  display: grid; place-items: center; font-family: var(--font-num); font-weight: 800; font-size: 1.5rem;
  color: var(--pink-600); border: 2px solid var(--pink-200); z-index: 2;
}
.flow-body { background: #fff; border-radius: var(--r-lg); padding: 24px 28px; box-shadow: var(--sh-sm); border: 1px solid var(--line-soft); }
.flow-body h3 { font-size: 1.14rem; font-weight: 800; }
.flow-body p { margin-top: 8px; font-size: .93rem; color: var(--muted); }
.flow-body .tag { display: inline-block; font-family: var(--font-num); font-size: .72rem; font-weight: 600; color: var(--pink-600); background: var(--pink-50); padding: 3px 12px; border-radius: var(--r-pill); margin-bottom: 10px; letter-spacing: .06em; }

/* =========================================================================
   FAQ
   ========================================================================= */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--r-md); box-shadow: var(--sh-sm); border: 1px solid var(--line-soft); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  padding: 22px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--ink);
}
.faq-q .qmark { width: 32px; height: 32px; border-radius: 9px; background: var(--pink-50); color: var(--pink-600); display: grid; place-items: center; font-family: var(--font-num); font-weight: 700; flex: 0 0 auto; }
.faq-q .plus { margin-left: auto; width: 22px; height: 22px; position: relative; flex: 0 0 auto; transition: transform .3s ease; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; inset: 0; margin: auto; background: var(--pink-500); border-radius: 2px; }
.faq-q .plus::before { width: 100%; height: 2px; }
.faq-q .plus::after { width: 2px; height: 100%; transition: transform .3s ease; }
.faq-item.is-open .faq-q .plus::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 24px 72px; font-size: .95rem; color: var(--muted); line-height: 2; }

/* =========================================================================
   Contact / Online consultation form
   ========================================================================= */
.contact { background: linear-gradient(160deg, var(--pink-50) 0%, var(--pink-100) 100%); position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.contact-info .sec-eyebrow { justify-content: flex-start; }
.contact-info h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800; line-height: 1.45; }
.contact-info .lead { margin-top: 20px; color: var(--charcoal); line-height: 2; }
.contact-perks { margin-top: 28px; display: grid; gap: 14px; }
.contact-perks li { display: flex; align-items: flex-start; gap: 12px; font-size: .96rem; color: var(--charcoal); }
.contact-perks li svg { width: 24px; height: 24px; color: var(--pink-600); flex: 0 0 auto; margin-top: 2px; }
.contact-callout { margin-top: 28px; background: #fff; border-radius: var(--r-md); padding: 18px 22px; box-shadow: var(--sh-sm); display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); }
.contact-callout .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-cta); color: #fff; display: grid; place-items: center; flex: 0 0 auto; }
.contact-callout .t1 { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: .96rem; }
.contact-callout .t2 { font-size: .82rem; color: var(--muted); }

.form-card { background: #fff; border-radius: var(--r-xl); padding: clamp(26px, 4vw, 44px); box-shadow: var(--sh-lg); border: 1px solid var(--line); }
.form-card .form-title { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink); margin-bottom: 6px; }
.form-card .form-note { font-size: .85rem; color: var(--muted); margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--charcoal); margin-bottom: 8px; }
.field .req { color: #fff; background: var(--pink-600); font-size: .66rem; font-weight: 700; padding: 2px 8px; border-radius: 5px; margin-left: 8px; letter-spacing: .04em; vertical-align: middle; }
.field .opt { color: var(--muted-2); background: var(--pink-50); font-size: .66rem; font-weight: 600; padding: 2px 8px; border-radius: 5px; margin-left: 8px; vertical-align: middle; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--pink-50); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--pink-400); background: #fff; box-shadow: 0 0 0 4px var(--pink-100);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.consent { display: flex; align-items: flex-start; gap: 11px; font-size: .86rem; color: var(--muted); line-height: 1.7; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex: 0 0 auto; accent-color: var(--pink-600); }
.consent a { color: var(--pink-600); text-decoration: underline; }
.form-submit { margin-top: 24px; }
.form-alert { border-radius: var(--r-sm); padding: 14px 18px; font-size: .92rem; margin-bottom: 22px; font-weight: 500; }
.form-alert--ok { background: #EAF7F0; color: #2C7A54; border: 1px solid #B9E4CD; }
.form-alert--err { background: #FDECEF; color: #B3325A; border: 1px solid #F6C7D5; }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); padding-block: 60px 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 34px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { font-size: .88rem; line-height: 1.9; color: rgba(255,255,255,.6); max-width: 300px; }
.footer-col h4 { font-family: var(--font-head); font-weight: 700; font-size: .92rem; color: #fff; margin-bottom: 16px; letter-spacing: .06em; }
.footer-col a { display: block; font-size: .88rem; padding: 6px 0; color: rgba(255,255,255,.7); }
.footer-col a:hover { color: var(--pink-300); }
.footer-company { margin-top: 46px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); display: grid; gap: 6px; font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-company .row { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-company .row .lbl { min-width: 92px; color: rgba(255,255,255,.4); }
.footer-oem { margin-top: 16px; font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.8; }
.footer-bottom { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-bottom .f-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* =========================================================================
   Sticky mobile CTA
   ========================================================================= */
.sticky-cta { display: none; }
@media (max-width: 760px) {
  .sticky-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,249,251,.94); backdrop-filter: blur(10px); box-shadow: 0 -6px 20px rgba(122,43,74,.12);
  }
  .sticky-cta .btn { flex: 1; padding: 14px 10px; font-size: .9rem; }
  body { padding-bottom: 72px; }
}

/* =========================================================================
   Scroll reveal
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-chip { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; margin-bottom: 12px; }
  .hero-phone { rotate: 0deg; }
  .hero-sub { max-width: none; }
  .problem-grid, .strength-grid, .steps, .feat-grid, .stats-grid { grid-template-columns: 1fr 1fr; }
  .steps.has-arrow .step:not(:last-child)::after { display: none; }
  .dash, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .problem-grid, .strength-grid, .steps, .feat-grid, .stats-grid, .price-features { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .flow::before { left: 28px; }
  .flow-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .flow-no { width: 56px; height: 56px; font-size: 1.2rem; }
  .sec-head { text-align: left; }
  .sec-eyebrow { justify-content: flex-start; }
  .sp-only { display: inline; }
}
