/* ============================================================
   宮っち食堂 LP — "Aqua Divinity" Design
   コンセプト: 水面に宿る光・神聖な清澄さ・みずみずしい生命力・医療の信頼
   カラー: Deep Navy / Luminous Aqua / Celestial White / Pearl Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Noto+Sans+JP:wght@300;400;500;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  /* ── Core Navy Palette ── */
  --navy-deep:    #060E1F;
  --navy-dark:    #0B1D3A;
  --navy-mid:     #1B3A6B;
  --navy-bright:  #2A5298;
  --navy-sky:     #3B7FD4;
  --navy-pale:    #E8F0FB;
  --navy-mist:    #F4F8FF;

  /* ── Aqua / Luminous Water ── */
  --aqua-pure:    #5DEFF7;
  --aqua:         #4FC3D8;
  --aqua-bright:  #39D9EF;
  --aqua-light:   #A0EEF6;
  --aqua-pale:    #E0F7FB;
  --aqua-deep:    #1A8FA3;
  --aqua-glow:    rgba(93,239,247,.35);
  --aqua-mist:    rgba(93,239,247,.12);

  /* ── Celestial Light ── */
  --light-1:      rgba(255,255,255,1.00);
  --light-2:      rgba(255,255,255,0.92);
  --light-3:      rgba(255,255,255,0.65);
  --light-4:      rgba(255,255,255,0.28);
  --light-5:      rgba(255,255,255,0.10);

  /* ── Pearl Gold ── */
  --gold:         #C9A84C;
  --gold-light:   #E8CC85;
  --gold-bright:  #F5D87A;
  --gold-pale:    #FDF6E3;
  --gold-dark:    #9E7D32;
  --gold-glow:    rgba(201,168,76,.40);

  /* ── Botanical Green ── */
  --green-fresh:  #2DD4A4;
  --green-pale:   #E6FAF3;

  /* ── Neutral Light Mode ── */
  --white:        #FFFFFF;
  --bg:           #F5F9FF;
  --surface:      #FFFFFF;
  --surface-2:    #F0F6FF;
  --text-1:       #0B1D3A;
  --text-2:       #3A5A8A;
  --text-3:       #7A9BC4;
  --border:       #C8DDFF;
  --border-light: #E8F0FD;

  /* ── Glow Shadows ── */
  --shadow-sm:    0 2px 16px rgba(11,29,58,.06);
  --shadow-md:    0 8px 48px rgba(11,29,58,.10);
  --shadow-lg:    0 24px 80px rgba(11,29,58,.15);
  --shadow-aqua:  0 0 80px rgba(93,239,247,.30), 0 0 30px rgba(93,239,247,.20);
  --shadow-glow:  0 0 60px rgba(79,195,216,.25);
  --shadow-gold:  0 8px 32px rgba(201,168,76,.35);
  --shadow-card:  0 4px 32px rgba(27,58,107,.08);
  --shadow-float: 0 16px 64px rgba(11,29,58,.20);

  /* ── Gradients ── */
  --grad-hero:    linear-gradient(160deg, #040C1E 0%, #0B1D3A 30%, #1B3A6B 60%, #1E4E8A 80%, #2460A0 100%);
  --grad-aqua:    linear-gradient(135deg, #4FC3D8 0%, #5DEFF7 50%, #39D9EF 100%);
  --grad-gold:    linear-gradient(135deg, #C9A84C 0%, #E8CC85 50%, #C9A84C 100%);
  --grad-navy:    linear-gradient(135deg, #1B3A6B 0%, #2A5298 100%);
  --grad-section: linear-gradient(180deg, #F5F9FF 0%, #FFFFFF 100%);

  /* ── Radii ── */
  --r-sm:   10px;
  --r-md:   20px;
  --r-lg:   32px;
  --r-xl:   48px;
  --r-full: 9999px;

  /* ── Typography ── */
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Noto Sans JP', sans-serif;
  --font-en:    'Inter', sans-serif;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-1);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Scroll Smooth ── */
html { scroll-behavior: smooth; }

/* ─────────────────────────────────────────
   Container
───────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─────────────────────────────────────────
   Utility
───────────────────────────────────────── */
.pc-only { display: none; }
@media (min-width: 768px) { .pc-only { display: inline; } }

.text-accent { color: var(--aqua); }
.text-gold   { color: var(--gold); }

/* ─────────────────────────────────────────
   Fade-in Animation
───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.22,1,.36,1), transform 0.75s cubic-bezier(.22,1,.36,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in--delay  { transition-delay: 0.15s; }
.fade-in--delay2 { transition-delay: 0.30s; }
.fade-in--delay3 { transition-delay: 0.45s; }

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--grad-gold);
  color: #3D2B07;
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px var(--gold-glow);
  filter: brightness(1.05);
}

.btn--aqua {
  background: var(--grad-aqua);
  color: #0B2535;
  box-shadow: 0 8px 32px var(--aqua-glow);
}
.btn--aqua:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(93,239,247,.50);
}

.btn--outline {
  background: transparent;
  color: var(--light-2);
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: var(--light-5);
  border-color: var(--aqua);
  color: var(--aqua-light);
  transform: translateY(-2px);
}

.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--lg { padding: 17px 40px; font-size: 16px; }

/* ─────────────────────────────────────────
   Navigation
───────────────────────────────────────── */
.lp-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}

.lp-header.scrolled {
  background: rgba(6,14,31,.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

.lp-nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
}

.lp-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lp-logo__icon {
  font-size: 26px;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

/* ── ヘッダーロゴ実画像 ── */
.lp-logo__img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  flex-shrink: 0;
}

.lp-logo__text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--light-1);
  letter-spacing: 0.08em;
}

.lp-logo__text--accent { color: var(--gold); }

.lp-logo__clinic {
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--light-3);
  letter-spacing: 0.12em;
  margin-top: 2px;
  display: none;
}

@media (min-width: 1024px) { .lp-logo__clinic { display: block; } }

.lp-nav__links {
  list-style: none;
  display: none;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

@media (min-width: 900px) { .lp-nav__links { display: flex; } }

.lp-nav__links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--light-3);
  letter-spacing: 0.05em;
  transition: color var(--transition);
  position: relative;
}

.lp-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--aqua);
  transition: right var(--transition);
}

.lp-nav__links a:hover { color: var(--aqua-light); }
.lp-nav__links a:hover::after { right: 0; }

.lp-nav__cta { margin-left: 16px; }

.lp-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
@media (min-width: 900px) { .lp-nav__hamburger { display: none; } }

.lp-nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--light-2);
  border-radius: 2px;
  transition: all var(--transition);
}

.lp-nav__mobile {
  display: none;
  background: rgba(6,14,31,.97);
  backdrop-filter: blur(20px);
  padding: 20px 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.lp-nav__mobile.open { display: block; }

.lp-nav__mobile ul {
  list-style: none;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-nav__mobile ul li a {
  text-decoration: none;
  color: var(--light-2);
  font-size: 15px;
  font-weight: 500;
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background var(--transition);
}

.lp-nav__mobile ul li a:hover { background: var(--light-5); }
.lp-nav__mobile ul li a.btn {
  text-align: center;
  margin-top: 16px;
  color: #3D2B07;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.lp-hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

/* ── 背景グラデーション ── */
.lp-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 0;
}

/* ── 神聖なラジアルグロー（中央から放射）── */
.lp-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 55% 40%, rgba(93,239,247,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(79,195,216,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 80% 15%, rgba(93,239,247,.10) 0%, transparent 50%);
  animation: heroAuraShift 10s ease-in-out infinite alternate;
}

/* ── 水面の光（底部から立ち上る） ── */
.lp-hero__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top,
    rgba(93,239,247,.10) 0%,
    rgba(79,195,216,.05) 30%,
    transparent 100%);
  animation: waterGlow 6s ease-in-out infinite alternate;
}

@keyframes heroAuraShift {
  0%   { opacity: 0.7; transform: scale(1.00); }
  50%  { opacity: 1.0; transform: scale(1.06); }
  100% { opacity: 0.8; transform: scale(1.02); }
}

@keyframes waterGlow {
  0%   { opacity: 0.5; }
  100% { opacity: 1.0; }
}

/* ── 浮遊パーティクル ── */
.lp-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.lp-hero__particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
  background: radial-gradient(circle, rgba(93,239,247,.9) 0%, rgba(93,239,247,0) 70%);
}

.lp-hero__particle:nth-child(1)  { width:3px; height:3px; left:8%;  animation-duration:14s; animation-delay:0s;   bottom:-10px; opacity:.7; }
.lp-hero__particle:nth-child(2)  { width:2px; height:2px; left:22%; animation-duration:18s; animation-delay:2s;   bottom:-10px; opacity:.5; }
.lp-hero__particle:nth-child(3)  { width:4px; height:4px; left:38%; animation-duration:12s; animation-delay:4s;   bottom:-10px; opacity:.8; }
.lp-hero__particle:nth-child(4)  { width:2px; height:2px; left:55%; animation-duration:20s; animation-delay:1s;   bottom:-10px; opacity:.6; }
.lp-hero__particle:nth-child(5)  { width:3px; height:3px; left:68%; animation-duration:16s; animation-delay:6s;   bottom:-10px; opacity:.7; }
.lp-hero__particle:nth-child(6)  { width:2px; height:2px; left:78%; animation-duration:11s; animation-delay:3s;   bottom:-10px; opacity:.5; }
.lp-hero__particle:nth-child(7)  { width:5px; height:5px; left:88%; animation-duration:15s; animation-delay:7s;   bottom:-10px; opacity:.6; }
.lp-hero__particle:nth-child(8)  { width:2px; height:2px; left:95%; animation-duration:13s; animation-delay:9s;   bottom:-10px; opacity:.8; }
.lp-hero__particle:nth-child(9)  { width:3px; height:3px; left:15%; animation-duration:17s; animation-delay:5s;   bottom:-10px; opacity:.5; }
.lp-hero__particle:nth-child(10) { width:2px; height:2px; left:48%; animation-duration:19s; animation-delay:11s;  bottom:-10px; opacity:.7; }
.lp-hero__particle:nth-child(11) { width:4px; height:4px; left:63%; animation-duration:22s; animation-delay:8s;   bottom:-10px; opacity:.6; }
.lp-hero__particle:nth-child(12) { width:2px; height:2px; left:82%; animation-duration:14s; animation-delay:13s;  bottom:-10px; opacity:.8; }

@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0);     opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.8; }
  100% { transform: translateY(-110vh) translateX(20px); opacity: 0; }
}

/* ── 水紋リング ── */
.lp-hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(93,239,247,.18);
  animation: ringExpand 8s ease-out infinite;
}

.lp-hero__ring:nth-child(1) { width:300px; height:300px; top:20%; right:8%; animation-delay:0s; }
.lp-hero__ring:nth-child(2) { width:500px; height:500px; top:10%; right:0%;  animation-delay:2.5s; opacity:.6; }
.lp-hero__ring:nth-child(3) { width:200px; height:200px; bottom:30%; left:5%; animation-delay:5s; opacity:.4; }

@keyframes ringExpand {
  0%   { transform: scale(0.8); opacity: 0.5; }
  60%  { opacity: 0.3; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ── Hero Inner ── */
.lp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  padding-top: 90px;
  padding-bottom: 60px;
  width: 100%;
}

@media (min-width: 900px) {
  .lp-hero__inner {
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 48px;
    padding-top: 100px;
    padding-bottom: 80px;
  }
}

/* ── Hero Content ── */
.lp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--r-full);
  background: rgba(93,239,247,.12);
  border: 1px solid rgba(93,239,247,.30);
  color: var(--aqua-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.lp-hero__badge i { color: var(--aqua-pure); }

.lp-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.0rem, 5.5vw, 3.4rem);
  font-weight: 400;
  color: var(--light-1);
  line-height: 1.30;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.lp-hero__title--accent {
  background: linear-gradient(135deg, var(--aqua-pure) 0%, var(--aqua-light) 40%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(93,239,247,.40));
}

.lp-hero__lead {
  font-size: clamp(1.0rem, 2.5vw, 1.2rem);
  color: var(--aqua-light);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-style: italic;
}

.lp-hero__desc {
  font-size: 15px;
  color: var(--light-3);
  line-height: 1.85;
  margin-bottom: 20px;
}
.lp-hero__desc strong { color: var(--aqua-light); font-weight: 600; }

/* ── Hero Taglines（3文言） ── */
.lp-hero__taglines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.lp-hero__tagline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--light-3);
  line-height: 1.7;
  padding: 8px 14px;
  background: rgba(93,239,247,.06);
  border-left: 2px solid var(--aqua-pure);
  border-radius: 0 8px 8px 0;
}
.lp-hero__tagline i {
  color: var(--aqua-pure);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.lp-hero__tagline strong {
  color: var(--aqua-light);
  font-weight: 600;
}

.lp-hero__exclusive {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(201,168,76,.10);
  border: 1px solid rgba(201,168,76,.30);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.lp-hero__exclusive i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.lp-hero__exclusive span { color: var(--gold-light); font-size: 13px; line-height: 1.7; font-weight: 400; }

.lp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.lp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--light-3);
  font-size: 12px;
  font-weight: 500;
}
.lp-hero__trust-item i { color: var(--aqua); font-size: 12px; }

/* ── Hero Visual (Phone) ── */
.lp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-hero__phone-wrap {
  position: relative;
  display: inline-block;
}

.lp-hero__phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 70% 80% at 50% 50%,
    rgba(93,239,247,.28) 0%,
    rgba(79,195,216,.12) 40%,
    transparent 70%);
  border-radius: 50%;
  animation: phoneGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes phoneGlow {
  0%   { opacity: 0.6; transform: scale(0.95); }
  100% { opacity: 1.0; transform: scale(1.05); }
}

/* ── スマートフォンフレーム ── */
.lp-hero__phone {
  position: relative;
  width: 280px;
  border-radius: 40px;
  background: linear-gradient(145deg, #1A2E50, #0D1A35);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.10),
    0 0 0 3px rgba(6,14,31,.8),
    0 40px 120px rgba(6,14,31,.60),
    var(--shadow-aqua),
    inset 0 1px 0 rgba(255,255,255,.08);
  z-index: 2;
}

/* ── ノッチ / Dynamic Island ── */
.lp-hero__phone::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #060E1F;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}

/* ── 電源ボタン・音量ボタン ── */
.lp-hero__phone::after {
  content: '';
  position: absolute;
  right: -3px; top: 100px;
  width: 3px; height: 60px;
  background: rgba(255,255,255,.12);
  border-radius: 2px;
}

.lp-hero__phone-screen {
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 9/19;
  background: #0B1D3A;
  position: relative;
}

/* ── 実スクリーンショット ── */
.lp-phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 30px;
}

/* ── フローティングバッジ ── */
.lp-hero__float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(12px);
  white-space: nowrap;
  animation: floatBob 4s ease-in-out infinite;
}

.lp-hero__float--1 {
  top: 5%;
  right: -20px;
  background: rgba(93,239,247,.15);
  border: 1px solid rgba(93,239,247,.35);
  color: var(--aqua-light);
  animation-delay: 0s;
  box-shadow: 0 8px 32px rgba(93,239,247,.15);
}

.lp-hero__float--2 {
  bottom: 20%;
  left: -20px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-light);
  animation-delay: 1.5s;
  box-shadow: 0 8px 32px rgba(201,168,76,.15);
}

.lp-hero__float--3 {
  bottom: 5%;
  right: -10px;
  background: rgba(27,58,107,.80);
  border: 1px solid rgba(93,239,247,.25);
  color: var(--light-2);
  animation-delay: 3s;
  box-shadow: 0 8px 32px rgba(11,29,58,.30);
}

.lp-hero__float i { font-size: 13px; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ─────────────────────────────────────────
   Stats Bar
───────────────────────────────────────── */
.lp-stats {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}

.lp-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(93,239,247,.10) 0%, transparent 70%);
  pointer-events: none;
}

.lp-stats::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,239,247,.40), transparent);
}

.lp-stats__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .lp-stats__inner { grid-template-columns: repeat(4, 1fr); }
}

.lp-stats__item {
  text-align: center;
}

.lp-stats__num {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--aqua-pure);
  line-height: 1;
  display: inline;
  text-shadow: 0 0 30px rgba(93,239,247,.50);
}

.lp-stats__unit {
  display: inline;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--aqua-light);
  margin-left: 2px;
}

.lp-stats__label {
  font-size: 12px;
  color: var(--light-3);
  letter-spacing: 0.06em;
  margin-top: 8px;
  font-weight: 400;
}

/* ─────────────────────────────────────────
   Section Header (shared)
───────────────────────────────────────── */
.lp-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.lp-section-header__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--aqua);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  position: relative;
}

.lp-section-header__label::before,
.lp-section-header__label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--aqua));
  vertical-align: middle;
  margin: 0 10px;
}

.lp-section-header__label::after {
  background: linear-gradient(90deg, var(--aqua), transparent);
}

.lp-section-header__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-1);
  line-height: 1.40;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.lp-section-header__desc {
  font-size: 15px;
  color: var(--text-3);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   Doctor
───────────────────────────────────────── */
.lp-doctor {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.lp-doctor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--aqua), transparent);
}

.lp-doctor__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .lp-doctor__inner {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }
}

.lp-doctor__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lp-doctor__photo-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy-pale), var(--aqua-pale));
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--navy-mid);
  font-weight: 600;
  border: 2px dashed var(--border);
  margin: 0 auto;
}

.lp-doctor__photo-placeholder i { font-size: 48px; color: var(--navy-mid); opacity: .4; }
.lp-doctor__photo-placeholder span { font-size: 13px; color: var(--text-3); }

/* ── プロフィール実画像 ── */
.lp-doctor__photo-img-wrap {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid var(--aqua-dim);
  box-shadow: 0 0 40px rgba(93,239,247,.15);
}
.lp-doctor__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ── 4職業バッジ ── */
.lp-doctor__roles {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
  padding: 0 4px;
}
.lp-doctor__role-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.lp-doctor__role-badge--dentist  { background: rgba(93,239,247,.12); color: var(--aqua); border: 1px solid rgba(93,239,247,.3); }
.lp-doctor__role-badge--lab      { background: rgba(201,168,76,.12);  color: var(--gold);  border: 1px solid rgba(201,168,76,.3); }
.lp-doctor__role-badge--web      { background: rgba(130,100,240,.15); color: #b496ff;     border: 1px solid rgba(130,100,240,.35); }
.lp-doctor__role-badge--chiro    { background: rgba(80,200,140,.12);  color: #5cc898;     border: 1px solid rgba(80,200,140,.3); }

.lp-doctor__photo-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-bright));
  color: var(--light-2);
  font-size: 11px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(11,29,58,.25);
  margin-top: 14px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.lp-doctor__photo-badge i { color: var(--gold); }

.lp-doctor__profile {
  padding-top: 8px;
}

.lp-doctor__title-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--aqua);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-doctor__name {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--text-1);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.lp-doctor__name-kana {
  font-size: 0.9rem;
  color: var(--text-3);
  font-weight: 400;
}

.lp-doctor__message {
  background: linear-gradient(135deg, var(--navy-mist), var(--aqua-pale));
  border-left: 3px solid var(--aqua);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.85;
}

.lp-doctor__career-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.lp-doctor__career-title i { color: var(--aqua); }

.lp-doctor__career-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.lp-doctor__career-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
}

.lp-doctor__career-list i { color: var(--aqua); font-size: 7px; }
.lp-doctor__career-list li { align-items: flex-start; }
.lp-doctor__career-list li i { margin-top: 5px; flex-shrink: 0; }
.lp-doctor__career-sub {
  display: block;
  font-size: 11px;
  color: var(--gold);
  opacity: .85;
  margin-top: 2px;
  padding-left: 20px;
}
.lp-doctor__qualifications { margin-bottom: 20px; }
.lp-doctor__qualifications .lp-doctor__career-title { margin-bottom: 10px; }
.lp-doctor__career-list .fa-check-circle { color: var(--gold); font-size: 11px; }

.lp-doctor__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-doctor__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: var(--navy-pale);
  color: var(--navy-mid);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
}
.lp-doctor__tag i { color: var(--aqua-deep); }

/* ── オーラルリリース4要素 ── */
.lp-doctor__oral-release {
  margin: 40px 0 32px;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(6,14,31,.8), rgba(8,20,48,.8));
  border: 1px solid rgba(93,239,247,.15);
  border-radius: var(--r-lg);
}
.lp-doctor__oral-release-title {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--aqua);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lp-doctor__oral-release-title i { margin-right: 6px; }
.lp-doctor__oral-release-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 540px) {
  .lp-doctor__oral-release-grid { grid-template-columns: repeat(2, 1fr); }
}
.lp-doctor__oral-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 8px 14px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: transform .2s;
}
.lp-doctor__oral-card--active {
  background: rgba(93,239,247,.08);
  border-color: rgba(93,239,247,.3);
  box-shadow: 0 0 20px rgba(93,239,247,.1);
}
.lp-doctor__oral-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-3);
  letter-spacing: .05em;
}
.lp-doctor__oral-card--active .lp-doctor__oral-num { color: var(--aqua); }
.lp-doctor__oral-icon {
  font-size: 26px;
  color: var(--text-3);
}
.lp-doctor__oral-card--active .lp-doctor__oral-icon { color: var(--aqua); }
.lp-doctor__oral-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-2);
  line-height: 1.4;
}
.lp-doctor__oral-label small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 2px;
}
.lp-doctor__oral-card--active .lp-doctor__oral-label { color: var(--light-1); }
.lp-doctor__oral-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--r-full);
  letter-spacing: .05em;
}

.lp-doctor__why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .lp-doctor__why { grid-template-columns: 1fr 1fr; }
}

.lp-doctor__why-card {
  display: flex;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.lp-doctor__why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.lp-doctor__why-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--aqua-pale), var(--navy-pale));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy-mid);
}

.lp-doctor__why-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1.4;
}

.lp-doctor__why-body p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   Keywords (Science)
───────────────────────────────────────── */
.lp-keywords {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--navy-bright) 100%);
  position: relative;
  overflow: hidden;
}

.lp-keywords::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, rgba(93,239,247,.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 80%, rgba(79,195,216,.08) 0%, transparent 55%);
}

.lp-keywords__inner {
  position: relative;
  z-index: 1;
}

.lp-keywords__subtitle {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--aqua);
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.lp-keywords__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 400;
  color: var(--light-1);
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}

.lp-keywords__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--aqua-pure), var(--aqua-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-keywords__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .lp-keywords__grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-keyword-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(93,239,247,.18);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.lp-keyword-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-aqua);
  opacity: 0;
  transition: opacity var(--transition);
}

.lp-keyword-card:hover::before { opacity: 1; }

.lp-keyword-card:hover {
  background: rgba(93,239,247,.10);
  border-color: rgba(93,239,247,.40);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(6,14,31,.40), 0 0 40px rgba(93,239,247,.15);
}

.lp-keyword-card__icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(93,239,247,.40));
}

.lp-keyword-card__en {
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--aqua);
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}

.lp-keyword-card__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light-1);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.lp-keyword-card__desc {
  font-size: 13px;
  color: var(--light-3);
  line-height: 1.85;
}

.lp-keywords__note {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  margin-top: 48px;
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   Features
───────────────────────────────────────── */
.lp-features {
  padding: 100px 0;
  background: var(--bg);
}

.lp-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .lp-features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .lp-features__grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-feature-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.lp-feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-aqua);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.lp-feature-card:hover::after { transform: scaleX(1); }

.lp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}

.lp-feature-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.lp-feature-card__icon--teal   { background: linear-gradient(135deg,#E0F7FB,#A0EEF6); color: var(--aqua-deep); }
.lp-feature-card__icon--blue   { background: linear-gradient(135deg,#EBF5FF,#C8DDFF); color: var(--navy-bright); }
.lp-feature-card__icon--green  { background: linear-gradient(135deg,#E6FAF3,#B8EDDA); color: #1A7A5A; }
.lp-feature-card__icon--orange { background: linear-gradient(135deg,#FFF3E0,#FFD9A0); color: #B45309; }
.lp-feature-card__icon--purple { background: linear-gradient(135deg,#F3E8FF,#D4B4F5); color: #6B21A8; }
.lp-feature-card__icon--red    { background: linear-gradient(135deg,#FFF0F0,#FFB8B8); color: #B91C1C; }
.lp-feature-card__icon--gold   { background: linear-gradient(135deg,#FDF6E3,#F0D890); color: var(--gold-dark); }

.lp-feature-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
  line-height: 1.4;
}

.lp-feature-card__desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 18px;
}

.lp-feature-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-feature-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
}

.lp-feature-card__list i { color: var(--aqua-deep); font-size: 11px; }

/* ── クリニック特別カード ── */
.lp-feature-card--clinic {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  color: var(--light-1);
  border: 1px solid rgba(93,239,247,.20);
  position: relative;
  overflow: hidden;
}

.lp-feature-card--clinic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(93,239,247,.12) 0%, transparent 60%);
}

@media (min-width: 600px) {
  .lp-feature-card--clinic { grid-column: 1 / -1; }
}

.lp-feature-clinic-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}

.lp-feature-clinic-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(93,239,247,.12);
  border: 1px solid rgba(93,239,247,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--aqua-light);
  flex-shrink: 0;
}

.lp-feature-clinic-body { flex: 1; min-width: 200px; }

.lp-feature-clinic-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--light-1);
  margin-bottom: 10px;
}

.lp-feature-clinic-body p {
  font-size: 14px;
  color: var(--light-3);
  line-height: 1.8;
  margin-bottom: 18px;
}

.lp-feature-clinic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lp-feature-clinic-tag {
  padding: 5px 13px;
  border-radius: var(--r-full);
  background: rgba(93,239,247,.12);
  border: 1px solid rgba(93,239,247,.25);
  color: var(--aqua-light);
  font-size: 11px;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   How It Works
───────────────────────────────────────── */
.lp-howto {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.lp-howto::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(93,239,247,.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(79,195,216,.08) 0%, transparent 55%);
}

.lp-howto__section-label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--aqua);
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

.lp-howto__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--light-1);
  text-align: center;
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.lp-howto__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .lp-howto__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-howto__step {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(93,239,247,.14);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}

.lp-howto__step:hover {
  background: rgba(93,239,247,.08);
  border-color: rgba(93,239,247,.30);
  transform: translateY(-6px);
}

.lp-howto__step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua), var(--aqua-bright));
  color: var(--navy-dark);
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 24px rgba(93,239,247,.40);
}

.lp-howto__step-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
  color: var(--aqua-light);
  filter: drop-shadow(0 0 10px rgba(93,239,247,.35));
}

.lp-howto__step h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--light-1);
  margin-bottom: 10px;
  line-height: 1.4;
}

.lp-howto__step p {
  font-size: 13px;
  color: var(--light-3);
  line-height: 1.8;
}

/* ─────────────────────────────────────────
   Chat Screenshot Section（2画面並列）
───────────────────────────────────────── */
.lp-screenshots {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.lp-screenshots::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 30% 50%, rgba(79,195,216,.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(93,239,247,.04) 0%, transparent 55%);
  pointer-events: none;
}

.lp-screenshots__phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.lp-screenshots__phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
}

.lp-screenshots__phone-wrap:hover { transform: translateY(-8px); }

.lp-screenshots__phone-wrap:nth-child(1) .lp-screenshot-device { transform: rotate(-2.5deg); }
.lp-screenshots__phone-wrap:nth-child(2) .lp-screenshot-device { transform: rotate(2deg); }

.lp-screenshots__phone-wrap:hover .lp-screenshot-device { transform: rotate(0) !important; }

.lp-screenshot-device {
  width: 220px;
  border-radius: 36px;
  background: linear-gradient(145deg, #1A2E50, #0D1A35);
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 0 0 2.5px rgba(6,14,31,.7),
    0 32px 80px rgba(11,29,58,.35),
    0 0 60px rgba(93,239,247,.15);
  transition: all var(--transition);
}

.lp-screenshot-device::before {
  content: '';
  display: block;
  width: 80px; height: 24px;
  background: #060E1F;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}

.lp-screenshot-img {
  width: 100%;
  border-radius: 28px;
  display: block;
  aspect-ratio: 9/19;
  object-fit: cover;
  object-position: top center;
}

.lp-screenshots__caption {
  text-align: center;
  max-width: 220px;
}

.lp-screenshots__caption h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}

.lp-screenshots__caption p {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   For Whom
───────────────────────────────────────── */
.lp-forwho {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

.lp-forwho::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.lp-forwho__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 600px) {
  .lp-forwho__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .lp-forwho__grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-forwho-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  padding: 24px 22px;
  transition: all var(--transition);
  cursor: default;
}

.lp-forwho-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--aqua-pale);
}

.lp-forwho-card__emoji {
  font-size: 2.2rem;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.12));
}

.lp-forwho-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.4;
}

.lp-forwho-card p {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
}

.lp-forwho-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--aqua-pale);
  color: var(--aqua-deep);
  font-size: 11px;
  font-weight: 600;
}

/* ─────────────────────────────────────────
   Testimonials
───────────────────────────────────────── */
.lp-testimonials {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.lp-testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(93,239,247,.08) 0%, transparent 65%);
}

.lp-testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .lp-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .lp-testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.lp-testimonial {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(93,239,247,.12);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: all var(--transition);
}

.lp-testimonial:hover {
  background: rgba(93,239,247,.08);
  border-color: rgba(93,239,247,.25);
  transform: translateY(-4px);
}

.lp-testimonial__stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.lp-testimonial blockquote {
  font-size: 13px;
  color: var(--light-2);
  line-height: 1.85;
  font-style: normal;
  margin-bottom: 18px;
}

.lp-testimonial__meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-testimonial__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aqua-pale), var(--navy-pale));
  border: 1.5px solid rgba(93,239,247,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.lp-testimonial__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--light-2);
}

.lp-testimonial__attrs {
  font-size: 11px;
  color: var(--light-3);
  margin-top: 2px;
}

/* ─────────────────────────────────────────
   FAQ
───────────────────────────────────────── */
.lp-faq {
  padding: 100px 0;
  background: var(--bg);
}

.lp-faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq__item {
  border: 1px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.lp-faq__item.open { border-color: var(--aqua); }

.lp-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: var(--surface);
  transition: background var(--transition);
  user-select: none;
}

.lp-faq__question:hover { background: var(--navy-mist); }

.lp-faq__item.open .lp-faq__question { background: var(--aqua-pale); }

.lp-faq__q-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.5;
}

.lp-faq__q-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-aqua);
  color: var(--navy-dark);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-faq__chevron {
  flex-shrink: 0;
  color: var(--text-3);
  font-size: 12px;
  transition: transform var(--transition);
}

.lp-faq__item.open .lp-faq__chevron { transform: rotate(180deg); }

.lp-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.22,1,.36,1);
}

.lp-faq__item.open .lp-faq__answer { max-height: 400px; }

.lp-faq__answer-inner {
  padding: 16px 24px 24px 64px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.85;
  background: var(--surface);
}

/* ─────────────────────────────────────────
   Contact
───────────────────────────────────────── */
.lp-contact {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy-dark) 40%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.lp-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(93,239,247,.14) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(201,168,76,.10) 0%, transparent 55%);
}

.lp-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .lp-contact__inner { grid-template-columns: 1fr 480px; }
}

.lp-contact__heading {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--light-1);
  line-height: 1.40;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.lp-contact__heading span {
  background: linear-gradient(135deg, var(--aqua-pure), var(--aqua-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-contact__desc {
  font-size: 15px;
  color: var(--light-3);
  line-height: 1.85;
  margin-bottom: 36px;
}

.lp-contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-contact__info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--light-3);
  font-size: 14px;
}

.lp-contact__info-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(93,239,247,.10);
  border: 1px solid rgba(93,239,247,.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aqua-light);
  font-size: 15px;
  flex-shrink: 0;
}

/* ── フォーム ── */
.lp-form {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(93,239,247,.16);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  box-shadow: 0 32px 80px rgba(6,14,31,.40);
}

.lp-form__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light-1);
  margin-bottom: 24px;
  letter-spacing: 0.06em;
}

.lp-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.lp-form__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--aqua-light);
  letter-spacing: 0.06em;
}

.lp-form__input,
.lp-form__select,
.lp-form__textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--light-1);
  font-size: 14px;
  font-family: var(--font-sans);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.lp-form__input::placeholder,
.lp-form__textarea::placeholder {
  color: rgba(255,255,255,.25);
}

.lp-form__input:focus,
.lp-form__select:focus,
.lp-form__textarea:focus {
  border-color: rgba(93,239,247,.50);
  box-shadow: 0 0 0 3px rgba(93,239,247,.12);
}

.lp-form__select option { background: var(--navy-mid); color: var(--light-1); }

.lp-form__textarea { resize: vertical; min-height: 100px; }

.lp-form__submit {
  width: 100%;
  background: var(--grad-gold);
  color: #3D2B07;
  border: none;
  border-radius: var(--r-full);
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.lp-form__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px var(--gold-glow);
  filter: brightness(1.05);
}

.lp-form__note {
  font-size: 11px;
  color: rgba(255,255,255,.30);
  text-align: center;
  margin-top: 14px;
  line-height: 1.7;
}

/* ── フォーム バリデーション ── */
.lp-form__label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-form__required {
  font-size: 10px;
  font-weight: 700;
  color: #ff6b6b;
  background: rgba(255,107,107,.12);
  border: 1px solid rgba(255,107,107,.3);
  border-radius: 4px;
  padding: 1px 6px;
  letter-spacing: .04em;
}

.lp-form__error {
  display: block;
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
  min-height: 16px;
  line-height: 1.4;
}

.lp-form__input--error {
  border-color: rgba(255,107,107,.6) !important;
  box-shadow: 0 0 0 3px rgba(255,107,107,.12) !important;
}

/* ── 送信失敗バナー ── */
.lp-form__send-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,107,107,.10);
  border: 1px solid rgba(255,107,107,.35);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  color: #ff9b9b;
  line-height: 1.6;
  margin-bottom: 12px;
}

.lp-form__send-error i {
  color: #ff6b6b;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 送信ボタン disabled 状態 ── */
.lp-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

/* ─────────────────────────────────────────
   CTA Section
───────────────────────────────────────── */
.lp-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-bright) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(93,239,247,.15) 0%, transparent 65%),
    radial-gradient(ellipse 50% 80% at 10% 0%, rgba(201,168,76,.10) 0%, transparent 55%);
  animation: ctaPulse 8s ease-in-out infinite alternate;
}

@keyframes ctaPulse {
  0%   { opacity: 0.6; }
  100% { opacity: 1.0; }
}

.lp-cta__inner { position: relative; z-index: 1; }

.lp-cta__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4.5vw, 3.0rem);
  font-weight: 400;
  color: var(--light-1);
  line-height: 1.40;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.lp-cta__title span {
  background: linear-gradient(135deg, var(--aqua-pure), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.lp-cta__desc {
  font-size: 15px;
  color: var(--light-3);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}

.lp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.lp-cta__note {
  font-size: 12px;
  color: var(--light-3);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.lp-footer {
  background: var(--navy-deep);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(93,239,247,.10);
}

.lp-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .lp-footer__inner { grid-template-columns: 2fr 1fr 1fr; }
}

.lp-footer__brand .lp-logo { display: inline-flex; margin-bottom: 16px; }

.lp-footer__brand p {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  line-height: 1.8;
  max-width: 280px;
}

.lp-footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--aqua);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lp-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer__links a {
  text-decoration: none;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.lp-footer__links a:hover { color: var(--aqua-light); }

.lp-footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(93,239,247,.20), transparent);
  margin-bottom: 28px;
}

.lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.25);
}

.lp-footer__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.30);
  font-size: 11px;
}

.lp-footer__badge i { color: var(--aqua); font-size: 12px; }

/* ─────────────────────────────────────────
   Scroll Top Button
───────────────────────────────────────── */
.lp-scroll-top {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-bright));
  border: 1px solid rgba(93,239,247,.30);
  color: var(--aqua-light);
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(11,29,58,.30);
  transition: all var(--transition);
  z-index: 500;
}

.lp-scroll-top.visible { display: flex; }
.lp-scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(93,239,247,.25); }

/* ─────────────────────────────────────────
   Responsive adjustments
───────────────────────────────────────── */
@media (max-width: 480px) {
  .lp-hero__float--1 { right: -5px; top: 2%; font-size: 11px; padding: 7px 12px; }
  .lp-hero__float--2 { left: -5px; bottom: 25%; font-size: 11px; padding: 7px 12px; }
  .lp-hero__float--3 { right: -5px; bottom: 5%; font-size: 11px; padding: 7px 12px; }
  .lp-hero__phone    { width: 240px; }
  .btn--lg           { padding: 15px 28px; font-size: 14px; }
}

@media (max-width: 360px) {
  .lp-hero__phone { width: 210px; }
  .lp-hero__title { font-size: 1.75rem; }
}
