/* =================================================
   Visit Lab — GMO TECH 公式準拠 共通スタイル
   - フォント: Open Sans + Lato + Noto Sans JP
   - letter-spacing: 0.02em (控えめ)
   - line-height: 1.6
   - 文字サイズは em ベース (GMO TECH 準拠)
   ================================================= */

:root {
  /* GMO TECH カラーパレット */
  --gmo-blue-deep: #002C9E;
  --gmo-blue: #0058B8;
  --gmo-blue-mid: #0072D9;
  --gmo-blue-light: #00A0E9;
  --gmo-cyan: #00C6F2;
  --gmo-accent: #FF6B00;
  --gmo-accent-deep: #E55300;

  --ink-0: #1A1A1A;
  --ink-1: #2C2C2C;
  --ink-2: #565656;       /* GMO TECH のbody標準色 */
  --ink-3: #888888;
  --ink-4: #B5B5B5;
  --ink-5: #E5E5E5;

  --bg: #FFFFFF;
  --bg-soft: #F4F7FC;
  --bg-dark: #0A1224;
  --bg-dark-2: #0F1830;

  --surface: #FFFFFF;
  --surface-2: #F7F9FE;
  --surface-3: #EDF1F8;
  --line: rgba(10, 18, 36, 0.10);
  --line-strong: rgba(10, 18, 36, 0.16);

  --r-md: 8px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl: 28px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);

  --sh-1: 0 1px 2px rgba(10,18,36,0.04), 0 2px 8px rgba(10,18,36,0.06);
  --sh-2: 0 4px 12px rgba(10,18,36,0.06), 0 12px 28px rgba(10,18,36,0.08);
  --sh-3: 0 12px 24px rgba(10,18,36,0.10), 0 24px 56px rgba(10,18,36,0.12);
  --sh-blue: 0 8px 20px rgba(0, 88, 184, 0.24);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

/* === Font stack ===
   英数字: Inter / 日本語: Noto Sans JP に Google Fonts で統一
   システムフォントは fallback のみ
*/
body {
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-feature-settings: "palt" 1;
  letter-spacing: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--ink-2);
  overflow-x: hidden;
  font-size: 16px;
  font-weight: 400;
  /* 改行制御：日本語の不自然な途中切れを防ぐ */
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

/* 数字は Inter 専用 */
.num {
  font-family: "Inter", -apple-system, sans-serif;
  font-feature-settings: "tnum" 1, "cv11" 1, "ss01" 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
  font-weight: 800;
}

/* 見出しは weight 700 で統一（900はチープになる） */
h1, h2, h3, h4, h5 {
  color: var(--ink-0);
  font-family: "Inter", "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.3;
}

p { line-height: 1.7; }

a { color: var(--gmo-blue); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--gmo-blue-deep); }

/* === Layout === */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 768px) { .wrap { padding: 0 20px; } }

/* === Top bar === */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 960px) {
  .topbar-inner { gap: 10px; padding: 10px 0; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.95em;
  font-weight: 700;
  color: var(--ink-0);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.brand:hover { color: var(--ink-0); }
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gmo-blue), var(--gmo-cyan));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75em;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 88, 184, 0.24);
  letter-spacing: 0.05em;
}
.brand-sub {
  font-size: 0.7em;
  color: var(--ink-3);
  font-weight: 600;
  margin-left: 2px;
}
.gmo-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 9999px;
  background: var(--gmo-blue);
  color: white;
  font-size: 0.68em;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 4px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.85em;
  font-weight: 600;
}
.nav-links a { color: var(--ink-2); }
.nav-links a:hover { color: var(--gmo-blue); }
@media (max-width: 880px) { .nav-links { display: none; } }

.nav-cta {
  padding: 9px 16px;
  border-radius: 9999px;
  background: var(--gmo-blue);
  color: white;
  font-size: 0.82em;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-spring), background 0.2s;
  white-space: nowrap;
  box-shadow: var(--sh-blue);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--gmo-blue-deep); color: white; }

/* === HERO === */
.hero {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
  background: var(--bg);
}
@media (max-width: 768px) { .hero { padding: 32px 0 40px; } }

.hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,88,184,0.08), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -160px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(0,198,242,0.06), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}
.hero-inner > div:first-child {
  max-width: 560px;
}
@media (max-width: 1100px) {
  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }
  .hero-inner > div:first-child {
    max-width: 720px;
    width: 100%;
  }
  .hero-inner .hero-actions { justify-content: center; }
  .hero-inner .hero-stats { justify-content: center; }
}

/* HERO 右カラム補助カード（実機モックを置かないテキスト主体ページの空白対策）
   1100px 以下では非表示にし、モバイルの単カラム表示を維持する */
.hero-aside {
  width: 100%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--sh-2);
  padding: 26px;
  text-align: left;
}
.hero-aside-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.hero-aside-eyebrow {
  font-size: 0.72em;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.hero-aside-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.hero-aside-row:last-child { border-bottom: none; }
.hero-aside-mark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 0.82em;
  color: var(--ha-c, var(--gmo-blue));
  background: color-mix(in srgb, var(--ha-c, var(--gmo-blue)) 12%, white);
  border: 1px solid color-mix(in srgb, var(--ha-c, var(--gmo-blue)) 26%, white);
}
.hero-aside-body { flex: 1; min-width: 0; }
.hero-aside-label { font-size: 0.9em; font-weight: 700; color: var(--ink-1); line-height: 1.35; letter-spacing: -0.01em; }
.hero-aside-sub { font-size: 0.74em; color: var(--ink-3); margin-top: 2px; line-height: 1.45; }
.hero-aside-val {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ha-c, var(--gmo-blue));
  font-size: 1.02em;
}
@media (max-width: 1100px) { .hero-aside { display: none; } }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 9999px;
  background: rgba(0, 88, 184, 0.08);
  border: 1px solid rgba(0, 88, 184, 0.16);
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gmo-blue);
}
.kicker .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gmo-blue);
  box-shadow: 0 0 0 3px rgba(0, 88, 184, 0.18);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* === HERO H1 — スマホ29-32px / PC48-56px === */
.hero h1 {
  margin: 18px 0 18px;
  font-family: "Inter", "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(1.75em, 3.8vw, 3em);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--ink-0);
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}
.hero h1 .gradient {
  background: linear-gradient(135deg, var(--gmo-blue) 0%, var(--gmo-cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  font-weight: 800;          /* 本体と同じ太さで潰れ防止 */
  letter-spacing: -0.005em;  /* 日本語の密集を緩和 */
  padding-right: 0.08em;     /* 右端切れ防止 */
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 640px) {
  .hero h1 { font-size: 1.85em; line-height: 1.28; }
}
@media (max-width: 380px) {
  .hero h1 { font-size: 1.7em; }
}

.hero p.lead {
  margin: 0 0 24px;
  font-size: 0.98em;
  line-height: 1.8;
  color: var(--ink-2);
  font-weight: 500;
  max-width: 540px;
}
.hero p.lead strong { color: var(--ink-0); font-weight: 700; }
@media (max-width: 640px) {
  .hero p.lead { font-size: 0.94em; line-height: 1.75; }
}
@media (max-width: 1100px) { .hero p.lead { margin: 0 auto 24px; } }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
@media (max-width: 1000px) { .hero-actions { justify-content: center; } }

/* === Buttons === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 9999px;
  background: var(--gmo-blue);
  color: white;
  font-size: 0.9em;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, background 0.2s;
  box-shadow: var(--sh-blue);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--gmo-blue-deep); box-shadow: 0 14px 32px rgba(0, 88, 184, 0.38); color: white; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 9999px;
  background: white;
  border: 1.5px solid var(--line-strong);
  color: var(--ink-0);
  font-size: 0.9em;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s var(--ease-spring);
}
.btn-ghost:hover { border-color: var(--gmo-blue); transform: translateY(-1px); color: var(--ink-0); }

/* 青背景上で使うCTA（白背景・濃青テキスト） */
.btn-on-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 9999px;
  background: white;
  color: var(--gmo-blue-deep);
  font-size: 0.95em;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s var(--ease-spring), box-shadow 0.2s, background 0.2s;
}
.btn-on-blue:hover {
  transform: translateY(-2px);
  background: #FFCC66;
  color: var(--gmo-blue-deep);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 9999px;
  background: var(--gmo-accent);
  color: white;
  font-size: 0.9em;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s var(--ease-spring), background 0.2s;
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.28);
  border: none;
  cursor: pointer;
}
.btn-accent:hover { transform: translateY(-2px); background: var(--gmo-accent-deep); color: white; }

/* === Hero stats === */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 8px;
}
@media (max-width: 1180px) {
  .hero-stats { margin-left: auto; margin-right: auto; }
}
@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
}

.hero-stat {
  min-width: 0;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(0,88,184,0.05), rgba(0,198,242,0.025));
  border: 1px solid var(--line);
  border-left: 4px solid var(--gmo-blue);
  border-radius: 14px;
  transition: transform 0.2s var(--ease-spring), border-left-color 0.2s;
  overflow: hidden;
  text-align: left;
}
.hero-stat:hover { transform: translateY(-3px); border-left-color: var(--gmo-cyan); }
.hero-stat-val {
  font-family: "Inter", -apple-system, sans-serif;
  font-feature-settings: "tnum" 1, "cv11" 1;
  font-variant-numeric: tabular-nums;
  font-size: clamp(1.3em, 1.9vw, 1.9em);
  font-weight: 900;
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--ink-0);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-stat-val.blue { color: var(--gmo-blue); }
.hero-stat-val.accent { color: var(--gmo-accent); }
.hero-stat-val .u {
  font-size: 0.5em;
  color: var(--ink-3);
  font-weight: 700;
  margin-left: 3px;
  letter-spacing: 0;
}
.hero-stat-lbl {
  margin-top: 8px;
  font-size: 0.7em;
  color: var(--ink-3);
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .hero-stat {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .hero-stat-val { font-size: 1.5em; }
  .hero-stat-lbl { margin-top: 0; font-size: 0.7em; text-align: right; }
}

/* === Section === */
.section {
  position: relative;
  padding: 96px 0;
  z-index: 1;
}
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--bg-dark); color: white; }
@media (max-width: 768px) { .section { padding: 64px 0; } }

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 9999px;
  background: rgba(0, 88, 184, 0.08);
  border: 1px solid rgba(0, 88, 184, 0.16);
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gmo-blue);
}
.section.dark .section-kicker {
  background: rgba(0, 198, 242, 0.18);
  border-color: rgba(0, 198, 242, 0.32);
  color: var(--gmo-cyan);
}
.section-kicker .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gmo-blue);
}
.section.dark .section-kicker .dot { background: var(--gmo-cyan); }

.section-h {
  margin: 20px 0 16px;
  font-family: "Inter", "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(1.7em, 3.5vw, 2.6em);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  max-width: 900px;
  color: var(--ink-0);
  word-break: keep-all;
  overflow-wrap: normal;
}
@media (max-width: 640px) {
  .section-h { font-size: 1.65em; line-height: 1.32; }
}
.section.dark .section-h { color: white; }

.section-lead {
  font-size: 1em;
  line-height: 1.8;
  color: var(--ink-2);
  max-width: 680px;
  font-weight: 400;
}
.section.dark .section-lead { color: rgba(255,255,255,0.78); }
.section-lead strong { color: var(--ink-0); font-weight: 700; }
.section.dark .section-lead strong { color: white; }

/* === iPhone Mockup === */
.phone {
  position: relative;
  width: 175px;
  height: 364px;
  margin: 0 auto;
  background: #1A2240;
  border-radius: 30px;
  flex-shrink: 0;
  box-shadow:
    0 24px 50px rgba(10, 18, 36, 0.18),
    0 50px 100px rgba(0, 88, 184, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  padding: 10px;
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #FBFAFD;
  border-radius: 32px;
  overflow: hidden;
}
.phone-island {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 92px;
  height: 22px;
  background: #000;
  border-radius: 11px;
  z-index: 10;
}
.phone-status {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-family: -apple-system, sans-serif;
  font-size: 0.65em;
  font-weight: 700;
  color: #1A2240;
}
.phone-status-right { display: inline-flex; align-items: center; gap: 5px; opacity: 0.85; }

.phones-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}
.phones-row .phone:nth-child(1) { transform: translateY(14px) rotate(-3deg); z-index: 1; }
.phones-row .phone:nth-child(2) { transform: scale(1.05) translateY(-6px); z-index: 3; }
.phones-row .phone:nth-child(3) { transform: translateY(14px) rotate(3deg); z-index: 2; }
@media (max-width: 1100px) {
  /* 1列レイアウト時はもう少し大きく */
  .phones-row .phone { width: 220px; height: 458px; border-radius: 36px; padding: 9px; }
  .phones-row { gap: 18px; }
}
@media (max-width: 760px) {
  .phones-row .phone { width: 188px; height: 391px; border-radius: 32px; padding: 8px; }
  .phones-row { gap: 12px; }
}
@media (max-width: 560px) {
  .phones-row .phone { width: 158px; height: 329px; border-radius: 28px; padding: 7px; }
  .phones-row { gap: 8px; }
}
@media (max-width: 420px) {
  .phones-row .phone { width: 130px; height: 270px; border-radius: 24px; padding: 6px; }
  .phones-row { gap: 5px; }
}

/* MAP screen */
.scr-map { position: relative; height: 100%; background: #DDE9F0; overflow: hidden; }
.scr-map::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49%, #fff 49%, #fff 51%, transparent 51%),
    linear-gradient(0deg,  transparent 49%, #fff 49%, #fff 51%, transparent 51%),
    linear-gradient(58deg, transparent 49%, #fff 49%, #fff 51%, transparent 51%),
    radial-gradient(circle at 18% 22%, rgba(40,203,126,0.28) 0%, transparent 24%),
    radial-gradient(circle at 76% 70%, rgba(40,203,126,0.22) 0%, transparent 20%),
    radial-gradient(circle at 70% 18%, rgba(79,184,255,0.22) 0%, transparent 30%);
  background-size: 56px 56px, 56px 56px, 100px 100px, auto, auto, auto;
}
.map-pin { position: absolute; width: 22px; height: 30px; }
.map-pin::before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: var(--pin-color);
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.32);
}
.map-pin::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 18px;
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid white;
  transform: translateX(-50%);
}
.map-search {
  position: absolute;
  top: 52px; left: 12px; right: 12px;
  background: rgba(255,255,255,0.97);
  border-radius: 9999px;
  padding: 8px 14px;
  font-size: 0.62em;
  color: rgba(10,10,20,0.6);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.map-chips {
  position: absolute;
  top: 92px; left: 12px;
  display: flex; gap: 5px;
  z-index: 2;
}
.map-chip {
  padding: 4px 9px;
  font-size: 0.55em;
  font-weight: 600;
  border-radius: 9999px;
  background: rgba(255,255,255,0.95);
  color: #1A1530;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.map-chip.active { background: var(--gmo-blue); color: white; }
.map-sheet {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 144px;
  background: white;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -8px 22px rgba(0,0,0,0.10);
  padding: 11px 13px;
}
.map-sheet-handle {
  width: 32px; height: 3.5px;
  background: rgba(10,10,20,0.18);
  border-radius: 9999px;
  margin: 0 auto 8px;
}
.map-sheet-title { font-size: 0.62em; font-weight: 700; color: #07051A; }
.map-sheet-cards { display: flex; gap: 6px; overflow: hidden; margin-top: 8px; }
.map-sheet-card {
  flex-shrink: 0;
  width: 106px;
  background: #F4F2F8;
  border-radius: 11px;
  padding: 8px 10px;
}
.map-sheet-card-emoji { font-size: 1em; margin-bottom: 4px; }
.map-sheet-card-name { font-size: 0.55em; font-weight: 700; color: #07051A; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.map-sheet-card-reward { font-family: "Inter", sans-serif; font-size: 0.62em; font-weight: 700; color: var(--gmo-accent); margin-top: 2px; }
.map-sheet-card-meta { font-size: 0.5em; color: rgba(10,10,20,0.5); margin-top: 1px; }

/* TRIPS screen */
.scr-trip { padding: 36px 13px 0; height: 100%; }
.trip-header { display: flex; justify-content: space-between; align-items: baseline; padding: 9px 4px 12px; }
.trip-eyebrow { font-size: 0.52em; font-weight: 700; color: rgba(10,10,20,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.trip-title { font-family: "Inter", "Noto Sans JP", sans-serif; font-size: 1em; font-weight: 800; color: #07051A; margin-top: 2px; letter-spacing: -0.01em; word-break: keep-all; }
.trip-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 86px;
  background: linear-gradient(135deg, var(--gmo-blue-deep), var(--gmo-blue));
  margin-bottom: 9px;
  color: white;
  padding: 11px;
}
.trip-hero::before {
  content: '';
  position: absolute; top: -28px; right: -28px;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,242,0.5), transparent 70%);
  filter: blur(18px);
}
.trip-hero-pill {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.22);
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.trip-hero-title { margin-top: 6px; font-family: "Inter", "Noto Sans JP", sans-serif; font-size: 0.92em; font-weight: 800; line-height: 1.2; word-break: keep-all; overflow-wrap: normal; letter-spacing: -0.01em; }
.trip-hero-meta { margin-top: 3px; font-size: 0.55em; opacity: 0.9; }

.trip-days { display: flex; gap: 5px; overflow: hidden; padding: 7px 4px; }
.trip-day {
  flex-shrink: 0;
  padding: 5px 9px;
  border-radius: 9px;
  background: white;
  border: 1px solid rgba(10,10,20,0.08);
  font-size: 0.5em;
  font-weight: 600;
  color: rgba(10,10,20,0.6);
  text-align: center;
  min-width: 36px;
}
.trip-day.active { background: var(--gmo-blue); color: white; border-color: transparent; }
.trip-day-n { font-family: "Inter", sans-serif; font-size: 0.85em; font-weight: 700; opacity: 0.7; }
.trip-day-d { font-size: 1.1em; font-weight: 700; margin-top: 1px; }

.trip-timeline { padding: 6px 4px; }
.trip-row { display: flex; gap: 9px; align-items: stretch; margin-bottom: 8px; }
.trip-time { width: 26px; flex-shrink: 0; font-family: "Inter", sans-serif; font-size: 0.55em; font-weight: 700; color: rgba(10,10,20,0.6); padding-top: 8px; }
.trip-card {
  flex: 1;
  background: white;
  border-radius: 11px;
  padding: 7px 8px;
  box-shadow: 0 1px 3px rgba(10,10,20,0.06);
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(10,10,20,0.04);
}
.trip-thumb {
  width: 34px; height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gmo-accent), #FFA62B);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
}
.trip-thumb.sight { background: linear-gradient(135deg, var(--gmo-blue), var(--gmo-blue-light)); }
.trip-thumb.cafe { background: linear-gradient(135deg, #FFA62B, var(--gmo-accent)); }
.trip-info { flex: 1; min-width: 0; }
.trip-chip { display: inline-block; padding: 1px 5px; border-radius: 9999px; background: #FFE5D0; color: #9A3D00; font-size: 0.42em; font-weight: 700; letter-spacing: 0.05em; }
.trip-chip.sight { background: #DBEAFF; color: var(--gmo-blue-deep); }
.trip-name { font-size: 0.6em; font-weight: 700; color: #07051A; margin-top: 2px; line-height: 1.2; }
.trip-reward { font-family: "Inter", sans-serif; font-size: 0.55em; font-weight: 700; color: var(--gmo-accent); margin-top: 1px; }

/* STORE HOME screen */
.scr-shome { padding: 36px 11px 0; height: 100%; }
.shome-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gmo-blue-deep), var(--gmo-blue) 60%, var(--gmo-blue-mid));
  color: white;
  padding: 13px 11px;
  box-shadow: 0 8px 16px rgba(0, 88, 184, 0.22);
}
.shome-hero::before {
  content: '';
  position: absolute; top: -38px; right: -38px;
  width: 112px; height: 112px;
  background: radial-gradient(circle, rgba(0,198,242,0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(18px);
}
.shome-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 7px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.22);
  font-size: 0.48em;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.shome-hero-pill .live-dot {
  width: 5px; height: 5px; border-radius: 50%; background: #28CB7E;
  box-shadow: 0 0 0 2px rgba(40,203,126,0.3);
}
.shome-hero-title { margin-top: 5px; font-family: "Inter", "Noto Sans JP", sans-serif; font-size: 0.88em; font-weight: 800; line-height: 1.2; word-break: keep-all; letter-spacing: -0.01em; }
.shome-kpi {
  margin-top: 11px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.22);
  border-radius: 9px;
  overflow: hidden;
}
.shome-kpi-cell {
  background: rgba(10,18,36,0.45);
  padding: 7px;
  backdrop-filter: blur(4px);
}
.shome-kpi-lbl { font-size: 0.45em; font-weight: 700; opacity: 0.85; letter-spacing: 0.06em; }
.shome-kpi-val { font-family: "Inter", sans-serif; font-size: 0.95em; font-weight: 700; margin-top: 2px; }
.shome-kpi-val.accent { color: #FFCC66; }

.shome-section { margin-top: 12px; }
.shome-section-h { display: flex; justify-content: space-between; align-items: baseline; padding: 0 2px 5px; color: #07051A; }
.shome-section-t { font-size: 0.65em; font-weight: 700; display: inline-flex; align-items: center; gap: 4px; }
.shome-section-c { font-family: "Inter", sans-serif; font-size: 0.55em; font-weight: 700; color: rgba(10,10,20,0.4); }
.shome-live { background: white; border: 1px solid rgba(40,203,126,0.22); border-radius: 11px; padding: 7px; display: flex; gap: 7px; align-items: center; }
.shome-live-avatar { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--gmo-accent), #FFA62B); flex-shrink: 0; }
.shome-live-info { flex: 1; min-width: 0; }
.shome-live-name { font-size: 0.6em; font-weight: 700; color: #07051A; }
.shome-live-meta { font-size: 0.48em; color: #0BA866; font-weight: 600; margin-top: 1px; }
.shome-live-btn { width: 22px; height: 22px; border-radius: 6px; background: #0BA866; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65em; }

/* INSIGHTS screen */
.scr-insights { padding: 36px 13px 0; height: 100%; }
.ins-header { padding: 7px 2px 11px; color: #07051A; }
.ins-eyebrow { font-size: 0.5em; font-weight: 700; color: rgba(10,10,20,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.ins-title { font-family: "Inter", "Noto Sans JP", sans-serif; font-size: 1.1em; font-weight: 700; margin-top: 1px; }

.ins-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gmo-blue-deep), var(--gmo-blue) 60%, var(--gmo-blue-mid));
  color: white;
  padding: 13px;
}
.ins-hero::before {
  content: '';
  position: absolute; top: -38px; right: -38px;
  width: 112px; height: 112px;
  background: radial-gradient(circle, rgba(255,107,0,0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(18px);
}
.ins-hero-eyebrow { font-size: 0.48em; font-weight: 700; opacity: 0.85; letter-spacing: 0.07em; text-transform: uppercase; }
.ins-hero-title {
  margin-top: 6px;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 0.95em;
  font-weight: 700;
  line-height: 1.1;
}
.ins-hero-title .grad {
  background: linear-gradient(90deg, #FFCC66, var(--gmo-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ins-chart {
  margin-top: 11px;
  background: rgba(255,255,255,0.96);
  border-radius: 12px;
  padding: 10px;
}
.ins-chart-h { display: flex; justify-content: space-between; align-items: baseline; }
.ins-chart-t { font-size: 0.6em; font-weight: 700; color: #07051A; }
.ins-chart-c { font-family: "Inter", sans-serif; font-size: 0.55em; font-weight: 700; color: #28CB7E; }
.ins-bars { display: flex; align-items: flex-end; gap: 4px; height: 46px; margin-top: 7px; }
.ins-bar {
  flex: 1;
  background: linear-gradient(180deg, #93C5FD, var(--gmo-blue));
  border-radius: 3px 3px 1px 1px;
}
.ins-bar.peak { background: linear-gradient(180deg, #FFA62B, var(--gmo-accent)); box-shadow: 0 4px 8px rgba(255,107,0,0.4); }

/* === Cards === */
.card-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 880px) {
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--sh-1);
  transition: transform 0.3s var(--ease-out), border-color 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-3px); border-color: var(--gmo-blue); box-shadow: var(--sh-2); }
.card h3 { margin: 0 0 10px; font-size: 1.15em; font-weight: 700; color: var(--ink-0); }
.card p { font-size: 0.9em; line-height: 1.75; color: var(--ink-2); margin: 0; }

/* === Tour Block === */
.tour {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.tour.reverse { grid-template-columns: 1fr 1.1fr; }
@media (max-width: 1000px) {
  .tour, .tour.reverse { grid-template-columns: 1fr; gap: 36px; }
  .tour.reverse > *:first-child { order: 2; }
}
.tour + .tour { margin-top: 96px; }
@media (max-width: 768px) { .tour + .tour { margin-top: 64px; } }

.tour-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(0, 88, 184, 0.10);
  color: var(--gmo-blue);
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tour h3 {
  margin: 16px 0 14px;
  font-family: "Inter", "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(1.45em, 2.6vw, 2em);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.32;
  color: var(--ink-0);
  word-break: keep-all;
  overflow-wrap: normal;
}
.tour p { font-size: 0.95em; line-height: 1.85; color: var(--ink-2); font-weight: 400; }
.tour-features { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.tour-feature { display: flex; gap: 12px; align-items: flex-start; }
.tour-feature-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gmo-blue), var(--gmo-cyan));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  flex-shrink: 0;
  box-shadow: var(--sh-blue);
}
.tour-feature-text { font-size: 0.9em; color: var(--ink-1); line-height: 1.7; font-weight: 400; }
.tour-feature-text strong { color: var(--ink-0); font-weight: 700; }

/* === Solution row === */
.solution-row {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) { .solution-row { grid-template-columns: 1fr; } }
.solution-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-1);
}
.solution-num {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 3em;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gmo-blue), var(--gmo-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  letter-spacing: -0.04em;
}
.solution-card h3 { margin: 0 0 10px; font-size: 1.1em; font-weight: 700; color: var(--ink-0); }
.solution-card p { font-size: 0.9em; line-height: 1.75; color: var(--ink-2); margin: 0; }

/* === Step === */
.steps {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  box-shadow: var(--sh-1);
}
.step-num-large {
  font-family: "Inter", -apple-system, sans-serif;
  font-size: 5em;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, rgba(0, 88, 184, 0.25), rgba(0, 88, 184, 0.06));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 1.1em; font-weight: 700; color: var(--ink-0); }
.step p { font-size: 0.9em; line-height: 1.75; color: var(--ink-2); margin: 0; }

/* === Footer === */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.78);
  padding: 48px 0 36px;
  text-align: center;
  font-size: 0.85em;
  font-weight: 400;
}
.footer-brand {
  font-weight: 700;
  font-size: 1.1em;
  color: white;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
}
.footer-brand-mark {
  display: inline-flex;
  width: 30px; height: 30px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gmo-blue), var(--gmo-cyan));
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75em;
  font-weight: 700;
}
.footer-links { margin-top: 20px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.75); font-weight: 600; font-size: 0.9em; }
.footer-links a:hover { color: var(--gmo-cyan); }
.footer-copy { margin-top: 22px; font-size: 0.75em; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }

/* === Decision CTA === */
.decision-wrap { padding: 96px 0 64px; background: white; }
@media (max-width: 768px) { .decision-wrap { padding: 64px 0 48px; } }
.decision {
  position: relative;
  border-radius: var(--r-2xl);
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--gmo-blue-deep) 0%, var(--gmo-blue) 60%, var(--gmo-blue-mid) 100%);
  overflow: hidden;
  color: white;
  box-shadow: 0 28px 70px rgba(0, 88, 184, 0.38);
}
@media (max-width: 700px) { .decision { padding: 48px 26px; } }
.decision::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 198, 242, 0.5), transparent 70%);
  filter: blur(50px);
}
.decision::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.4), transparent 70%);
  filter: blur(50px);
}
.decision-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.decision-tag {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.20);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 0.7em;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
}
.decision h2 {
  margin: 22px auto 18px;
  font-family: "Inter", "Noto Sans JP", -apple-system, "Hiragino Sans", "Yu Gothic", sans-serif;
  font-size: clamp(1.8em, 4vw, 3em);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.28;
  color: white;
  word-break: keep-all;
  overflow-wrap: normal;
}
.decision h2 .accent {
  background: linear-gradient(90deg, #FFCC66, var(--gmo-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 900;
}
@media (max-width: 640px) {
  .decision h2 { font-size: 1.7em; }
}
.decision h2 .accent {
  background: linear-gradient(90deg, #FFCC66, var(--gmo-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.decision p {
  font-size: 1em;
  line-height: 1.85;
  color: rgba(255,255,255,0.92);
  margin-bottom: 30px;
  font-weight: 400;
}
.decision p strong { color: #FFCC66; font-weight: 700; }
.decision-actions { display: inline-flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.decision .btn-primary { background: white; color: var(--gmo-blue-deep); }
.decision .btn-primary:hover { background: rgba(255,255,255,0.92); color: var(--gmo-blue-deep); }
.decision .btn-ghost { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.30); color: white; backdrop-filter: blur(12px); }
.decision .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); color: white; }

/* fade */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade { animation: fadeUp 0.8s var(--ease-out) both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.2s; }
.d3 { animation-delay: 0.3s; }
.d4 { animation-delay: 0.4s; }

/* === Switcher (header tabs for influencer/store/board) === */
.lp-switcher {
  display: inline-flex;
  background: var(--surface-2);
  border-radius: 9999px;
  padding: 4px;
  gap: 2px;
}
.lp-switcher a {
  padding: 6px 11px;
  border-radius: 9999px;
  font-size: 0.78em;
  font-weight: 700;
  color: var(--ink-3);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  white-space: nowrap;
}
.lp-switcher a:hover { color: var(--ink-0); }
.lp-switcher a.active { background: white; color: var(--gmo-blue); box-shadow: var(--sh-1); }
@media (max-width: 1100px) {
  .lp-switcher { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .lp-switcher a { padding: 5px 9px; font-size: 0.74em; }
}
@media (max-width: 600px) {
  .lp-switcher a { padding: 5px 8px; font-size: 0.7em; }
}

/* =================================================
   📱 v17: スマホ最適化強化（経営陣スマホ閲覧対応）
   ================================================= */
@media (max-width: 760px) {
  /* HERO 全体縮小 */
  .hero { padding: 32px 0 40px; }
  .hero h1 { font-size: 1.7em; line-height: 1.3; margin: 14px 0 14px; }
  .hero p.lead { font-size: 0.92em; line-height: 1.75; margin: 0 0 22px; }
  .kicker { font-size: 0.66em; padding: 5px 10px; }
  .hero-actions { gap: 8px; }
  .btn-primary, .btn-ghost, .btn-accent { padding: 11px 18px; font-size: 0.85em; }

  /* セクション余白 */
  .section { padding: 56px 0; }
  .section-h { font-size: clamp(1.4em, 5vw, 1.9em); line-height: 1.35; }
  .section-lead { font-size: 0.92em; line-height: 1.8; }

  /* 各グリッドを 1 列に */
  .lp-grid { grid-template-columns: 1fr !important; gap: 14px !important; }

  /* 差別化セクション 2 列 → 1 列 */
  #differentiation-map > div > div:nth-of-type(2) > div { grid-template-columns: 1fr !important; }
  #differentiation-psychology > div > div:nth-of-type(2) > div { grid-template-columns: 1fr !important; }

  /* コンプライアンス内訳カード 2 列 → 1 列 */
  .section .card,
  .section [style*="grid-template-columns:repeat(2,"],
  .section [style*="grid-template-columns:repeat(3,"],
  .section [style*="grid-template-columns:repeat(4,"] {
    /* JS 不要、強制 1 列化は overlay style で実現が難しいので注釈のみ */
  }

  /* 大型バナー縦並び */
  .demo-banner { grid-template-columns: 1fr !important; padding: 24px 20px !important; }

  /* decision CTA */
  .decision { padding: 32px 22px !important; }
  .decision h2 { font-size: 1.4em !important; line-height: 1.4 !important; }
  .decision p { font-size: 0.88em !important; line-height: 1.85 !important; }
  .decision-actions { flex-direction: column; }
  .decision-actions a { width: 100%; justify-content: center; }

  /* footer タイト化 */
  .footer { padding: 32px 0; }
  .footer-links { gap: 10px; font-size: 0.78em; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.55em; }
  .section-h { font-size: 1.35em; }
  .hero-stat-val { font-size: clamp(1.2em, 5vw, 1.5em); }
  .lp-switcher { padding: 3px; gap: 1px; }
  .lp-switcher a { padding: 4px 7px; font-size: 0.68em; }
  /* iPhone モック更にコンパクト */
  .phones-row .phone { width: 120px !important; height: 249px !important; border-radius: 22px !important; padding: 5px !important; }
  .phones-row { gap: 5px !important; }
}


/* === v23: 新規セクション モバイル対応 === */
@media (max-width: 768px) {
  /* 市場構造（従来 vs Visit Lab）の 2 列を 1 列に */
  #market-structure [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* 補足バナー */
  #market-structure [style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  /* AI 検索 / SNS / オウンドメディア 3 列 */
  #market-shift [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
  /* 循環図 5 列 */
  #market-shift [style*="grid-template-columns:1fr auto 1fr auto 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* 矢印を縦向きに */
  #market-shift [style*="font-size:1.4em;color:#FFCC66"] {
    transform: rotate(90deg);
    margin: 4px auto;
  }
}

/* =================================================
   v24 共通追加（LP-shared）
   - .card-h: カード見出し用統一クラス（h3 inline font-size 排除）
   - .num: tabular-nums で 5 桁価格の改行を防止
   - .phones-row: 480px 以下で中央 1 端末のみ表示
   ================================================= */
.card-h {
  font-size: 1.15em;
  line-height: 1.45;
  font-weight: 800;
  color: var(--ink-0);
  margin-bottom: 8px;
}

@media (max-width: 480px) {
  /* HERO 3 端末横並び → 中央 1 枚のみ表示でファーストビュー縦長化を回避 */
  .hero .phones-row .phone:nth-child(1),
  .hero .phones-row .phone:nth-child(3) { display: none; }
  .hero .phones-row .phone:nth-child(2) {
    transform: none;
    width: 200px !important;
    height: 416px !important;
    border-radius: 32px !important;
    padding: 8px !important;
  }
}

/* =================================================
   v25 影響範囲：influencer.html 共通化対応
   - .num-inter: Inter数字フォント統一
   - .map-pin--current: 現在地ピン強調（パルスアニメ）
   - .lp-grid-3 / .lp-grid-4: レスポンシブ対応グリッド
   - .earn-*: Phone3 Earnings カード共通クラス
   - .rank-*: ランクカード共通クラス
   ================================================= */
.num-inter {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

/* 現在地ピン */
.map-pin--current {
  position: absolute;
  top: 52%;
  left: 48%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #007AFF;
  border: 2.5px solid #FFFFFF;
  box-shadow: 0 0 0 3px rgba(0,122,255,0.35), 0 2px 8px rgba(0,122,255,0.4);
  z-index: 10;
  transform: translate(-50%, -50%);
  animation: vl-pulse 2s ease-out infinite;
}
.map-pin--current::before,
.map-pin--current::after { content: none !important; }
@keyframes vl-pulse {
  0%   { box-shadow: 0 0 0 3px rgba(0,122,255,0.45), 0 0 0 0 rgba(0,122,255,0.5); }
  70%  { box-shadow: 0 0 0 3px rgba(0,122,255,0.45), 0 0 0 14px rgba(0,122,255,0); }
  100% { box-shadow: 0 0 0 3px rgba(0,122,255,0.45), 0 0 0 0 rgba(0,122,255,0); }
}

/* レスポンシブグリッド */
.lp-grid-3 {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.lp-grid-4 {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) {
  .lp-grid-3 { grid-template-columns: 1fr; gap: 14px; }
  .lp-grid-4 { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (max-width: 560px) {
  .lp-grid-4 { grid-template-columns: 1fr; }
}

/* Phone3 Earnings 共通クラス */
.earn-container {
  padding: 36px 13px 0;
  height: 100%;
  isolation: isolate;
}
.earn-header { padding: 8px 2px 8px; }
.earn-current-rank {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 9999px;
  background: linear-gradient(135deg,#FFE07A,#FFAB1F);
  color: #6B3F00;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 2px 8px;
}
.earn-card-dark {
  background: #1A1A1A;
  border-radius: 18px;
  padding: 16px;
  color: white;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.earn-card-dark-glow {
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(255,188,48,0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}
.earn-card-dark-body { position: relative; z-index: 1; }
.earn-label-sm {
  font-size: 10px;
  font-weight: 700;
  opacity: 0.75;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.earn-label-sub { margin-top: 6px; text-transform: none; letter-spacing: 0; opacity: 0.7; }
.earn-amount-xl {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-top: 4px;
}
.earn-card-light {
  margin-top: 11px;
  background: white;
  border-radius: 14px;
  padding: 11px;
  box-shadow: 0 1px 3px rgba(10,10,20,0.06);
}
.earn-label-md {
  font-size: 11px;
  font-weight: 700;
  color: #07051A;
}
.earn-amount-md {
  font-size: 18px;
  font-weight: 800;
  color: #07051A;
  margin-top: 3px;
}
.earn-trend-up {
  font-size: 10px;
  color: #28CB7E;
  font-weight: 700;
  margin-top: 2px;
}
.earn-card-rank {
  margin-top: 9px;
  background: linear-gradient(135deg,#FFFBEB,#FEF3C7);
  border-radius: 14px;
  padding: 11px;
  border: 1px solid rgba(255,188,48,0.32);
}
.earn-rank-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.earn-label-rank { color: #6B3F00; }
.earn-pct {
  font-size: 13px;
  font-weight: 800;
  color: #6B3F00;
}
.earn-progress {
  margin-top: 5px;
  height: 5px;
  background: rgba(255,188,48,0.25);
  border-radius: 9999px;
  overflow: hidden;
}
.earn-progress-fill {
  height: 100%;
  background: linear-gradient(90deg,#FFBC30,var(--gmo-accent));
  border-radius: 9999px;
}

/* ランクカード共通 */
.rank-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px) {
  .rank-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .rank-grid { grid-template-columns: 1fr; }
}
.rank-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--sh-1);
  position: relative;
}
.rank-card-featured {
  border-color: rgba(255,188,48,0.45);
  box-shadow: 0 6px 20px rgba(255,188,48,0.15);
}
.rank-featured-pill {
  position: absolute;
  top: -10px;
  right: 14px;
  font-size: 0.6em;
  font-weight: 700;
  color: white;
  background: var(--gmo-accent);
  padding: 3px 10px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.rank-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.rank-badge-silver { background: linear-gradient(135deg,#F4F2F8,#C9C8D8); color: #1A1530; }
.rank-badge-gold { background: linear-gradient(135deg,#FFE07A,#FFAB1F); color: #6B3F00; }
.rank-badge-platinum { background: linear-gradient(135deg,#E5DAFF,#A684FB); color: #2B1485; }
.rank-badge-diamond {
  background: linear-gradient(135deg,#E0F4FF,#A0E0FF);
  color: #003F66;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6), 0 0 12px rgba(160,224,255,0.4);
}
.rank-amount {
  font-size: 1.4em;
  font-weight: 800;
  margin-top: 14px;
  color: var(--ink-0);
}
.rank-amount-label {
  font-size: 0.78em;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 600;
}
.rank-divider {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.78em;
  color: var(--ink-2);
  line-height: 1.7;
}

/* =================================================
   v26 influencer.html QA フィードバック対応
   - .notice-banner: スマホで縦並び化（バナー文＋言語タグ）
   - .btn-pitch-cta: モバイル時ラベル短縮（経営層プレゼンCTA）
   - .map-pin--current: clamp() でスマホ縮小時のスケール対応
   - .earn-amount-xl / .earn-amount-md: clamp() で6桁数字溢れ対応
   - .chain-logic-steps: 3カード横並び＋スマホ縦並び（連鎖ロジック視認性UP）
   ================================================= */

/* CTAラベル切替（既定はfull、スマホでshort） */
.btn-pitch-cta .cta-label-short { display: none; }
.btn-pitch-cta .cta-label-full { display: inline; }

/* 連鎖ロジック 3ステップカード（PC: 横並び、スマホ: 縦並び） */
.chain-logic-steps {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: stretch;
}
.chain-logic-step {
  background: white;
  border: 1px solid rgba(0,88,184,0.18);
  border-radius: 12px;
  padding: 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chain-logic-step-num {
  font-size: 1.1em;
  font-weight: 800;
  color: var(--gmo-primary);
}
.chain-logic-step-title {
  font-size: 0.98em;
  font-weight: 800;
  color: var(--ink-0);
  line-height: 1.4;
}
.chain-logic-step-desc {
  font-size: 0.86em;
  color: var(--ink-2);
  line-height: 1.65;
}
.chain-logic-arrow {
  align-self: center;
  font-size: 1.3em;
  font-weight: 800;
  color: var(--gmo-primary);
}

/* 現在地ピン スマホ縮小対応 */
@media (max-width: 560px) {
  .map-pin--current {
    width: clamp(10px, 4vw, 18px);
    height: clamp(10px, 4vw, 18px);
  }
}

/* Earnings 数字フォント clamp 化（6桁¥186,400 溢れ対応） */
@media (max-width: 480px) {
  .earn-amount-xl { font-size: clamp(14px, 5.5vw, 24px); }
  .earn-amount-md { font-size: clamp(13px, 4.5vw, 18px); }
}

/* お知らせバナー スマホ縦並び＆右寄せ解消 */
@media (max-width: 560px) {
  .notice-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
  }
  .notice-banner .notice-banner-langs {
    margin-left: 0;
  }
}

/* HERO 3つ目CTA：スマホ時はラベル短縮＋フォント縮小で折返し回避 */
@media (max-width: 480px) {
  .btn-pitch-cta .cta-label-full { display: none; }
  .btn-pitch-cta .cta-label-short { display: inline; }
  .btn-pitch-cta {
    font-size: 0.78em;
    padding: 10px 14px;
  }
}

/* 連鎖ロジック スマホ縦並び */
@media (max-width: 760px) {
  .chain-logic-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .chain-logic-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}


/* =========================================================
   v38: UI/UX 精緻化レイヤー（全LP共通の底上げ）
   - マイクロインタラクション / アクセシビリティ / タイポ
   ========================================================= */

/* --- レンダリング品質 --- */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* --- 日本語見出しの詰め組み（数値表示には掛けない） --- */
.hero h1,
.section-h,
.affinity-headline,
.portal-title,
.section-h2 {
  font-feature-settings: "palt" 1;
}

/* --- 数値は等幅で桁を揃える --- */
.hero-stat-val,
.num,
.data-num,
[class*="-val"],
[class*="-num"] {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* --- アンカースクロール時に固定ヘッダー分のマージン --- */
[id] { scroll-margin-top: 84px; }

/* --- テキスト選択カラー --- */
::selection { background: rgba(0, 88, 184, 0.16); color: var(--ink-0); }

/* --- スムーズスクロール（モーション設定を尊重） --- */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* --- ボタン：押下プレスフィードバック --- */
.btn-primary:active,
.btn-ghost:active,
.btn-accent:active,
.btn-on-blue:active,
.nav-cta:active,
.demo-cta:active,
.decision-actions a:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.09s;
}

/* --- アクセシブルなフォーカスリング（キーボード操作時のみ） --- */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.btn-accent:focus-visible,
.btn-on-blue:focus-visible,
.nav-cta:focus-visible,
.demo-cta:focus-visible,
.lp-switcher a:focus-visible,
.decision-actions a:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 88, 184, 0.45);
  outline-offset: 3px;
  border-radius: 9999px;
}

/* --- カードのホバー挙動を統一・精緻化 --- */
.card {
  transition: transform 0.28s var(--ease-out),
              box-shadow 0.28s var(--ease-out),
              border-color 0.2s;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}

/* --- セクション区切りの kicker ドットを脈動させる（控えめ） --- */
@media (prefers-reduced-motion: no-preference) {
  .kicker .dot,
  .section-kicker .dot {
    animation: vl-dot-pulse 2.4s var(--ease-out) infinite;
  }
}
@keyframes vl-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(0.82); }
}

/* --- モバイル：タップ領域を 44px 以上に確保 --- */
@media (max-width: 768px) {
  .btn-primary,
  .btn-ghost,
  .btn-accent,
  .btn-on-blue,
  .nav-cta,
  .lp-switcher a {
    min-height: 44px;
  }
  .btn-primary,
  .btn-ghost,
  .btn-accent,
  .btn-on-blue {
    align-items: center;
    justify-content: center;
  }
}

/* --- モーション抑制設定への全面対応 --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- カスタムスクロールバー（マウス環境のみ・控えめ） --- */
@media (pointer: fine) {
  ::-webkit-scrollbar { width: 12px; height: 12px; }
  ::-webkit-scrollbar-track { background: var(--surface-2); }
  ::-webkit-scrollbar-thumb {
    background: var(--line-strong);
    border-radius: 9999px;
    border: 3px solid var(--surface-2);
  }
  ::-webkit-scrollbar-thumb:hover { background: rgba(0, 88, 184, 0.55); }
  html { scrollbar-color: var(--line-strong) var(--surface-2); }
}

/* --- リンク内の矢印を hover で前進（ホバー誘導の一貫性） --- */
.lp-card-link .arrow,
.demo-cta,
.nav-cta { transition: transform 0.2s var(--ease-spring), background 0.2s, color 0.2s; }

/* === v39: exec-summary 3列 → モバイル1列 === */
@media (max-width: 860px) {
  #exec-summary [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
  }
}
