/* ===== LP固有スタイル ===== */
:root {
  --hero-bg-1: #dbeafe;
  --hero-bg-2: #93c5fd;
  --section-pad: 80px 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic UI", Meiryo, sans-serif;
  color: #1c1f24;
  line-height: 1.7;
  background: #ffffff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #2563eb; }
.lp-container { max-width: 1080px; margin: 0 auto; padding: 0 16px; }

/* Nav */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: 1080px; margin: 0 auto; padding: 0 16px;
}
.lp-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}
.lp-brand img { width: 36px; height: 36px; }
.lp-brand-name { font-size: 1.2rem; font-weight: 800; color: #2563eb; letter-spacing: 0.02em; }
.lp-nav-links {
  display: inline-flex; gap: 24px; align-items: center;
  font-size: 0.92rem;
}
.lp-nav-links > a {
  color: #4b5563; text-decoration: none;
  position: relative;
  padding: 6px 2px;
  transition: color 0.15s;
}
.lp-nav-links > a:hover { color: #2563eb; }
.lp-nav-links > a.is-active {
  color: #2563eb;
  font-weight: 700;
}
.lp-nav-links > a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -22px;
  height: 3px;
  background: #2563eb;
  border-radius: 2px 2px 0 0;
}
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 80px; }
.lp-nav-cta {
  background: #2563eb; color: #fff !important;
  padding: 8px 18px; border-radius: 6px;
  font-weight: 600; font-size: 0.88rem;
}
.lp-nav-cta:hover { background: #1d4ed8; }

/* Hero */
.lp-hero {
  background: linear-gradient(135deg, var(--hero-bg-1), var(--hero-bg-2));
  padding: 80px 16px 96px;
  overflow: hidden;
}
.lp-hero-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: center; max-width: 1080px; margin: 0 auto;
}
.lp-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3; margin: 0 0 20px;
  color: #1e3a8a; font-weight: 800;
}
.lp-hero h1 .accent { color: #2563eb; }
.lp-hero p.lead {
  font-size: 1.05rem; color: #1e3a8a;
  margin: 0 0 28px; opacity: 0.85;
}
.lp-cta-row { display: inline-flex; flex-wrap: wrap; gap: 12px; }
.lp-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px;
  min-width: 220px;
  height: 52px;
  box-sizing: border-box;
  font-size: 1rem; font-weight: 700;
  border-radius: 8px; text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.1s, box-shadow 0.15s;
}
.lp-btn-primary { background: #2563eb; color: #fff; border-color: #2563eb; box-shadow: 0 4px 14px rgba(37,99,235,0.3); }
.lp-btn-primary:hover { background: #1d4ed8; border-color: #1d4ed8; transform: translateY(-1px); }
.lp-btn-secondary { background: #ffffff; color: #2563eb; border-color: #2563eb; }
.lp-btn-secondary:hover { background: #eff6ff; }
.lp-hero-mascot { width: 100%; max-width: 360px; margin-left: auto; }
.lp-hero-trust {
  margin-top: 28px;
  font-size: 0.8rem; color: #1e3a8a; opacity: 0.65;
}

/* Sections */
.lp-section { padding: var(--section-pad); }
.lp-section.alt { background: #f9fafb; }
.lp-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center; margin: 0 0 12px;
  color: #1c1f24; font-weight: 800;
}
.lp-section h2 .accent { color: #2563eb; }
.lp-section .sub {
  text-align: center; color: #6b7280;
  font-size: 1rem; margin: 0 auto 48px;
  max-width: 640px;
}

/* Problem cards */
.problem-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.problem-card {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.problem-card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.problem-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.problem-card p { margin: 0; color: #6b7280; font-size: 0.92rem; }

/* Features grid */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 12px; padding: 28px 24px;
  transition: transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #93c5fd;
}
.feature-card .feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: #eff6ff; color: #2563eb;
  border-radius: 10px;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feature-card h3 { margin: 0 0 8px; font-size: 1.05rem; color: #1c1f24; }
.feature-card p { margin: 0; color: #4b5563; font-size: 0.9rem; }

/* Steps */
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.step-card { text-align: center; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: #2563eb; color: #fff;
  border-radius: 50%; font-size: 1.4rem; font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}
.step-card h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step-card p { margin: 0; color: #6b7280; font-size: 0.92rem; }

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 720px; margin: 0 auto;
}
.price-card {
  background: #fff; border: 2px solid #e5e7eb;
  border-radius: 16px; padding: 32px;
  position: relative;
}
.price-card.featured {
  border-color: #2563eb;
  box-shadow: 0 12px 32px rgba(37,99,235,0.18);
}
.price-card .recommended-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #fbbf24; color: #7c2d12;
  padding: 4px 14px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700;
}
.price-name { margin: 0 0 8px; font-size: 1.1rem; font-weight: 700; color: #2563eb; }
.price-amount {
  font-size: 2.4rem; font-weight: 800; color: #1c1f24;
  margin: 12px 0;
}
.price-amount .unit { font-size: 0.95rem; color: #6b7280; font-weight: 500; }
.price-features { list-style: none; padding: 0; margin: 20px 0; }
.price-features li {
  padding: 8px 0; font-size: 0.92rem;
  border-bottom: 1px dashed #f0f1f3;
  display: flex; gap: 8px; align-items: flex-start;
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before { content: '✓'; color: #10b981; font-weight: 700; }
.price-cta {
  display: block; width: 100%; text-align: center;
  padding: 12px; border-radius: 8px;
  text-decoration: none; font-weight: 700;
  margin-top: 16px;
}
.price-cta.free { background: #f3f4f6; color: #1c1f24; }
.price-cta.free:hover { background: #e5e7eb; }
.price-cta.pro { background: #2563eb; color: #fff; }
.price-cta.pro:hover { background: #1d4ed8; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px; cursor: pointer;
  font-weight: 600; font-size: 0.98rem;
  list-style: none; position: relative;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+'; position: absolute; right: 22px;
  font-size: 1.4rem; color: #2563eb; transition: transform 0.2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a { padding: 0 22px 18px; color: #4b5563; font-size: 0.92rem; }

/* Final CTA (パステルグラデ + コンパクト) */
.lp-final-cta {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0eafe 50%, #fef3c7 100%);
  color: #1e3a8a;
  padding: 36px 16px;
  text-align: center;
}
.lp-final-cta h2 {
  color: #1e3a8a;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 10px;
  line-height: 1.4;
}
.lp-final-cta p {
  color: #1e3a8a;
  opacity: 0.78;
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.6;
}

/* Footer */
.lp-footer {
  background: #1c1f24; color: #9ca3af;
  padding: 48px 16px 32px;
}
.lp-footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: start;
}
.lp-footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; }
.lp-footer-brand img { width: 32px; height: 32px; }
.lp-footer-brand strong { font-size: 1.1rem; color: #fff; }
.lp-footer-tagline { font-size: 0.85rem; margin-top: 8px; }
.lp-footer-links { display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; }
.lp-footer-links a { color: #9ca3af; text-decoration: none; }
.lp-footer-links a:hover { color: #fff; text-decoration: underline; }
.lp-footer-copy {
  border-top: 1px solid #374151;
  margin-top: 32px; padding-top: 16px;
  text-align: center; font-size: 0.78rem;
}

/* ===== コラム横スクロール ===== */
.lp-column-scroll-wrap {
  position: relative;
  margin: 20px -16px 0;
  padding: 0 16px;
}
.lp-column-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 280px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  padding: 12px 4px 16px;
  -webkit-overflow-scrolling: touch;
}
.lp-column-scroll::-webkit-scrollbar { height: 8px; }
.lp-column-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
.lp-column-scroll::-webkit-scrollbar-track { background: transparent; }

.lp-column-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  scroll-snap-align: start;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.lp-column-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.10);
  border-color: #93c5fd;
}
.lp-column-thumb {
  width: 100%;
  aspect-ratio: 5/2;
  overflow: hidden;
  background: #e5e7eb;
}
.lp-column-thumb svg { display: block; width: 100%; height: 100%; }
.lp-column-card-body {
  padding: 14px 16px 18px;
  position: relative;
}
.lp-column-num {
  position: absolute;
  top: -12px; right: 14px;
  background: #2563eb;
  color: #fff;
  font-weight: 800;
  font-size: 0.74rem;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(37,99,235,0.3);
}
.lp-column-card h3 {
  font-size: 0.98rem;
  margin: 6px 0 4px;
  color: #1c1f24;
  line-height: 1.4;
}
.lp-column-card p {
  font-size: 0.82rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.55;
}

.lp-column-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2563eb;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
  line-height: 1;
  padding: 0;
}
.lp-column-arrow:hover { background: #eff6ff; transform: translateY(-50%) scale(1.08); }
.lp-column-arrow-prev { left: -10px; }
.lp-column-arrow-next { right: -10px; }
@media (max-width: 640px) {
  .lp-column-arrow { display: none; }
}

/* ===== 動的演出 ===== */
/* Scroll Reveal */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.lp-reveal-in {
  opacity: 1;
  transform: translateY(0);
}
/* 順序付き reveal（カードを段差で出す） */
.problem-grid > .lp-reveal-in:nth-child(1),
.features-grid > .lp-reveal-in:nth-child(1),
.steps-grid > .lp-reveal-in:nth-child(1) { transition-delay: 0s; }
.problem-grid > .lp-reveal-in:nth-child(2),
.features-grid > .lp-reveal-in:nth-child(2),
.steps-grid > .lp-reveal-in:nth-child(2) { transition-delay: 0.1s; }
.problem-grid > .lp-reveal-in:nth-child(3),
.features-grid > .lp-reveal-in:nth-child(3),
.steps-grid > .lp-reveal-in:nth-child(3) { transition-delay: 0.2s; }
.features-grid > .lp-reveal-in:nth-child(4) { transition-delay: 0.3s; }
.features-grid > .lp-reveal-in:nth-child(5) { transition-delay: 0.4s; }
.features-grid > .lp-reveal-in:nth-child(6) { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  .lp-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ヒーローのフェードイン演出 */
.lp-hero h1 {
  animation: lp-fade-up 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.lp-hero .lead {
  animation: lp-fade-up 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s both;
}
.lp-hero .lp-cta-row {
  animation: lp-fade-up 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.3s both;
}
.lp-hero-trust {
  animation: lp-fade-up 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.45s both;
}
.lp-hero-mascot {
  animation: lp-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both,
             lp-float 6s ease-in-out 1.5s infinite;
}
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes lp-pop {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ナビゲーション scroll shrink */
.lp-nav.is-scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.lp-nav.is-scrolled .lp-nav-inner { height: 56px; }

/* 統計セクション */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px; margin-top: 16px;
}
.stat-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  padding: 24px 16px; text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.12);
}
.stat-num {
  font-size: 2.4rem; font-weight: 800; color: #2563eb; line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.85rem; color: #4b5563; font-weight: 600; margin-top: 6px;
}

/* カードホバー */
.problem-card, .feature-card, .step-card, .price-card {
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.problem-card:hover, .feature-card:hover, .step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(37,99,235,0.10);
  border-color: #93c5fd;
}

/* sticky CTA バー */
.lp-sticky-cta {
  position: fixed;
  bottom: 16px; left: 50%;
  transform: translate(-50%, 120px);
  z-index: 40;
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px 10px 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s;
  max-width: calc(100% - 32px);
}
.lp-sticky-cta.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.lp-sticky-cta-text {
  font-size: 0.88rem; font-weight: 600; color: #1c1f24;
  white-space: nowrap;
}
.lp-sticky-cta-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #2563eb;
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.lp-sticky-cta-btn:hover { background: #1d4ed8; }

/* スクリーン下部 floating CTA — モバイルだとフルバー */
@media (max-width: 640px) {
  .lp-sticky-cta {
    bottom: 12px;
    border-radius: 12px;
    padding: 10px 14px;
  }
  .lp-sticky-cta-text { font-size: 0.82rem; white-space: normal; }
}

/* Responsive */
@media (max-width: 768px) {
  .lp-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .lp-hero-mascot { margin: 0 auto; max-width: 240px; }
  .lp-cta-row { justify-content: center; }
  .lp-section { padding: 60px 16px; }
  /* モバイルではアンカーメニュー（機能/使い方/料金/FAQ）だけ畳む。
     auth-nav-slot内のログアウト/ログインボタンとCTAは残す */
  .lp-nav-links > a:not(.lp-nav-cta) { display: none; }
  .lp-footer-inner { grid-template-columns: 1fr; }
}

/* ===== Hero Dashboard Mock (新ヒーロー) ===== */
.lp-hero-dashboard {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0eafe 50%, #fef3c7 100%);
  padding: 56px 16px 72px;
}
.lp-hero-dashboard .lp-hero-inner {
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
  max-width: 1180px;
  align-items: center;
}
.lp-hero-text { max-width: 540px; }
.lp-hero-tag {
  display: inline-block;
  padding: 5px 12px;
  background: #fbbf24;
  color: #78350f;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.lp-hero-kw {
  display: inline-block;
  background: linear-gradient(transparent 62%, #fde047 62%, #fde047 92%, transparent 92%);
  padding: 0 4px;
}

/* モックウィンドウ */
.lp-mock-window {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 24px 60px -10px rgba(30, 58, 138, 0.25),
              0 8px 20px -4px rgba(30, 58, 138, 0.12);
  overflow: hidden;
  border: 1px solid #cbd5e1;
  transform: rotate(-0.6deg);
  transition: transform 0.4s ease;
}
.lp-mock-window:hover { transform: rotate(0deg) scale(1.01); }
.lp-mock-titlebar {
  background: #f1f5f9;
  border-bottom: 1px solid #cbd5e1;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-mock-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.lp-mock-dot-r { background: #ef4444; }
.lp-mock-dot-y { background: #f59e0b; }
.lp-mock-dot-g { background: #10b981; }
.lp-mock-url {
  margin-left: 12px;
  font-size: 0.72rem;
  color: #64748b;
  background: #fff;
  padding: 2px 10px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  font-family: ui-monospace, monospace;
}
.lp-mock-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 検索バー */
.lp-mock-search {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fbbf24;
  border-radius: 10px;
  padding: 10px 12px;
}
.lp-mock-search-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #78350f;
  margin-bottom: 6px;
}
.lp-mock-search-input {
  background: #fff;
  border: 1.5px solid #fbbf24;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #92400e;
  letter-spacing: 0.04em;
}

/* 結果カード */
.lp-mock-result-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
}
.lp-mock-result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #e5e7eb;
}
.lp-mock-result-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e40af;
}
.lp-mock-result-count {
  font-size: 0.72rem;
  color: #64748b;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 999px;
}
.lp-mock-result-list { list-style: none; padding: 0; margin: 0; }
.lp-mock-result-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 4px;
  font-size: 0.78rem;
  border-bottom: 1px dashed #f3f4f6;
}
.lp-mock-result-item:last-child { border-bottom: 0; }
.lp-mock-target { background: linear-gradient(90deg, rgba(254,243,199,0.55) 0%, transparent 70%); border-radius: 4px; }
.lp-mock-crown { font-size: 0.95rem; }
.lp-mock-kw { flex: 1; color: #1f2937; font-weight: 500; }
.lp-mock-pv {
  font-size: 0.65rem;
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 1px 6px;
  border-radius: 4px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.lp-mock-diff {
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  padding: 2px 7px;
  border-radius: 4px;
  min-width: 24px;
  text-align: center;
}
.lp-mock-diff-low { background: #10b981; }
.lp-mock-diff-mid { background: #f59e0b; }
.lp-mock-diff-high { background: #dc2626; }

/* チャートカード */
.lp-mock-chart-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 10px 12px;
}
.lp-mock-chart-head {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-mock-chart-unit {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fbbf24;
  border-radius: 999px;
  padding: 1px 8px;
  font-size: 0.65rem;
  font-weight: 700;
}
.lp-mock-chart-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 360 / 110;
}

/* タグの帯 */
.lp-mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 4px 0 0;
}
.lp-mock-tag {
  font-size: 0.7rem;
  font-weight: 600;
  background: #eef2ff;
  color: #4338ca;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
}
.lp-mock-tag-new {
  background: #faf5ff;
  color: #6b21a8;
  border-color: #c084fc;
  position: relative;
}
.lp-mock-tag-new::after {
  content: "NEW";
  font-size: 0.55rem;
  background: #dc2626;
  color: #fff;
  padding: 1px 4px;
  border-radius: 3px;
  margin-left: 4px;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* モバイル: モックは縮小 */
@media (max-width: 860px) {
  .lp-hero-dashboard .lp-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lp-hero-text { max-width: none; margin: 0 auto; }
  .lp-hero-mock { max-width: 480px; margin: 0 auto; }
  .lp-mock-window { transform: rotate(0deg); }
}

/* NEW バッジつき機能カード */
.lp-feature-new {
  position: relative;
  border: 2px solid #fbbf24 !important;
  box-shadow: 0 0 0 4px rgba(251,191,36,0.12);
}
.lp-feature-new::before {
  content: "NEW";
  position: absolute;
  top: -10px;
  right: 14px;
  background: #dc2626;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(220,38,38,0.35);
}

/* ===== 統計セクション: マスコット + 価格強調 1枚カード ===== */
.lp-stats-head {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto 32px;
  text-align: left;
}
.lp-stats-mascot {
  flex: 0 0 120px;
  filter: drop-shadow(0 6px 14px rgba(245, 158, 11, 0.3));
  animation: stats-mascot-bob 3s ease-in-out infinite;
}
@keyframes stats-mascot-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.lp-stats-headline { flex: 1; }
.lp-stats-headline h2 { text-align: left; margin: 0 0 8px; }
.lp-stats-headline .sub { text-align: left; margin: 0; }

.lp-stats-card {
  max-width: 980px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 16px 40px -10px rgba(30,58,138,0.18),
              0 4px 12px -2px rgba(30,58,138,0.08);
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.lp-stats-price-banner {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: #78350f;
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
  text-align: center;
}
.lp-stats-price-tag {
  background: #fff;
  color: #b45309;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border: 2px solid #b45309;
}
.lp-stats-price-num {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #7c2d12;
  line-height: 1;
  letter-spacing: -0.02em;
  font-family: ui-rounded, -apple-system, sans-serif;
}
.lp-stats-price-yen { font-size: 0.7em; margin-right: 2px; }
.lp-stats-price-unit { font-size: 0.45em; font-weight: 700; margin-left: 4px; color: #92400e; }
.lp-stats-price-note {
  font-size: 1rem;
  font-weight: 700;
  color: #78350f;
}
.lp-stats-price-note strong {
  background: #fff;
  color: #b91c1c;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 2px;
  border: 1.5px solid #b91c1c;
}

.lp-stats-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0;
  background: #fff;
}
.lp-stats-item {
  padding: 24px 22px;
  text-align: center;
  border-right: 1px dashed #e5e7eb;
  border-bottom: 1px dashed #e5e7eb;
}
.lp-stats-item:last-child { border-right: 0; }
@media (max-width: 760px) {
  .lp-stats-item { border-right: 0; }
}
.lp-stats-num {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #1d4ed8;
  line-height: 1.1;
  font-family: ui-rounded, -apple-system, sans-serif;
  letter-spacing: -0.01em;
}
.lp-stats-num-asterisk { font-size: 0.5em; vertical-align: super; color: #94a3b8; margin-left: 2px; }
.lp-stats-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e3a8a;
  margin: 6px 0 10px;
  letter-spacing: 0.02em;
}
.lp-stats-desc {
  font-size: 0.78rem;
  line-height: 1.6;
  color: #475569;
}
.lp-stats-desc strong {
  color: #1d4ed8;
  background: #eff6ff;
  padding: 0 3px;
  border-radius: 2px;
}

.lp-stats-footnote {
  background: #f8fafc;
  padding: 16px 24px;
  margin: 0;
  font-size: 0.82rem;
  color: #475569;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  line-height: 1.7;
}
.lp-stats-footnote strong {
  color: #b91c1c;
  font-weight: 800;
  background: #fef2f2;
  padding: 0 6px;
  border-radius: 3px;
}

@media (max-width: 680px) {
  .lp-stats-head { flex-direction: column; text-align: center; gap: 14px; }
  .lp-stats-headline h2, .lp-stats-headline .sub { text-align: center; }
}

/* ===== フルスクリーン Hero モック (lp-fm-*) ===== */
.lp-hero-fullscreen {
  background: linear-gradient(135deg, #f0f7ff 0%, #e0eafe 50%, #fef3c7 100%);
  padding: 48px 16px 64px;
  overflow: hidden;
}
.lp-hero-text-block {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}
.lp-hero-text-block .lp-hero-tag {
  display: inline-block;
  padding: 5px 12px;
  background: #fbbf24;
  color: #78350f;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.lp-hero-text-block h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.35;
  margin: 0 0 18px;
  color: #1e3a8a;
  font-weight: 800;
}
.lp-hero-text-block h1 .accent { color: #2563eb; }
.lp-hero-text-block .lp-hero-kw {
  background: linear-gradient(transparent 62%, #fde047 62%, #fde047 92%, transparent 92%);
  padding: 0 4px;
}
.lp-hero-text-block .lead {
  font-size: 1rem;
  color: #1e3a8a;
  margin: 0 auto 24px;
  max-width: 720px;
  opacity: 0.88;
  line-height: 1.75;
}
.lp-hero-text-block .lp-cta-row { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.lp-hero-text-block .lp-hero-trust {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #1e3a8a;
  opacity: 0.65;
}

.lp-hero-fullmock { max-width: 1180px; margin: 0 auto; }
.lp-fm-window {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 32px 80px -12px rgba(30, 58, 138, 0.32), 0 12px 28px -6px rgba(30, 58, 138, 0.16);
  overflow: hidden;
  border: 1px solid #cbd5e1;
}
.lp-fm-titlebar {
  background: #f1f5f9; border-bottom: 1px solid #cbd5e1;
  padding: 8px 14px; display: flex; align-items: center; gap: 6px;
}
.lp-fm-url {
  margin-left: 12px; font-size: 0.7rem; color: #475569;
  background: #fff; padding: 3px 12px; border-radius: 6px;
  border: 1px solid #e2e8f0; font-family: ui-monospace, monospace;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 60%;
}
.lp-fm-siteheader {
  background: #fff; border-bottom: 1px solid #e5e7eb;
  padding: 10px 18px; display: flex; justify-content: space-between;
  align-items: center; gap: 12px;
}
.lp-fm-brand { display: flex; align-items: center; gap: 10px; }
.lp-fm-logo {
  width: 36px; height: 36px; border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: -0.02em;
}
.lp-fm-brand-name { font-size: 0.95rem; font-weight: 800; color: #1d4ed8; line-height: 1; }
.lp-fm-brand-tag { font-size: 0.62rem; color: #64748b; margin-top: 2px; }
.lp-fm-headernav { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.lp-fm-pill {
  font-size: 0.65rem; padding: 3px 9px;
  background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 6px;
  color: #1e3a8a; font-weight: 600;
}
.lp-fm-plan {
  font-size: 0.65rem; padding: 4px 10px;
  background: #d1fae5; color: #065f46;
  border: 1px solid #10b981; border-radius: 6px; font-weight: 700;
}
.lp-fm-shell {
  display: grid; grid-template-columns: 180px 1fr 220px;
  gap: 10px; padding: 12px; background: #f5f7fb; align-items: start;
}
.lp-fm-sidebar {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 10px 8px; display: flex; flex-direction: column; gap: 6px;
}
.lp-fm-search {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border: 2px solid #fbbf24; border-radius: 8px; padding: 7px; margin-bottom: 4px;
}
.lp-fm-search-purple {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
  border-color: #a78bfa;
}
.lp-fm-search-label {
  font-size: 0.62rem; color: #78350f; text-align: center; margin-bottom: 4px;
}
.lp-fm-search-purple .lp-fm-search-label { color: #5b21b6; }
.lp-fm-search-input {
  background: #fff; border: 1px solid #fbbf24; border-radius: 4px;
  padding: 4px 6px; font-size: 0.72rem; font-weight: 600;
  text-align: center; color: #92400e; margin-bottom: 4px;
}
.lp-fm-search-purple .lp-fm-search-input { border-color: #a78bfa; color: #5b21b6; }
.lp-fm-search-btn {
  width: 100%; background: #fbbf24; color: #78350f; border: 0;
  border-radius: 4px; padding: 4px; font-size: 0.65rem;
  font-weight: 700; cursor: pointer;
}
.lp-fm-search-btn-purple { background: #8b5cf6; color: #fff; }
.lp-fm-cat {
  margin-top: 8px; padding: 4px 4px 2px;
  font-size: 0.6rem; font-weight: 800; color: #64748b;
  letter-spacing: 0.08em; border-bottom: 1px dashed #e5e7eb;
}
.lp-fm-tab {
  width: 100%; background: #eff6ff; border: 1px solid #bfdbfe;
  color: #1e40af; border-radius: 5px; padding: 5px 6px;
  font-size: 0.68rem; font-weight: 600; text-align: center; cursor: pointer;
}
.lp-fm-tab-active { background: #2563eb; color: #fff; border-color: #2563eb; font-weight: 700; }
.lp-fm-tab-soft { background: #f9fafb; border-color: #e5e7eb; color: #1e3a8a; }
.lp-fm-tab-purple { background: #ede9fe; border-color: #c4b5fd; color: #5b21b6; font-weight: 700; }
.lp-fm-main {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 8px;
  padding: 10px; min-width: 0;
}
.lp-fm-subtabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 8px; }
.lp-fm-subtab {
  font-size: 0.65rem; padding: 3px 9px;
  background: #fef3c7; border: 1px solid #fbbf24;
  color: #78350f; border-radius: 4px; font-weight: 600;
}
.lp-fm-subtab-active { background: #f59e0b; color: #fff; border-color: #d97706; }
.lp-fm-actions {
  display: flex; gap: 6px; align-items: center; margin-bottom: 8px;
  font-size: 0.65rem; color: #475569;
}
.lp-fm-badge {
  background: #2563eb; color: #fff; padding: 2px 8px;
  border-radius: 999px; font-weight: 700; font-size: 0.6rem;
}
.lp-fm-csv {
  margin-left: auto; padding: 3px 8px; background: #2563eb;
  color: #fff; border-radius: 4px; font-weight: 700;
}
.lp-fm-group {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 6px; padding: 8px 10px; margin-bottom: 8px;
}
.lp-fm-group-head {
  font-size: 0.78rem; font-weight: 800; color: #1d4ed8;
  border-bottom: 1px solid #e5e7eb; padding-bottom: 4px; margin-bottom: 6px;
}
.lp-fm-kwlist { list-style: none; padding: 0; margin: 0; }
.lp-fm-kw { border-bottom: 1px dashed #f3f4f6; padding: 3px 0; }
.lp-fm-kw:last-child { border-bottom: 0; }
.lp-fm-kw-target { background: linear-gradient(90deg, rgba(254,243,199,0.55) 0%, transparent 70%); border-radius: 4px; }
.lp-fm-kw-row { display: flex; align-items: center; gap: 5px; font-size: 0.7rem; }
.lp-fm-crown { font-size: 0.85rem; }
.lp-fm-kw-text { flex: 1; color: #1f2937; }
.lp-fm-kw-pv {
  font-size: 0.6rem; color: #475569;
  background: #f1f5f9; border: 1px solid #e2e8f0;
  padding: 1px 5px; border-radius: 4px;
  white-space: nowrap; font-variant-numeric: tabular-nums;
}
.lp-fm-kw-diff {
  font-size: 0.65rem; font-weight: 800; color: #fff;
  padding: 2px 6px; border-radius: 4px; min-width: 22px; text-align: center;
}
.lp-fm-kw-diff-low { background: #10b981; }
.lp-fm-kw-diff-mid { background: #f59e0b; }
.lp-fm-kw-diff-high { background: #dc2626; }
.lp-fm-kw-panel {
  margin: 6px 4px 4px; padding: 6px 8px;
  background: #f9fafb; border-radius: 5px;
}
.lp-fm-metric-row { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 6px; }
.lp-fm-metric {
  font-size: 0.62rem; background: #fff;
  border: 1px solid #e5e7eb; padding: 1px 6px;
  border-radius: 4px; color: #475569;
}
.lp-fm-intent-info {
  display: inline-block; background: #2563eb; color: #fff;
  padding: 0 5px; border-radius: 3px; font-size: 0.6rem;
  font-style: normal; font-weight: 700;
}
.lp-fm-up { color: #10b981; font-weight: 700; font-style: normal; }
.lp-fm-chart-head {
  font-size: 0.65rem; font-weight: 700; color: #1e40af;
  margin-bottom: 4px; display: flex; align-items: center; gap: 6px;
}
.lp-fm-unit-badge {
  display: inline-block; background: #fef3c7; color: #92400e;
  border: 1px solid #fbbf24; border-radius: 999px;
  padding: 0 6px; font-size: 0.55rem; font-weight: 700;
}
.lp-fm-chart-svg {
  display: block; width: 100%; height: auto;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 4px;
}
.lp-fm-more {
  display: block; width: 100%; margin: 6px 0 0;
  padding: 5px 8px; background: #f9fafb;
  border: 1px dashed #cbd5e1; border-radius: 4px;
  font-size: 0.62rem; font-weight: 700; color: #1d4ed8; cursor: pointer;
}
.lp-fm-widgets { display: flex; flex-direction: column; gap: 8px; }
.lp-fm-widget {
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 8px; padding: 9px 10px;
}
.lp-fm-widget-title {
  font-size: 0.72rem; font-weight: 800; color: #1d4ed8;
  border-bottom: 1px dashed #e5e7eb; padding-bottom: 4px; margin-bottom: 6px;
}
.lp-fm-widget-kw {
  background: #fef3c7; padding: 1px 8px;
  border-radius: 4px; color: #78350f;
}
.lp-fm-widget-row { margin-bottom: 6px; }
.lp-fm-widget-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.lp-fm-widget-label {
  font-size: 0.58rem; color: #64748b; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 2px;
}
.lp-fm-widget-bar {
  position: relative; background: #f1f5f9;
  border-radius: 999px; height: 14px; overflow: hidden;
}
.lp-fm-widget-bar-fill {
  background: linear-gradient(90deg, #f59e0b, #dc2626);
  height: 100%; border-radius: 999px;
}
.lp-fm-widget-bar-text {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.58rem; font-weight: 800; color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}
.lp-fm-widget-stars { color: #fbbf24; font-size: 0.78rem; }
.lp-fm-widget-spark {
  display: block; width: 100%; height: auto;
  background: #fff; border: 1px solid #e5e7eb;
  border-radius: 4px; padding: 2px;
}
.lp-fm-top10 { list-style: none; padding: 0; margin: 0; }
.lp-fm-top10 li {
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px; padding: 4px 0;
  border-bottom: 1px dashed #f3f4f6;
  font-size: 0.65rem; color: #1f2937;
}
.lp-fm-top10 li:last-child { border-bottom: 0; }
.lp-fm-diff-mini {
  font-size: 0.6rem; font-weight: 800; color: #fff;
  padding: 1px 5px; border-radius: 3px;
  min-width: 20px; text-align: center;
}
@media (max-width: 880px) {
  .lp-fm-shell { grid-template-columns: 1fr; }
  .lp-fm-sidebar, .lp-fm-widgets { display: none; }
  .lp-fm-headernav { display: none; }
}
/* ===== Hero 微調整: トップ詰め + nowrap ===== */
.lp-hero-fullscreen { padding-top: 24px; }
.lp-nowrap { white-space: nowrap; }

/* ===== Stats: 価格バナー差し替え (1日10円 / 月額270円実質無制限) ===== */
.lp-stats-mascot img { display: block; width: 96px; height: 96px; }

.lp-stats-price-banner {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.lp-stats-price-tag {
  background: #fff;
  color: #b45309;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  border: 2px solid #b45309;
  white-space: nowrap;
}
.lp-stats-price-arrow {
  font-size: 1.8rem;
  font-weight: 800;
  color: #7c2d12;
  margin: 0 4px;
}
.lp-stats-price-month {
  font-size: 1.05rem;
  font-weight: 700;
  color: #78350f;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-stats-price-month strong {
  font-size: 1.5rem;
  color: #7c2d12;
  font-family: ui-rounded, -apple-system, sans-serif;
  letter-spacing: -0.01em;
}
.lp-stats-price-mark {
  background: #b91c1c;
  color: #fff;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 800;
  margin-left: 4px;
}
.lp-stats-mark-sup {
  font-size: 0.65em;
  color: #fff;
  vertical-align: super;
  margin-left: 2px;
}

.lp-stats-foot-mark {
  display: inline-block;
  background: #6b7280;
  color: #fff;
  padding: 0 6px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-right: 4px;
}

@media (max-width: 680px) {
  .lp-stats-price-banner { flex-direction: column; gap: 6px; }
  .lp-stats-price-arrow { transform: rotate(90deg); margin: 0; }
}

/* ===== ヘッダー: lp.html / about.html 等のサブナビも整える ===== */
.lp-nav-links > a { font-weight: 700; }
.lp-footer-links a { font-weight: 600; }
/* ===== 赤パステル CTAボタン（動的アニメ） ===== */
.lp-btn-redpop {
  background: linear-gradient(135deg, #fee2e2 0%, #fca5a5 50%, #f87171 100%) !important;
  color: #7f1d1d !important;
  border-color: #f87171 !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 18px rgba(248, 113, 113, 0.4);
  animation: redpop-pulse 2.4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.lp-btn-redpop::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: redpop-shine 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes redpop-pulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(248, 113, 113, 0.4), 0 0 0 0 rgba(239, 68, 68, 0.45);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 10px 26px rgba(248, 113, 113, 0.55), 0 0 0 14px rgba(239, 68, 68, 0);
    transform: translateY(-2px) scale(1.02);
  }
}
@keyframes redpop-shine {
  0%   { left: -120%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
.lp-btn-redpop:hover {
  background: linear-gradient(135deg, #fca5a5 0%, #f87171 50%, #ef4444 100%) !important;
  color: #fff !important;
  border-color: #dc2626 !important;
  transform: translateY(-2px) scale(1.03);
  animation-play-state: paused;
}
/* ===== 青パステル CTAボタン（動的アニメ・赤と同じ動き） ===== */
.lp-btn-bluepop {
  background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 50%, #60a5fa 100%) !important;
  color: #1e3a8a !important;
  border-color: #60a5fa !important;
  font-weight: 800 !important;
  box-shadow: 0 6px 18px rgba(96, 165, 250, 0.4);
  animation: bluepop-pulse 2.4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
.lp-btn-bluepop::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: bluepop-shine 3.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes bluepop-pulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(96, 165, 250, 0.4), 0 0 0 0 rgba(37, 99, 235, 0.45);
    transform: translateY(0) scale(1);
  }
  50% {
    box-shadow: 0 10px 26px rgba(96, 165, 250, 0.55), 0 0 0 14px rgba(37, 99, 235, 0);
    transform: translateY(-2px) scale(1.02);
  }
}
@keyframes bluepop-shine {
  0%   { left: -120%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
.lp-btn-bluepop:hover {
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #2563eb 100%) !important;
  color: #fff !important;
  border-color: #1d4ed8 !important;
  transform: translateY(-2px) scale(1.03);
  animation-play-state: paused;
}

/* ===== ヒーロー Trust 行の強調（CTA の直下に改行して配置） ===== */
.lp-hero-trust-emph {
  display: flex;
  width: fit-content;
  max-width: 100%;
  margin: 24px auto 0;
  background: #fff;
  border: 2px solid #fbbf24;
  border-radius: 999px;
  padding: 10px 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem !important;
  color: #78350f !important;
  opacity: 1 !important;
  box-shadow: 0 4px 14px rgba(251, 191, 36, 0.25);
}
.lp-trust-tag {
  background: #fbbf24;
  color: #78350f;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
}
.lp-trust-item strong { color: #b45309; font-weight: 800; }
.lp-trust-sep { color: #d97706; font-weight: 700; }
.lp-trust-mark {
  background: #b91c1c;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  margin-left: 2px;
  font-size: 0.82rem;
}

/* ===== 課題カード・機能カード アイコン拡大 ===== */
.problem-card .icon {
  font-size: 2.8rem !important;
  margin-bottom: 16px !important;
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.15);
}
.feature-card .feature-icon {
  width: 64px !important;
  height: 64px !important;
  font-size: 2rem !important;
  margin-bottom: 18px !important;
  background: linear-gradient(135deg, #eff6ff, #dbeafe) !important;
  box-shadow: 0 3px 10px rgba(37, 99, 235, 0.18);
}

/* ===== 3ステップ間の →矢印 ===== */
.steps-grid-arrowed {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.steps-grid-arrowed .step-card {
  flex: 1 1 240px;
  max-width: 280px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  animation: step-arrow-bounce 1.8s ease-in-out infinite;
}
@keyframes step-arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(6px); }
}
@media (max-width: 760px) {
  .steps-grid-arrowed { flex-direction: column; align-items: center; }
  .steps-grid-arrowed .step-card { max-width: 100%; width: 100%; }
  .step-arrow svg { transform: rotate(90deg); }
  @keyframes step-arrow-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
  }
}

/* ===== ベーシックで始める ボタン 動的強調 ===== */
.price-cta-pop {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
  animation: bluepop-pulse 2.4s ease-in-out infinite;
}
.price-cta-pop::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: bluepop-shine 3.6s ease-in-out infinite;
  pointer-events: none;
}
.price-cta-pop:hover {
  transform: translateY(-2px) scale(1.02);
  animation-play-state: paused;
}
/* ===== Stats Head 中央寄せ variant ===== */
.lp-stats-head-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  max-width: 720px;
}
.lp-stats-head-centered .lp-stats-headline h2,
.lp-stats-head-centered .lp-stats-headline .sub {
  text-align: center;
}

