/* =============================================
   Smapochi LP — Design v6
   Palette: Teal × Coral × Clean White
   ============================================= */

:root {
  --teal:        #0d7c7c;
  --teal-light:  #e6f6f6;
  --teal-mid:    #b0dede;
  --teal-dark:   #085a5a;
  --accent:      #e85d8a;
  --accent-light:#fce8ef;
  --text:        #1a3a3a;
  --muted:       #5a7a7a;
  --border:      #c8e8e8;
  --white:       #ffffff;
  --line-green:  #06C755;
  --font:        'Noto Sans JP', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', sans-serif;
  --radius-sm:   6px;
  --radius:      10px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,.06);
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 40px rgba(13,124,124,.15);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 17px;
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.material-symbols-rounded {
  font-family: 'Material Symbols Rounded';
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  vertical-align: middle;
}

/* =============================================
   NAV
   ============================================= */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--teal);
  height: 60px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-cta {
  display: inline-block;
  padding: 9px 22px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: 24px;
  letter-spacing: .02em;
  transition: filter .2s, transform .15s;
}
.nav-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* =============================================
   SHARED SECTION LAYOUT
   ============================================= */
.sec, .hero { padding: 80px 28px; }
.sec-inner, .hero-inner { max-width: 1140px; margin: 0 auto; }
.sec     { position: relative; background: var(--white); }
.sec-alt { background: var(--teal-light); }

/* 吹き出しマイクロコピー */
.thought-bubble {
  position: relative;
  display: block;
  width: fit-content;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 16px;
  margin-bottom: 20px;
}
.thought-bubble::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 30px;
  border-width: 12px 10px 0;
  border-style: solid;
  border-color: var(--border) transparent transparent;
}
.thought-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 32px;
  border-width: 10px 8px 0;
  border-style: solid;
  border-color: var(--white) transparent transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

h2.sec-title {
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
h2.sec-title strong { color: var(--teal); }

.sec-title-line {
  display: block;
  width: 36px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 40px;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(140deg, #c8eaea 0%, #e6f6f6 45%, #f0fafa 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -120px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,124,124,.13) 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,124,124,.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-left { max-width: 700px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 70px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.04em;
  color: var(--text);
  margin-bottom: 16px;
}

.hero-catch-normal {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* AI対応バッジ */
.ai-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.ai-badges-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--muted);
  background: rgba(13,124,124,.08);
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.ai-badges-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.ai-badge svg {
  width: 15px;
  height: 15px;
  color: var(--teal);
  flex-shrink: 0;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.hero-trust span {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-block;
  padding: 18px 28px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  border-radius: 32px;
  text-align: center;
  letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(232,93,138,.4);
  transition: filter .2s, transform .15s;
}
.btn-cta-primary:hover { filter: brightness(1.07); transform: translateY(-2px); }

.btn-cta-secondary {
  display: inline-block;
  padding: 16px 28px;
  background: var(--white);
  color: var(--teal);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  border-radius: 32px;
  text-align: center;
  border: 2px solid var(--teal);
  letter-spacing: .02em;
  transition: background .2s, color .2s, transform .15s;
}
.btn-cta-secondary:hover { background: var(--teal); color: #fff; transform: translateY(-1px); }

.hero-note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--teal);
  color: #fff;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}

/* =============================================
   IMAGE PLACEHOLDERS
   ============================================= */
.img-ph {
  background: linear-gradient(135deg, var(--teal-light) 0%, #d0eaea 100%);
  border: 2px dashed var(--teal-mid);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.img-ph-icon { font-size: 36px; opacity: .45; line-height: 1; }
.img-ph-title { font-size: 12px; font-weight: 700; color: var(--teal-dark); }
.img-ph-spec { font-size: 10px; color: var(--muted); line-height: 1.7; }

/* =============================================
   PHONE MOCK (pure CSS)
   ============================================= */
.hero-right { display: flex; justify-content: center; align-items: center; }

/* Hero right: phone only */
.hero-scene-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-phone-overlay {
  filter: drop-shadow(0 24px 56px rgba(0,0,0,.28));
  zoom: 1.55;
}

.phone-mock {
  width: 185px;
  background: #1a1a1a;
  border-radius: 32px;
  padding: 7px;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
  flex-shrink: 0;
}
.phone-notch-bar {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch {
  width: 60px;
  height: 7px;
  background: #2d2d2d;
  border-radius: 4px;
}
.phone-screen {
  background: #f0fbfb;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-header {
  background: var(--white);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--border);
}
.phone-logo-s {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--teal);
  border-radius: 5px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}
.phone-logo-text {
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .06em;
}
.phone-body { padding: 8px 10px 10px; }
.phone-label {
  font-size: 7.5px;
  color: var(--teal-dark);
  font-weight: 700;
  margin: 8px 0 3px;
  display: block;
}
.phone-label .req {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 6px;
  padding: 1px 3px;
  border-radius: 2px;
  margin-left: 3px;
}
.phone-input {
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 7px;
  color: #9ab;
  width: 100%;
}
.phone-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--white);
  border: 1.5px dashed var(--teal-mid);
  border-radius: 4px;
  padding: 9px 6px;
  font-size: 7px;
  color: var(--muted);
}
.phone-upload .ti { font-size: 13px; color: var(--teal-mid); }
.phone-upload .material-symbols-rounded { font-size: 13px; color: var(--teal-mid); }
.phone-upload-sub { display: flex; gap: 4px; }
.phone-upload-add {
  flex: 1;
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 7px 4px;
  font-size: 11px;
  color: var(--teal-mid);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-memo {
  background: var(--teal-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 7px;
  color: #9ab;
  min-height: 28px;
  width: 100%;
}
.phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  margin-top: 10px;
  padding: 8px;
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 8.5px;
  font-weight: 700;
  cursor: default;
  letter-spacing: .04em;
  font-family: var(--font);
}
.phone-btn .ti { font-size: 11px; }
.phone-home-bar {
  height: 20px;
  background: #f0fbfb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-home-bar::after {
  content: '';
  width: 56px;
  height: 3px;
  background: rgba(0,0,0,.18);
  border-radius: 2px;
}

/* =============================================
   NUMBERS BAR
   ============================================= */
.numbers-bar { background: var(--white); padding: 48px 28px; }
.numbers-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.number-item {
  text-align: center;
  padding: 40px 20px 36px;
  border-right: 1px solid var(--border);
}
.number-item:last-child { border-right: none; }
.number-illust {
  display: block;
  width: 130px;
  height: 130px;
  margin: 0 auto 16px;
  object-fit: contain;
  object-position: bottom center;
}
.number-val {
  display: block;
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 8px;
}
.number-val sup { font-size: .45em; vertical-align: super; letter-spacing: 0; }
.number-val small { font-size: .42em; letter-spacing: 0; }
.number-label {
  display: block;
  font-size: 14px;
  color: var(--muted);
  letter-spacing: .03em;
  font-weight: 500;
}

/* =============================================
   EMBLEM / TRUST SECTION
   ============================================= */
.emblem-sec {
  background: var(--teal-dark);
  padding: 52px 28px;
}
.emblem-inner { max-width: 1140px; margin: 0 auto; }
.emblem-sec-lead {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.emblem-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.emblem-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
}
.emblem-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.emblem-badge {
  width: 86px;
  height: 86px;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.25);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.emblem-val {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -.02em;
}
.emblem-unit {
  font-size: 9px;
  color: rgba(255,255,255,.7);
  font-weight: 600;
  letter-spacing: .04em;
}
.emblem-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-align: center;
  line-height: 1.5;
  letter-spacing: .03em;
}

/* Media / Award logos */
.media-logos-wrap {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
}
.media-logos-label {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,.38);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.media-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.media-logo-ph {
  width: 130px !important;
  height: 52px !important;
  background: rgba(255,255,255,.07) !important;
  border: 1px dashed rgba(255,255,255,.2) !important;
  border-radius: var(--radius-sm) !important;
  flex-direction: row !important;
  padding: 8px 12px !important;
  gap: 6px !important;
}
.media-logo-ph .img-ph-spec { color: rgba(255,255,255,.45) !important; font-size: 9px !important; }

/* =============================================
   PROBLEM
   ============================================= */
.pain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pain-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.pain-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pain-num {
  display: block;
  font-size: 120px;
  font-weight: 900;
  color: rgba(13,124,124,.06);
  line-height: 1;
  position: absolute;
  top: -10px;
  right: 8px;
  letter-spacing: -.05em;
  user-select: none;
  pointer-events: none;
}
.pain-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
  position: relative;
}
.pain-card h3::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 12px;
}
.pain-card p { font-size: 15px; color: var(--muted); line-height: 1.75; position: relative; }

/* PROBLEM split layout */
.problem-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.problem-right {
  align-self: flex-start;
  position: sticky;
  top: 100px;
}
.problem-illust {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.pain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  transition: box-shadow .2s, transform .2s;
}
.pain-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pain-item-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1.1;
  flex-shrink: 0;
  opacity: .25;
  letter-spacing: -.05em;
  min-width: 44px;
}
.pain-item-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.4;
}
.pain-item-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps { display: flex; flex-direction: column; }
.step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  align-items: center;
  padding: 44px 0 44px 100px;
  border-bottom: 1px solid var(--border);
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num {
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-55%);
  font-size: 140px;
  font-weight: 900;
  color: rgba(13,124,124,.07);
  line-height: 1;
  letter-spacing: -.06em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
.step-content { position: relative; z-index: 1; }
.step-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--teal);
  margin-bottom: 8px;
  background: var(--teal-light);
  padding: 4px 10px;
  border-radius: 100px;
}
.step-content h3 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -.02em;
  line-height: 1.35;
}
.step-content p { font-size: 16px; color: var(--muted); line-height: 1.8; }
.step-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 175px;
}

/* =============================================
   SCENE SECTION (利用シーン写真)
   ============================================= */
.sec-scene-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.scene-ph { height: 380px; }
.scene-text h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.scene-list {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scene-list li {
  font-size: 14px;
  color: var(--text);
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}
.scene-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
  font-size: 15px;
}
.scene-text .btn-cta-primary {
  display: inline-block;
  max-width: 240px;
}

/* =============================================
   MID CTA
   ============================================= */
.cta-mid { background: var(--teal); padding: 48px 28px; }
.cta-mid-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-mid-text h3 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.4;
}
.cta-mid-text p { font-size: 13px; color: rgba(255,255,255,.7); }
.btn-cta-mid {
  display: inline-block;
  padding: 14px 32px;
  background: var(--white);
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 28px;
  letter-spacing: .02em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: filter .2s, transform .15s;
}
.btn-cta-mid:hover { filter: brightness(.97); transform: translateY(-1px); }

/* =============================================
   FEATURES
   ============================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 3px solid var(--teal);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 50%;
  margin-bottom: 14px;
  color: var(--teal);
}
.feature-icon .ti { font-size: 28px; }
.feature-icon .material-symbols-rounded { font-size: 28px; }
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.45; }
.feature-card p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* Features with illustration */
.features-with-illust {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
.illust-ph {
  height: 360px;
  position: sticky;
  top: 80px;
}

/* =============================================
   VOICE
   ============================================= */
.voices { display: flex; flex-direction: column; gap: 20px; }
.voice-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.voice-kpi {
  display: flex;
  background: var(--teal);
  padding: 16px 24px;
  gap: 0;
}
.voice-kpi-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.voice-kpi-item:last-child { border-right: none; }
.voice-kpi-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -.03em;
}
.voice-kpi-label {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  text-align: center;
  line-height: 1.4;
}
.voice-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px 0;
  margin-bottom: 12px;
}
.voice-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}
.voice-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50% !important;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center top;
  background: var(--teal-light);
  padding: 0;
}
.voice-chips-meta { flex: 1; }
.voice-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.voice-chip {
  display: inline-flex;
  padding: 5px 13px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.voice-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 0;
  padding: 0 24px 24px;
}
.voice-meta {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.voice-cta { text-align: center; margin-top: 36px; }
.voice-cta a {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(232,93,138,.3);
  transition: filter .2s, transform .15s;
}
.voice-cta a:hover { filter: brightness(1.07); transform: translateY(-1px); }
.voice-cta-note { font-size: 11px; color: var(--muted); margin-top: 10px; }

/* =============================================
   COMPARE TABLE
   ============================================= */
.compare-wrap {
  overflow-x: auto;
  margin-bottom: 56px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
  min-width: 600px;
}
.compare-table th,
.compare-table td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  background: var(--teal-light);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .03em;
}
.compare-table th.col-smapochi {
  background: var(--accent);
  color: var(--white);
  font-size: 14px;
}
.compare-table td:first-child {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
  background: var(--teal-light);
}
.compare-table td.col-smapochi {
  background: rgba(232,93,138,.06);
  color: var(--accent);
  font-weight: 600;
}
.compare-table tbody tr:last-child td { border-bottom: none; }

.why-smapochi-title {
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.why-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--teal-mid);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.45; }
.why-card p { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* =============================================
   FAQ
   ============================================= */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: baseline;
  line-height: 1.5;
}
.faq-q::before {
  content: 'Q';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--teal);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-a-wrap {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.faq-a-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-a {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}

/* =============================================
   CONTACT
   ============================================= */
.sec-contact { background: var(--teal-light); }
.contact-lead {
  color: var(--muted);
  margin-bottom: 32px;
  font-size: 17px;
  line-height: 1.75;
}
.contact-form-wrap {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.contact-form-wrap .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form-wrap .wpcf7-form p { margin: 0; }
.contact-form-wrap .wpcf7-form p:nth-child(5),
.contact-form-wrap .wpcf7-form p:nth-child(6),
.contact-form-wrap .wpcf7-form p:last-child { grid-column: 1 / -1; }
.contact-form-wrap label {
  font-size: 12px;
  color: var(--teal-dark);
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: .03em;
}
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  background: #f8fcfc;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color .2s, background .2s;
  outline: none;
}
.contact-form-wrap input:focus,
.contact-form-wrap select:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--teal);
  background: var(--teal-light);
}
.contact-form-wrap textarea { min-height: 120px; resize: vertical; }
.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 28px;
  cursor: pointer;
  width: 100%;
  font-family: var(--font);
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(232,93,138,.3);
  transition: filter .2s, transform .15s;
}
.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}
.line-btn-wrap { text-align: center; margin-top: 20px; }
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  background: var(--line-green);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(6,199,85,.3);
  transition: filter .2s, transform .15s;
}
.btn-line:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-line .ti { font-size: 18px; }
.btn-line .material-symbols-rounded { font-size: 20px; }

/* =============================================
   FLOATING CTA (mobile only)
   ============================================= */
.floating-cta { display: none; }
@media (max-width: 680px) {
  .floating-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 22px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 28px;
    box-shadow: 0 4px 16px rgba(232,93,138,.4);
    z-index: 200;
    letter-spacing: .02em;
  }
  .floating-cta .ti { font-size: 18px; }
  .floating-cta .material-symbols-rounded { font-size: 18px; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--teal); padding: 28px 28px; }
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.footer-logo span { color: rgba(255,255,255,.75); }
.footer-nav { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-nav a {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.footer-nav a:hover { color: rgba(255,255,255,1); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.6); }

/* =============================================
   RESPONSIVE
   ============================================= */
/* ── REAL IMAGES ─────────────────────────────── */
.hero-scene-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.scene-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
}
.voice-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}

/* ── ILLUSTRATION STRIPS ─────────────────────── */
.steps-illust-strip,
.feature-illust-strip {
  margin-top: 40px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  line-height: 0;
}
.steps-illust-img,
.feature-illust-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: left top;
  display: block;
}

/* ── MANGA STRIP ─────────────────────────────── */
.manga-sec {
  background: #fffef8;
  padding: 80px 0;
  border-top: 4px solid #111;
  border-bottom: 4px solid #111;
}
.manga-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: #111;
  border: 3px solid #111;
  border-radius: 4px;
  overflow: hidden;
  max-width: 960px;
  margin: 40px auto 0;
}
.manga-panel {
  background: #fff;
  position: relative;
  min-height: 200px;
  padding: 14px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.manga-panel.drama { background: #fffde8; }
.manga-panel.drama::before {
  content: '';
  position: absolute;
  inset: -20%;
  background: repeating-conic-gradient(from 0deg at 50% 55%, transparent 0deg 4deg, rgba(200,180,0,.09) 4deg 5deg);
  pointer-events: none;
}
.manga-pnum {
  position: absolute;
  top: 5px;
  left: 6px;
  font-size: 10px;
  font-weight: 900;
  color: #111;
  border: 1.5px solid #111;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: #fff;
  z-index: 2;
  flex-shrink: 0;
}
.manga-caption {
  font-size: 10px;
  font-weight: 600;
  color: #555;
  background: #f0ede6;
  margin: -14px -10px 4px;
  padding: 3px 8px;
  border-bottom: 1.5px solid #111;
}
.manga-char-area {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 60px;
}
.manga-char-img {
  max-height: 115px;
  width: auto;
  object-fit: contain;
  display: block;
}
.title-char-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid rgba(255,255,255,.55);
  margin-bottom: 2px;
}
/* Full illustration panels */
.manga-panel.full-illust {
  padding: 0;
  overflow: hidden;
  background: transparent;
}
.manga-panel-full {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}
/* Text overlays on full-illust panels */
.manga-ov {
  position: absolute;
  z-index: 3;
  font-family: "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
  pointer-events: none;
  margin: 0;
}
/* Panel 1: cover nameplate "Nane Name" with Japanese */
.manga-ov-nameplate {
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  background: #fff;
  border: 1.5px solid #555;
  border-radius: 3px;
  padding: 3px 6px 4px;
}
.mov-name {
  display: block;
  font-size: clamp(9px, 2.2vw, 13px);
  color: #111;
  letter-spacing: 0.02em;
}
.mov-role {
  display: block;
  font-size: clamp(7px, 1.6vw, 10px);
  color: #555;
  font-weight: 700;
  margin-top: 1px;
}
/* Panel 2: text inside thought bubble (upper-center area) */
.manga-ov-thought2 {
  top: 7%;
  left: 22%;
  width: 55%;
  font-size: clamp(7px, 1.8vw, 11px);
  color: #111;
}
/* Panel 3: shout bubble added on top of image */
.manga-ov-shout3 {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  background: #fff;
  border: 2.5px solid #111;
  border-radius: 12px;
  padding: 4px 8px;
  font-size: clamp(7px, 1.8vw, 11px);
  color: #111;
}
.manga-ov-shout3::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111;
}
/* Panel 4: text inside thought bubble (upper-right corner) */
.manga-ov-thought4 {
  top: 4%;
  right: 3%;
  width: 35%;
  font-size: clamp(6px, 1.5vw, 9px);
  color: #111;
}
/* Panel 7: celebration text */
.manga-ov-celebrate7 {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  font-size: clamp(8px, 2.2vw, 13px);
  color: var(--teal);
  text-shadow: 0 0 6px #fff, 0 0 12px rgba(255,255,255,.8);
}
/* Panel 5: friend's speech bubble (upper-right area) */
.manga-ov-bubble5 {
  top: 3%;
  right: 3%;
  width: 60%;
  background: #fff;
  border: 2.5px solid #111;
  border-radius: 12px;
  padding: 4px 8px;
  font-size: clamp(7px, 1.7vw, 10px);
  color: #111;
  text-align: left;
}
.manga-ov-bubble5::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 30%;
  border: 5px solid transparent;
  border-top-color: #111;
}
/* Panel 6: SFX overlay */
.manga-ov-sfx6 {
  top: 5%;
  left: 4%;
  font-size: clamp(18px, 5vw, 32px);
  color: #111;
  font-weight: 900;
  text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff;
  letter-spacing: -0.02em;
}
/* Panel 8: speech bubble */
.manga-ov-bubble8 {
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 74%;
  background: #fff;
  border: 2.5px solid #111;
  border-radius: 12px;
  padding: 4px 8px;
  font-size: clamp(7px, 1.8vw, 11px);
  color: #111;
}
.manga-ov-bubble8::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #111;
}
.manga-bubble {
  background: #fff;
  border: 2px solid #111;
  border-radius: 10px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.manga-bubble.tail-d::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 18px;
  border: 6px solid transparent;
  border-top: 10px solid #111;
}
.manga-bubble.tail-d::before {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 19px;
  border: 5px solid transparent;
  border-top: 8px solid #fff;
  z-index: 1;
}
.manga-bubble.tail-dr::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 18px;
  border: 6px solid transparent;
  border-top: 10px solid #111;
}
.manga-bubble.tail-dr::before {
  content: '';
  position: absolute;
  bottom: -7px;
  right: 19px;
  border: 5px solid transparent;
  border-top: 8px solid #fff;
  z-index: 1;
}
.manga-bubble.thought::after {
  content: '';
  position: absolute;
  bottom: -9px;
  left: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #111;
  box-shadow: 9px 5px 0 0 #111, 17px 9px 0 0 #111;
}
.manga-bubble.thought::before { display: none; }
.manga-sfx {
  font-size: 20px;
  font-weight: 900;
  color: #111;
  text-align: center;
  line-height: 1.1;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.manga-sfx.big { font-size: 22px; color: var(--accent); }
.manga-sfx.teal-sfx { font-size: 12px; color: var(--teal); font-weight: 700; }
.manga-notif {
  background: var(--accent);
  color: #fff;
  border: 2px solid #111;
  border-radius: 8px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  flex-shrink: 0;
}
.manga-stars { display: flex; justify-content: center; font-size: 14px; flex-shrink: 0; z-index: 1; position: relative; }
.manga-complaint-item {
  background: #fff;
  border: 1.5px solid #111;
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
}
.manga-complaint-item.loud {
  background: #fff0f5;
  border-color: var(--accent);
  color: var(--accent);
  text-align: center;
  font-size: 11px;
}
.manga-line-icon {
  width: 44px;
  height: 44px;
  background: #06C755;
  border-radius: 10px;
  border: 2px solid #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin: 0 auto;
}
.manga-panel.title-panel {
  background: var(--teal);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
}
.manga-intro-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.7); letter-spacing: .12em; }
.manga-intro-name { font-size: 15px; font-weight: 900; color: #fff; }
.manga-intro-role { font-size: 10px; color: rgba(255,255,255,.8); }
.manga-intro-tag {
  font-size: 10px;
  color: #fff;
  background: rgba(0,0,0,.25);
  border-radius: 4px;
  padding: 3px 8px;
  margin-top: 4px;
  line-height: 1.5;
}
.manga-cta-note {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--teal);
  margin-top: 28px;
}

/* =============================================
   ILLUSTRATION CHIPS (individual files)
   ============================================= */
.lp-chip {
  display: block;
  width: 140px;
  height: 136px;
  object-fit: contain;
  flex-shrink: 0;
}
.step-visual .lp-chip {
  width: 180px;
  height: 175px;
}

.deco-aside {
  position: absolute;
  width: 160px;
  height: auto;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}
.deco-aside--left  { left: 16px; }
.deco-aside--right { right: 16px; }

@media (max-width: 1280px) {
  .deco-aside { display: none; }
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 300px; gap: 36px; }
  .hero h1 { font-size: clamp(36px, 5vw, 62px); }
  .hero-catch-normal { font-size: clamp(16px, 1.8vw, 22px); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr 240px; gap: 32px; }
  .hero-scene-ph { height: 360px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .features-with-illust { grid-template-columns: 1fr; }
  .illust-ph { height: 220px; position: static; }
  .why-cards { grid-template-columns: 1fr 1fr; }
  .cta-mid-inner { flex-direction: column; text-align: center; }
  .sec-scene-inner { gap: 32px; }
  .scene-ph { height: 280px; }
  .emblem-item { padding: 0 20px; }
}

@media (max-width: 768px) {
  .sec, .hero, .cta-mid { padding: 56px 20px; }
  .numbers-bar { padding: 32px 20px; }
  .emblem-sec { padding: 40px 20px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero h1 { font-size: 32px; }
  .hero-btns { max-width: 100%; }
  .hero-trust { gap: 12px; }
  .sec-scene-inner { grid-template-columns: 1fr; }
  .scene-ph { height: 240px; }
  .numbers-inner { grid-template-columns: 1fr; }
  .number-item { border-right: none; border-bottom: 1px solid var(--border); }
  .number-item:last-child { border-bottom: none; }
  .pc-br { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-num { font-size: 80px; }
  .problem-split { grid-template-columns: 1fr; gap: 32px; }
  .problem-right { order: -1; position: static; }
  .problem-illust { max-width: 280px; margin: 0 auto; height: auto; }
  .step { grid-template-columns: 1fr; padding: 36px 0 36px 72px; }
  .step-visual { display: none; }
  .step-num { font-size: 96px; left: -8px; }
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-cards { grid-template-columns: 1fr; }
  .contact-form-wrap .wpcf7-form { grid-template-columns: 1fr; }
  .contact-form-wrap .wpcf7-form p:nth-child(5),
  .contact-form-wrap .wpcf7-form p:nth-child(6) { grid-column: auto; }
  h2.sec-title { font-size: 28px; margin-bottom: 8px; }
  .emblem-grid { gap: 16px; }
  .emblem-item { padding: 0 14px; }
  .emblem-divider { height: 40px; }
  .media-logo-ph { width: 100px !important; }
}

@media (max-width: 760px) {
  .manga-strip { grid-template-columns: repeat(2, 1fr); }
  .manga-panel { min-height: 200px; }
  .manga-bubble { font-size: 11px; }
  .steps-illust-img,
  .feature-illust-img { height: 130px; }
}

@media (max-width: 520px) {
  .feature-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .why-cards { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 10px 10px; font-size: 12px; }
  .manga-panel { min-height: 170px; padding: 12px 8px 10px; }
  .manga-bubble { font-size: 10px; padding: 5px 7px; }
  .manga-complaint-item { font-size: 9px; }
}

/* ===== ASSET CONCEPT SECTION ===== */
.asset-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
.asset-panel {
  padding: 36px 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.asset-panel--before {
  background: #fff5f7;
  border: 2px dashed #f0b0bc;
}
.asset-panel--after {
  background: var(--teal-light);
  border: 2px solid var(--teal);
}
.asset-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.asset-panel--before .asset-label {
  background: #f0b0bc;
  color: #7d1a2a;
}
.asset-panel--after .asset-label {
  background: var(--teal);
  color: #fff;
}
.asset-panel h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.35;
}
.asset-panel--before h3 { color: #7d1a2a; }
.asset-panel--after h3 { color: #0a5858; }
.asset-panel-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.asset-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
  margin-bottom: 24px;
}
.asset-bar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  opacity: .85;
}
.asset-panel--before .asset-bar { background: #f0b0bc; }
.asset-panel--after .asset-bar { background: var(--teal); }
.asset-list {
  list-style: none;
  margin: 0 0 28px;
}
.asset-list li {
  font-size: 14px;
  padding: 9px 0 9px 24px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  position: relative;
  color: var(--text);
  line-height: 1.5;
}
.asset-panel--before .asset-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
}
.asset-panel--after .asset-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.asset-result-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
}
.asset-panel--before .asset-result-tag {
  background: #fce8ef;
  color: #c0392b;
  border: 1px solid #f0b0bc;
}
.asset-panel--after .asset-result-tag {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 16px rgba(13,124,124,.25);
}
@media (max-width: 760px) {
  .asset-split { grid-template-columns: 1fr; }
}

/* ===== PRICING SECTION ===== */
.sec-lead {
  font-size: 17px;
  color: var(--muted);
  margin-top: 12px;
  line-height: 1.7;
}
.pricing-lead {
  font-size: 16px;
  color: var(--muted);
  margin-top: 10px;
  text-align: left;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .2s;
}
.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  transform: translateY(-4px);
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(232,93,138,.18);
  padding-top: 52px;
}
.plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: .05em;
  box-shadow: 0 4px 12px rgba(232,93,138,.35);
}
.plan-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--teal-dark);
  text-align: center;
  margin-bottom: 16px;
}
.plan-price-wrap {
  text-align: center;
  margin-bottom: 6px;
}
.plan-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.02em;
}
.plan-yen {
  font-size: 24px;
  vertical-align: top;
  padding-top: 9px;
  display: inline-block;
  font-weight: 700;
}
.plan-unit {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}
.plan-initial {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}
.plan-features li {
  font-size: 14px;
  padding: 10px 0 10px 26px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text);
  line-height: 1.5;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.plan-features .feat-off {
  color: #bbb;
}
.plan-features .feat-off::before {
  content: '—';
  color: #ccc;
}
.btn-plan {
  display: block;
  text-align: center;
  padding: 15px 20px;
  border-radius: 100px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}
.btn-plan:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}
.btn-plan--featured {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(232,93,138,.3);
}
.btn-plan--featured:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
  background: var(--accent);
  color: white;
}
.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 28px;
  line-height: 1.8;
}

/* 単一プライスカード */
.price-single {
  margin-top: 52px;
}
.price-single-card {
  background: var(--white);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 44px rgba(232,93,138,.16);
  padding: 44px 48px 40px;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.price-single-head {
  text-align: center;
}
.price-single .plan-price {
  font-size: 64px;
}
.price-single .plan-yen {
  font-size: 30px;
  padding-top: 12px;
}
.plan-tilde {
  font-size: 34px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.02em;
}
.price-single .plan-initial {
  font-size: 13px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.price-single-features {
  margin-bottom: 32px;
}
.price-single-features li {
  font-size: 15px;
  padding: 12px 0 12px 28px;
}
.price-single-note {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { padding-top: 52px; }
}
@media (max-width: 560px) {
  .price-single-card { padding: 32px 24px 28px; }
  .price-single .plan-price { font-size: 52px; }
  .price-single .plan-yen { font-size: 24px; padding-top: 9px; }
}

/* ===== ASSET BARS ANIMATION ===== */
.asset-bar {
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform .55s cubic-bezier(.34,1.56,.64,1);
}
.asset-bars.bars-visible .asset-bar:nth-child(1) { transition-delay: .00s; }
.asset-bars.bars-visible .asset-bar:nth-child(2) { transition-delay: .08s; }
.asset-bars.bars-visible .asset-bar:nth-child(3) { transition-delay: .16s; }
.asset-bars.bars-visible .asset-bar:nth-child(4) { transition-delay: .24s; }
.asset-bars.bars-visible .asset-bar:nth-child(5) { transition-delay: .32s; }
.asset-bars.bars-visible .asset-bar { transform: scaleY(1); }

/* ===== REPORT MODAL ===== */
.report-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.report-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.report-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,30,30,.6);
  backdrop-filter: blur(4px);
}
.report-modal-box {
  position: relative;
  background: #f7f9f9;
  border-radius: 20px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(.97);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
}
.report-modal.is-open .report-modal-box {
  transform: translateY(0) scale(1);
}
.report-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 22px;
  border-bottom: 1px solid #e0eded;
  background: white;
}
.report-modal-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: 6px;
}
.report-modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}
.report-modal-sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.report-modal-close {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f0f4f4;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  line-height: 1;
  margin-top: 2px;
}
.report-modal-close:hover {
  background: var(--teal);
  color: white;
}
.report-modal-body {
  overflow-y: auto;
  padding: 28px 24px 36px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/* btn-report-sample: subtle link inside pricing card */
.btn-report-sample {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  padding: 10px 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--teal);
  font-family: inherit;
  font-weight: 600;
  border-radius: 100px;
  transition: background .2s;
  text-decoration: underline;
  text-decoration-color: transparent;
}
.btn-report-sample:hover {
  background: var(--teal-light);
  text-decoration-color: var(--teal);
}

/* rg-* styles (analytics report cards) */
.rg-wrap *, .rg-wrap *::before, .rg-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
.rg-wrap { width: 100%; max-width: 1100px; margin: 0 auto; font-family: -apple-system, BlinkMacSystemFont, 'Noto Sans JP', sans-serif; }
.rg-group-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #999; margin-bottom: 12px; padding-left: 2px; }
.rg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 28px; }
.rg-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 8px; overflow: hidden; cursor: default; transition: box-shadow .2s, transform .2s; display: flex; flex-direction: column; }
.rg-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.10); transform: translateY(-2px); }
.rg-card-header { display: flex; align-items: center; gap: 8px; padding: 10px 12px 8px; border-bottom: 1px solid #f0f0f0; }
.rg-card-icon { width: 26px; height: 26px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.rg-card-title { font-size: 10.5px; font-weight: 700; color: #222; line-height: 1.35; }
.rg-card-preview { padding: 10px 12px 12px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 48px; padding: 0 2px; }
.mini-bar { flex: 1; border-radius: 2px 2px 0 0; min-height: 4px; }
.mini-svg { width: 100%; height: 48px; display: block; }
.mini-donut-row { display: flex; align-items: center; gap: 10px; }
.mini-donut { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.mini-donut-legend { flex: 1; }
.mini-donut-item { display: flex; align-items: center; gap: 5px; font-size: 9px; color: #555; margin-bottom: 3px; }
.mini-donut-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mini-table-rows { display: flex; flex-direction: column; gap: 4px; }
.mini-table-row { display: flex; align-items: center; gap: 5px; }
.mini-table-label { font-size: 8.5px; color: #999; width: 40px; flex-shrink: 0; overflow: hidden; white-space: nowrap; }
.mini-table-bar-bg { flex: 1; height: 7px; background: #f0f0f0; border-radius: 2px; overflow: hidden; }
.mini-table-bar-fill { height: 100%; border-radius: 2px; }
.mini-stack-row { display: flex; gap: 3px; align-items: flex-end; height: 44px; }
.mini-stack-col { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; gap: 1px; }
.mini-stack-seg { width: 100%; border-radius: 1px 1px 0 0; }
.mini-heat { display: flex; flex-direction: column; gap: 3px; }
.mini-heat-row { display: flex; gap: 3px; }
.mini-heat-cell { flex: 1; height: 10px; border-radius: 1px; }
.rg-card-footer { padding: 6px 12px 8px; font-size: 9.5px; color: #bbb; border-top: 1px solid #f5f5f5; display: flex; align-items: center; justify-content: space-between; }
.rg-tag { display: inline-block; font-size: 8.5px; font-weight: 700; letter-spacing: .06em; padding: 2px 7px; border-radius: 3px; }
.rg-tag-gbp { background: #e3f2fd; color: #1565c0; }
.rg-tag-insta { background: #fce4ec; color: #c2185b; }
.ico-blue { background: #e3f2fd; color: #1976d2; }
.ico-teal { background: #e0f7fa; color: #00acc1; }
.ico-orange { background: #fff3e0; color: #f57c00; }
.ico-green { background: #e8f5e9; color: #388e3c; }
.ico-pink { background: #fce4ec; color: #c2185b; }
.ico-purple { background: #f3e5f5; color: #7b1fa2; }
@media (max-width: 760px) {
  .rg-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .report-modal-header { padding: 20px 20px 16px; }
  .report-modal-body { padding: 20px 16px 28px; }
}
