:root {
  --red: #d9000d;
  --red-deep: #a8000c;
  --gold: #e8b91e;
  --gold-soft: #f6dc70;
  --ink: #28221e;
  --paper: #f7f0df;
  --paper-2: #eee2c8;
  --surface: #fffdf7;
  --line: #06c755;
  --muted: #82786b;
  --border: #28221e;
  --shadow: 5px 6px 0 var(--border);
  --r: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body,
main,
.site-header,
.site-footer {
  max-width: 100vw;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 18px;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 28px 12px;
  background: rgba(247, 240, 223, 0.96);
  border-bottom: 3px solid var(--red);
  backdrop-filter: blur(10px);
}

.sp-only { display: none; }

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: inline-block;
  padding: 8px 12px 7px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--border);
  box-shadow: 3px 3px 0 var(--border);
  font-family: "RocknRoll One", sans-serif;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: min(240px, 30vw);
  max-height: 70px;
  object-fit: contain;
}

.brand-sub {
  margin-top: 4px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.menu-button {
  display: none;
  width: 52px;
  min-width: 52px;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 900;
  cursor: pointer;
  line-height: 1;
}

.menu-button span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: var(--red);
}

.menu-button small {
  display: block;
  margin-top: 1px;
  font-size: 10px;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 900;
}

.site-nav a {
  padding: 7px 8px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--red);
  border-color: var(--red);
}

.login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 48px;
  padding: 8px 14px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--border);
  border-radius: 7px;
  box-shadow: 3px 3px 0 var(--border);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
}

main {
  max-width: 1240px;
  margin: 0 auto;
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.ticker-track {
  display: inline-flex;
  gap: 34px;
  min-width: max-content;
  padding: 9px 0;
  animation: ticker 36s linear infinite;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "◆";
  margin-right: 10px;
  color: var(--gold);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.kv {
  position: relative;
  margin: 22px 28px 0;
  overflow: hidden;
  border: 3px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  background: var(--surface);
}

.kv-track {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.kv-track::-webkit-scrollbar { display: none; }

.kv-slide {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  min-height: 410px;
  padding: 42px;
  scroll-snap-align: start;
  overflow: hidden;
}

.kv-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(90deg, currentColor 1px, transparent 1px),
    linear-gradient(currentColor 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.kv-red { background: linear-gradient(135deg, var(--red), var(--red-deep)); color: #fff; }
.kv-gold { background: linear-gradient(135deg, #f8d855, var(--gold)); color: var(--ink); }
.kv-ink { background: linear-gradient(135deg, #17120f, #37261b); color: #fff; }
.kv-cream { background: linear-gradient(135deg, #fff8e6, var(--paper-2)); color: var(--ink); }

.kv-image-slide {
  display: block;
  min-height: 0;
  padding: 0;
  background: var(--ink);
  aspect-ratio: 1600 / 520;
}

.kv-image-slide::after {
  display: none;
}

.kv-image-link,
.kv-picture,
.kv-picture img {
  display: block;
  width: 100%;
  height: 100%;
}

.kv-image-link {
  text-decoration: none;
}

.kv-picture img {
  object-fit: cover;
}

.kv-copy {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.kv-label,
.section-title span,
.line-band span,
.feature-panel span,
.price-row span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.kv-gold .kv-label,
.kv-cream .kv-label {
  background: var(--ink);
  color: var(--gold-soft);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 16px;
  font-size: clamp(36px, 5.5vw, 64px);
}

.kv h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.5vw, 54px);
}

.kv p {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 17px;
  font-weight: 800;
}

.kv-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--border);
  font-weight: 900;
  text-decoration: none;
}

.kv-red .kv-link,
.kv-ink .kv-link {
  background: var(--gold);
}

.pixel-board,
.mini-log,
.line-phone,
.cat-trio,
.nyans-kv-art {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
}

.pixel-board {
  display: grid;
  place-items: center;
  width: min(100%, 360px);
  min-height: 230px;
  border: 4px solid var(--border);
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 8px, transparent 8px 16px),
    #221714;
  box-shadow: 8px 8px 0 rgba(0,0,0,.35);
  color: var(--gold-soft);
}

.pixel-board span {
  color: #fff;
  font-weight: 900;
}

.pixel-board strong {
  font-family: "Anton", sans-serif;
  font-size: 88px;
  line-height: 0.95;
}

.pixel-board em {
  font-family: "Anton", sans-serif;
  font-size: 42px;
  font-style: normal;
  color: #fff;
}

.mini-log {
  display: grid;
  gap: 10px;
  width: min(100%, 320px);
}

.mini-log div,
.line-phone {
  border: 3px solid var(--border);
  background: #fffdf7;
  box-shadow: 5px 5px 0 var(--border);
}

.mini-log div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
}

.mini-log span {
  color: var(--muted);
  font-weight: 900;
}

.mini-log strong {
  font-size: 24px;
}

.line-phone {
  width: min(100%, 320px);
  padding: 22px;
  color: var(--ink);
  border-radius: 20px;
}

.line-phone span {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 10px;
  background: var(--line);
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
}

.line-phone p {
  padding: 14px;
  border-radius: 14px;
  background: #e6f7df;
  font-size: 15px;
}

.line-phone strong {
  display: block;
  color: var(--red);
  font-size: 28px;
}

.cat-trio {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}

.nyans-kv-art {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nyans-kv-art img {
  display: block;
  width: min(100%, 430px);
  max-height: 360px;
  object-fit: contain;
  filter: drop-shadow(5px 6px 0 rgba(40, 34, 30, .5));
}

.cat-face {
  position: relative;
  display: inline-block;
  width: 82px;
  height: 86px;
  border: 3px solid var(--border);
  border-radius: 48% 48% 44% 44%;
  background: #fff;
  box-shadow: 4px 4px 0 var(--border);
}

.cat-face::before,
.cat-face::after {
  content: "";
  position: absolute;
  top: -16px;
  width: 28px;
  height: 28px;
  background: inherit;
  border-top: 3px solid var(--border);
  border-left: 3px solid var(--border);
  transform: rotate(45deg);
}

.cat-face::before { left: 11px; }
.cat-face::after { right: 11px; }
.cat-face.black { width: 90px; height: 96px; background: #111; }
.cat-face.gray { background: linear-gradient(90deg, #fff 0 50%, #8c837b 50%); }
.cat-face.white { background: #f7f1e5; }

.kv-dots {
  position: absolute;
  right: 0;
  bottom: 14px;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.kv-dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 1px solid rgba(0,0,0,.35);
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  cursor: pointer;
}

.kv-dots button.active { background: var(--gold); }

.first-guide {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) 1.1fr;
  gap: 18px;
  align-items: center;
  margin: 22px 28px 0;
}

.guide-action {
  border: 2px solid var(--border);
  border-radius: var(--r);
  background: #fff;
  box-shadow: 3px 3px 0 var(--border);
}

.first-guide-head {
  padding: 4px 0;
}

.first-guide-head span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 9px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.first-guide-head h2 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.35;
}

.first-guide-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.first-guide-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.guide-action {
  display: grid;
  align-content: start;
  min-height: 118px;
  padding: 18px;
  text-decoration: none;
}

.guide-action.main {
  background: var(--red);
  color: #fff;
}

.guide-action strong {
  font-size: 18px;
  line-height: 1.35;
}

.guide-action small {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.guide-action.main small {
  color: #fff4c8;
}

.intro-section,
.lineup-section,
.record-section,
.reading-section,
.logic-section,
.plans-section,
.faq-section {
  padding: 64px 28px;
}

.section-title {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 8px;
  color: var(--red);
  font-size: clamp(28px, 4vw, 44px);
}

.section-title p {
  color: var(--muted);
  font-weight: 800;
}

.section-title .update-note {
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
}

.section-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  margin-top: 6px;
  padding: 8px 16px;
  border-bottom: 3px solid var(--red);
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

/* ─── Promo Banner Carousel ─────────────────── */
/* ─── Promo Banner Carousel ─────────────────── */
.promo-rail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px auto 0;
  max-width: 820px; /* window(728px) + 矢印(40px×2) + gap(8px×2) */
  padding: 0 28px; /* kvの左右marginに合わせる */
}

/* windowがflexの中央アイテム */
.promo-window {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.promo-track {
  display: flex;
  will-change: transform;
}

.promo-banner {
  flex: 0 0 100%; /* PC: 全幅（peek不要・矢印で操作） */
  min-width: 0;
  aspect-ratio: 728 / 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
  background: #f4f1ea;
  border: 2px dashed #b9b0a2;
  color: var(--ink);
  padding: 8px 16px;
}

.promo-banner.has-image {
  background: transparent;
  border: none;
  line-height: 0;
  padding: 0;
  display: block;
}

.promo-banner.has-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.promo-banner span { display: none; }

.promo-banner strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.promo-banner small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

/* 矢印ボタン — flexアイテムとして配置（absoluteをやめてoverflowの影響を排除） */
.promo-nav {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: #fff;
  color: var(--red);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  font-family: Arial, sans-serif; /* 日本語フォントの基線ズレを排除 */
  cursor: pointer;
  overflow: visible;
  flex-shrink: 0;
}

.promo-nav:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: stretch;
}

.intro-copy {
  padding: 12px 0 12px 22px;
  border-left: 5px solid var(--red);
}

.intro-copy h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.45;
}

.intro-copy p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.intro-note {
  display: grid;
  border: 3px solid var(--border);
  background: #1f1916;
  color: #fff;
  padding: 22px;
}

.intro-note span {
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 4px 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.intro-note h3 {
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 20px;
}

.intro-note p {
  margin-bottom: 0;
  font-weight: 800;
}

.line-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 28px;
  padding: 26px 30px;
  border: 3px solid #048d3d;
  border-radius: 8px;
  background: #06c755;
  color: #fff;
  box-shadow: 5px 5px 0 #03451e;
  text-decoration: none;
}

.line-band h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 32px;
}

.line-band p {
  margin-bottom: 0;
  font-weight: 800;
}

.line-band span {
  background: #fff;
  color: #048d3d;
}

.line-band strong {
  flex: 0 0 auto;
  padding: 0 0 3px;
  border-bottom: 3px solid #fff;
  color: #fff;
  font-weight: 900;
}

.jackpot-bar {
  display: grid;
  grid-template-columns: 150px 1fr 58px;
  max-width: 920px;
  margin: 0 auto 52px;
  overflow: hidden;
  border: 3px solid var(--border);
  border-radius: 8px;
  background: var(--gold);
  box-shadow: var(--shadow);
}

.jackpot-left,
.jackpot-main,
.jackpot-arrow {
  display: grid;
  align-content: center;
}

.jackpot-left {
  place-items: center;
  background: #fff;
  border-right: 3px solid var(--border);
}

.jackpot-left span {
  padding: 5px 9px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.jackpot-left strong {
  margin-top: 7px;
  font-family: "Anton", sans-serif;
  font-size: 20px;
}

.jackpot-main {
  padding: 16px 22px;
}

.jackpot-main span {
  font-weight: 900;
}

.jackpot-main strong {
  display: block;
  margin: 6px 0 2px;
  padding: 5px 14px;
  background: #1e1a17;
  color: var(--gold-soft);
  border-radius: 6px;
  font-family: "Anton", sans-serif;
  font-size: 46px;
  line-height: 1.05;
}

.jackpot-main small { color: #fff; font-weight: 900; }

.jackpot-arrow {
  place-items: center;
  background: var(--red);
  color: #fff;
  border-left: 3px solid var(--border);
  font-size: 34px;
  font-weight: 900;
}

.race-feed {
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.race-ticket {
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  border: 3px solid var(--border);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ticket-stub {
  display: grid;
  place-items: center;
  padding: 16px;
  background: #f4ead3;
  border-right: 2px dashed #cdbf9e;
  text-align: center;
}

.ticket-stub small {
  color: var(--muted);
  font-family: "Anton", sans-serif;
}

.ticket-stub strong {
  margin: 8px 0;
  font-size: 26px;
  line-height: 1.1;
}

.ticket-stub span,
.race-badge {
  display: inline-block;
  padding: 3px 9px;
  background: var(--red);
  color: #fff;
  font-weight: 900;
}

.ticket-body {
  padding: 22px 24px;
}

.ticket-body h3 {
  margin: 10px 0 16px;
  font-size: 26px;
}

.ev-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  border: 2px dashed #bc8800;
  background: #fff8df;
}

.ev-box span { font-weight: 900; }

.ev-box strong {
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: 44px;
  line-height: 1;
}

.ticket-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  border-top: 2px dashed #d8cbb3;
  font-weight: 900;
}

.ticket-meta strong {
  color: var(--red);
  font-size: 22px;
}

.ticket-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.ticket-actions a {
  padding: 18px;
  background: #d9d2c3;
  border-top: 3px solid var(--border);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.ticket-actions a + a {
  background: var(--red);
  color: #fff;
  border-left: 3px solid var(--border);
}

.race-ticket.skip {
  background: #efe6d1;
}

.race-ticket.skip .ticket-body p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 800;
}

.race-badge.dark { background: var(--ink); }

.record-section {
  background: var(--paper);
}

.kpi-row,
.mini-kpis,
.record-policy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 28px;
}

.record-policy {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 22px;
  padding: 0;
}

.record-policy div {
  padding: 14px 16px;
  border-top: 2px solid var(--border);
  background: #fffdf7;
}

.record-policy dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.record-policy dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.kpi {
  padding: 22px 12px 18px;
  border: 3px solid var(--border);
  border-radius: 6px;
  background: #fff;
  text-align: center;
}

.kpi span {
  color: var(--red);
  font-weight: 900;
}

.kpi strong {
  display: block;
  margin: 4px 0;
  font-family: "Anton", sans-serif;
  font-size: clamp(44px, 8vw, 70px);
  line-height: 1;
}

.kpi small {
  font-size: 28px;
}

.kpi em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.record-visual {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto 22px;
  padding: 30px;
  border: 3px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

.donut {
  display: grid;
  place-items: center;
  width: 260px;
  height: 260px;
  margin: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 41%, transparent 42%),
    conic-gradient(#856642 0 40%, var(--gold) 40% 85%, var(--red) 85% 100%);
}

.donut span {
  display: grid;
  place-items: center;
  width: 130px;
  height: 130px;
  text-align: center;
  color: var(--muted);
  font-weight: 900;
}

.donut strong {
  color: var(--red);
  font-size: 28px;
}

.legend {
  display: grid;
  gap: 16px;
  align-content: center;
}

.legend div {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
}

.legend i {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.legend .brown { background: #856642; }
.legend .gold { background: var(--gold); }
.legend .red { background: var(--red); }

.legend span {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}

.legend small {
  color: var(--muted);
}

.legend strong {
  font-family: "Anton", sans-serif;
  font-size: 42px;
}

.mini-kpis div {
  padding: 18px 12px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.mini-kpis span {
  display: block;
  color: var(--gold-soft);
  font-weight: 900;
}

.mini-kpis strong {
  font-family: "Anton", sans-serif;
  font-size: 32px;
}

.reading-section {
  background: #fffdf7;
}

.reading-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.reading-card {
  display: grid;
  min-height: 250px;
  padding: 22px;
  border: 2px solid #d7cbb8;
  background: #fff;
  text-decoration: none;
}

.reading-card.primary {
  background: var(--ink);
  color: #fff;
}

.reading-card small {
  width: fit-content;
  min-width: 126px;
  margin-bottom: 12px;
  padding: 3px 8px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.reading-card.primary small {
  background: var(--gold);
  color: var(--ink);
}

.reading-card h3 {
  margin: 16px 0 10px;
  color: var(--red);
  font-size: 24px;
  line-height: 1.35;
}

.reading-card.primary h3 {
  color: var(--gold-soft);
}

.reading-card p {
  margin-bottom: 18px;
  font-weight: 800;
}

.reading-card strong {
  align-self: end;
  width: fit-content;
  padding-bottom: 3px;
  border-bottom: 3px solid currentColor;
  color: var(--red);
  font-weight: 900;
}

.reading-card.primary strong {
  color: var(--gold-soft);
}

.reading-visual {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 82px;
  padding: 14px;
  border: 2px solid currentColor;
  overflow: hidden;
}

.reading-visual span {
  position: absolute;
  right: 10px;
  bottom: 6px;
  color: rgba(40, 34, 30, .18);
  font-family: "Anton", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.reading-card.primary .reading-visual span {
  color: rgba(255, 255, 255, .18);
}

.reading-visual i,
.reading-visual b {
  display: inline-block;
  flex: 0 0 auto;
}

.visual-about i {
  width: 46px;
  height: 30px;
  border: 2px solid currentColor;
  background: #fffdf7;
}

.reading-card.primary .visual-about i {
  background: var(--gold);
}

.visual-logic {
  align-items: end;
}

.visual-logic i {
  width: 28px;
  background: var(--gold);
}

.visual-logic i:nth-of-type(1) { height: 24px; }
.visual-logic i:nth-of-type(2) { height: 42px; background: var(--red); }
.visual-logic i:nth-of-type(3) { height: 60px; background: var(--ink); }

.visual-cats b {
  width: 40px;
  height: 44px;
  border: 3px solid var(--border);
  border-radius: 48% 48% 44% 44%;
  background: #fffdf7;
}

.visual-cats b:nth-of-type(2) {
  background: var(--ink);
}

.reading-visual.has-image {
  justify-content: center;
  padding: 8px;
  background: #fff8df;
}

.reading-visual.has-image img {
  display: block;
  width: 100%;
  max-height: 98px;
  object-fit: contain;
}

.cat-trio.small .cat-face {
  width: 64px;
  height: 68px;
}

.numbers {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 22px;
  border: 2px dashed #d8cbb3;
  background: #fff;
}

.numbers b {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--border);
  border-radius: 50%;
  font-family: "Anton", sans-serif;
  font-size: 30px;
}

.numbers b:nth-child(1) { background: var(--red); color: #fff; }
.numbers b:nth-child(3) { background: var(--gold); }

.logic-section {
  background: #fff8e6;
}

.logic-steps {
  max-width: 980px;
  margin: 0 auto;
}

.logic-steps {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}

.logic-steps li {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 2px dashed #d4c5a6;
}

.logic-steps li:last-child { border-bottom: 0; }

.logic-steps strong {
  color: var(--red);
  font-size: 20px;
}

.logic-steps span {
  font-weight: 800;
}

.logic-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin: 26px auto 0;
  padding: 12px 22px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  box-shadow: 3px 3px 0 var(--border);
  font-weight: 900;
  text-decoration: none;
}

.plans-section {
  background: var(--paper);
}

.member-service {
  display: grid;
  grid-template-columns: 330px 1fr;
  max-width: 980px;
  margin: 0 auto;
  border: 3px solid var(--border);
  background: #fff;
}

.member-price {
  padding: 28px;
  background: var(--gold);
  border-right: 3px solid var(--border);
}

.member-price span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.member-price strong {
  display: block;
  color: var(--red);
  font-family: "Anton", sans-serif;
  font-size: 58px;
  line-height: 1;
}

.member-price small {
  font-family: "Noto Sans JP", system-ui, sans-serif;
  font-size: 20px;
}

.member-price p {
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: 800;
}

.member-benefits {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.member-benefits li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid #d7cbb8;
}

.member-benefits li:last-child {
  border-bottom: 0;
}

.member-benefits strong {
  color: var(--red);
  font-size: 18px;
}

.member-benefits span {
  font-weight: 800;
}

.service-notes {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 12px 18px;
  align-items: center;
  max-width: 980px;
  margin: 20px auto 0;
  padding-top: 18px;
  border-top: 1px solid #d7cbb8;
}

.service-notes h3 {
  margin: 0;
  font-size: 16px;
}

.service-notes a {
  display: grid;
  gap: 6px;
  padding: 0;
  background: transparent;
  text-decoration: none;
}

.service-notes span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.service-notes strong {
  color: var(--ink);
  font-size: 16px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

details {
  border: 2px solid var(--border);
  border-radius: 6px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--red);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  font-weight: 700;
}

.site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 46px 28px 32px;
  background: #fff;
  color: var(--ink);
}

.footer-brand,
.footer-columns,
.warning,
.footer-bottom {
  max-width: 1184px;
  margin-right: auto;
  margin-left: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.footer-brand small {
  color: var(--red);
  font-weight: 900;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-bottom: 36px;
}

.footer-columns h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
}

.footer-columns a {
  display: block;
  margin: 9px 0;
  color: #6f685f;
  font-weight: 800;
  text-decoration: none;
}

.footer-columns a:hover {
  color: var(--red);
}

.warning {
  padding: 18px 0;
  border-top: 1px solid #ddd5c8;
  border-bottom: 1px solid #ddd5c8;
}

.warning h2 {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 18px;
}

.warning p {
  margin-bottom: 0;
  font-weight: 800;
}

.warning a {
  color: var(--red);
  font-weight: 900;
}

.footer-bottom {
  margin-top: 26px;
  color: #9a9288;
  font-size: 13px;
  font-weight: 700;
}

.static-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 28px 70px;
}

.static-page {
  display: block;
}

.static-hero {
  margin-bottom: 30px;
  padding: 44px 46px;
  border: 3px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(rgba(217, 0, 13, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 0, 13, .09) 1px, transparent 1px),
    var(--red);
  background-size: 18px 18px;
  color: #fff;
  box-shadow: var(--shadow);
}

.static-hero span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.static-hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
}

.static-content {
  max-width: 920px;
  margin: 0 auto;
  font-size: 17px;
  font-weight: 650;
}

.static-content .sn-page-lead {
  margin-bottom: 34px;
  padding: 28px;
  border-left: 6px solid var(--red);
  background: #fffdf7;
}

.static-content .sn-page-lead p {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 800;
}

.static-content h2,
.static-content .sn-page-heading {
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--red);
  color: var(--ink);
  font-size: clamp(25px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1.35;
}

.static-content .sn-page-subheading {
  margin: 32px 0 14px;
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 900;
  line-height: 1.35;
}

.static-content p {
  margin-bottom: 18px;
}

.static-content ul,
.static-content ol {
  margin: 18px 0 28px;
  padding: 22px 24px 22px 46px;
  border: 2px solid #d9cfbd;
  background: #fffdf7;
  font-weight: 800;
}

.static-content li + li {
  margin-top: 8px;
}

.static-content a {
  color: var(--red);
  font-weight: 900;
}

.static-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1040px;
  margin: 54px auto 0;
  padding: 30px;
  border: 3px solid #008b3f;
  border-radius: 16px;
  background: var(--line);
  color: #fff;
  box-shadow: var(--shadow);
}

.static-cta span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  background: #fff;
  color: #008b3f;
  font-size: 12px;
  font-weight: 900;
}

.static-cta h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
}

.static-cta p {
  margin-bottom: 0;
  font-weight: 900;
}

.static-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 210px;
  min-height: 54px;
  padding: 12px 20px;
  border: 3px solid var(--border);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--border);
  font-weight: 900;
  text-decoration: none;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 14px 0 0;
  color: #fff4c8;
  font-size: 14px;
  font-weight: 900;
}

.post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 42px auto 0;
}

.post-nav a,
.archive-pagination a,
.archive-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 16px;
  border: 2px solid var(--border);
  background: #fff;
  box-shadow: 2px 2px 0 var(--border);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.post-nav div:last-child {
  text-align: right;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.post-card a {
  display: block;
  min-height: 230px;
  padding: 24px;
  border: 3px solid var(--border);
  background: #fffdf7;
  color: var(--ink);
  text-decoration: none;
}

.post-card:nth-child(3n + 1) a {
  background: var(--ink);
  color: #fff;
}

.post-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.post-card:nth-child(3n + 1) span {
  color: var(--gold-soft);
}

.post-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.35;
}

.post-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.post-card:nth-child(3n + 1) p {
  color: #fff4c8;
}

.archive-pagination {
  margin-top: 34px;
  text-align: center;
}

.archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.logic-page {
  max-width: 1240px;
  margin: 0 auto;
}

.logic-hero {
  margin: 42px 28px 0;
  padding: 54px 48px;
  border: 3px solid var(--border);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    var(--red);
  background-size: 18px 18px;
  color: #fff;
  box-shadow: 5px 5px 0 var(--border);
}

.logic-hero span,
.logic-deep span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 10px;
  background: var(--ink);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
}

.logic-hero h1 {
  max-width: 820px;
}

.logic-hero p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 800;
}

.logic-deep {
  display: grid;
  gap: 18px;
  padding: 54px 28px;
}

.logic-deep article {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px 34px;
  padding: 28px;
  border-top: 3px solid var(--border);
  background: #fffdf7;
}

.logic-deep article h2 {
  grid-column: 1;
  color: var(--red);
  font-size: 26px;
}

.logic-deep article p {
  grid-column: 2;
  margin-bottom: 0;
  font-weight: 700;
}

.logic-deep article p + p {
  margin-top: -8px;
}

.logic-return {
  margin: 0 28px 64px;
  padding: 30px;
  border: 3px solid var(--border);
  border-radius: 12px;
  background: var(--gold);
  box-shadow: var(--shadow);
}

.logic-return h2 {
  color: var(--ink);
  font-size: 30px;
}

.logic-return p {
  max-width: 760px;
  font-weight: 800;
}

.logic-return a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 10px 18px;
  border: 2px solid var(--border);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--border);
  font-weight: 900;
  text-decoration: none;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    #1f1916;
}

.service-hero {
  background:
    linear-gradient(90deg, rgba(40,34,30,.09) 1px, transparent 1px),
    linear-gradient(rgba(40,34,30,.09) 1px, transparent 1px),
    var(--gold);
  color: var(--ink);
}

.service-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 46px 28px 0;
  border-top: 3px solid var(--border);
  border-bottom: 3px solid var(--border);
}

.service-compare div {
  padding: 26px;
  border-right: 3px solid var(--border);
  background: #fffdf7;
}

.service-compare div:nth-child(2) {
  background: #fff4c1;
}

.service-compare div:nth-child(3) {
  border-right: 0;
  background: #1f1916;
  color: #fff;
}

.service-compare span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 9px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.service-compare h2 {
  margin-bottom: 6px;
  color: var(--red);
  font-size: 25px;
}

.service-compare strong {
  display: block;
  margin-bottom: 12px;
  font-size: 30px;
}

.service-compare p {
  margin-bottom: 0;
  font-weight: 800;
}

/* ─── PC: FVフェード切り替え ─── */
@media (min-width: 901px) {
  .kv-track {
    display: block;
    overflow: hidden;
    scroll-snap-type: none;
    position: relative;
  }

  .kv-slide {
    position: absolute;
    inset: 0;
    flex: none;
    width: 100%;
    min-height: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    scroll-snap-align: none;
  }

  .kv-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
  }

  /* PCではドットを非表示（JSで高さ管理するため不要） */
  .kv-dots {
    display: none;
  }
}

@media (max-width: 900px) {
  body,
  main {
    width: 100vw;
    overflow-x: hidden;
  }

  .sp-only { display: inline; }

  .site-header {
    grid-template-columns: 54px minmax(0, 1fr) 76px;
    gap: 6px;
    padding: 9px 10px;
    max-width: 100vw;
    overflow: hidden;
  }

  .menu-button {
    display: grid;
    justify-items: center;
    width: 54px;
    min-width: 54px;
    padding: 0;
  }

  .brand {
    justify-self: center;
    text-align: center;
    min-width: 0;
  }

  .brand-mark {
    font-size: 14px;
    padding: 6px 9px;
  }

  .brand-logo {
    max-width: min(190px, 44vw);
    max-height: 58px;
  }

  .brand-sub { font-size: 9px; }

  .login-button {
    justify-self: end;
    min-width: 0;
    width: 76px;
    min-height: 40px;
    padding: 6px 7px;
    font-size: 0;
    white-space: nowrap;
  }

  .login-button::after {
    content: "ログイン";
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding-top: 8px;
  }

  .site-nav.open {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .site-nav a {
    padding: 11px 10px;
    border: 1px solid #decfaa;
    background: #fff;
    text-align: center;
  }

  .kv {
    margin: 14px 10px 0;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    border-radius: 12px;
  }

  .kv-slide {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 470px;
    padding: 24px 18px 44px;
    min-width: 100%;
  }

  .kv-image-slide {
    min-height: 0;
    padding: 0;
    aspect-ratio: 750 / 920;
  }

  .kv-copy,
  .pixel-board,
  .mini-log,
  .line-phone,
  .cat-trio,
  .nyans-kv-art {
    max-width: 100%;
    min-width: 0;
  }

  .nyans-kv-art img {
    width: min(100%, 320px);
    max-height: 230px;
  }

  .kv-copy {
    max-width: none;
    min-width: 0;
  }

  h1 {
    font-size: 30px;
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .kv h2 {
    font-size: 27px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .kv p {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .pixel-board {
    min-height: 170px;
    width: 100%;
    max-width: 260px;
    justify-self: start;
  }

  .pixel-board strong {
    font-size: 54px;
  }

  .first-guide {
    grid-template-columns: 1fr;
    margin: 16px 10px 0;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    gap: 10px;
  }

  .first-guide-head {
    padding: 4px 2px;
  }

  .first-guide-head h2 {
    font-size: 18px;
  }

  .first-guide-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .guide-action {
    min-height: 116px;
    padding: 13px 15px;
  }

  .guide-action strong {
    font-size: 14px;
  }

  .guide-action small {
    font-size: 12px;
  }

  .intro-section,
  .lineup-section,
  .record-section,
  .reading-section,
  .logic-section,
  .plans-section,
  .faq-section {
    padding: 44px 14px;
  }

  .section-title {
    margin-bottom: 22px;
  }

  .section-title h2 {
    font-size: 26px;
    overflow-wrap: anywhere;
  }

  .section-title p {
    font-size: 14px;
  }

  .intro-layout,
  .member-service,
  .logic-steps li {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding: 4px 0 4px 14px;
  }

  .intro-copy h3 {
    font-size: 19px;
    overflow-wrap: anywhere;
  }

  .intro-copy p {
    font-size: 14px;
  }

  .intro-note {
    padding: 18px;
  }

  .intro-note h3 {
    font-size: 18px;
  }

  .line-band {
    display: grid;
    margin: 0 12px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 20px;
  }

  .line-band h2 {
    font-size: 25px;
  }

  .line-band strong {
    justify-self: start;
    text-align: center;
  }

  .promo-rail {
    margin: 18px 0 0;
    padding: 0 16px;
    max-width: 100%;
    gap: 0; /* SPは矢印なし */
  }

  /* SP: バナー間に隙間を設けてpeek効果を強調 */
  .promo-track {
    gap: 10px;
  }

  .promo-banner {
    flex: 0 0 85%; /* SP: 右に次バナーが約15%＋gapで見える */
  }

  .promo-nav {
    display: none; /* SPは矢印非表示・スワイプ操作 */
  }

  .jackpot-bar {
    grid-template-columns: 108px 1fr 42px;
    margin-bottom: 36px;
  }

  .jackpot-main {
    padding: 12px;
  }

  .jackpot-main strong {
    font-size: 30px;
  }

  .race-ticket {
    grid-template-columns: 116px 1fr;
    max-width: 100%;
  }

  .ticket-stub {
    padding: 10px 8px;
  }

  .ticket-stub strong {
    font-size: 20px;
  }

  .ticket-body {
    padding: 16px 14px;
  }

  .ticket-body h3 {
    font-size: 20px;
  }

  .ev-box {
    justify-content: space-between;
  }

  .ev-box strong {
    font-size: 34px;
  }

  .ticket-meta {
    padding: 11px 14px;
    font-size: 13px;
  }

  .ticket-actions a {
    padding: 14px 8px;
    font-size: 15px;
  }

  .kpi-row,
  .mini-kpis,
  .record-policy {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .record-policy {
    grid-template-columns: repeat(2, 1fr);
  }

  .kpi {
    padding: 15px 5px 13px;
  }

  .kpi strong {
    font-size: 38px;
  }

  .kpi small {
    font-size: 18px;
  }

  .record-visual {
    grid-template-columns: 128px 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    max-width: 100%;
  }

  .donut {
    width: 118px;
    height: 118px;
  }

  .donut span {
    width: 70px;
    height: 70px;
    font-size: 11px;
  }

  .donut strong {
    font-size: 18px;
  }

  .legend {
    gap: 9px;
  }

  .legend div {
    grid-template-columns: 15px 1fr auto;
    gap: 8px;
  }

  .legend i {
    width: 15px;
    height: 15px;
  }

  .legend span {
    font-size: 13px;
  }

  .legend small {
    font-size: 11px;
  }

  .legend strong {
    font-size: 24px;
  }

  .mini-kpis div {
    padding: 12px 6px;
  }

  .mini-kpis strong {
    font-size: 24px;
  }

  .reading-grid,
  .service-notes {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .reading-card {
    min-height: 0;
    padding: 18px;
  }

  .reading-visual {
    min-height: 64px;
  }

  .reading-card h3 {
    font-size: 20px;
  }

  .reading-card p {
    font-size: 13px;
  }

  .cat-trio.small .cat-face {
    width: 42px;
    height: 46px;
  }

  .numbers {
    padding: 12px;
  }

  .numbers b {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .member-price {
    border-right: 0;
    border-bottom: 3px solid var(--border);
    padding: 22px;
  }

  .member-price strong {
    font-size: 42px;
  }

  .member-benefits li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 18px;
  }

  .service-notes a {
    padding: 14px 16px;
  }

  .site-footer {
    padding: 34px 14px 30px;
  }

  .footer-brand {
    margin-bottom: 24px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 18px;
  }

  .footer-columns h2 {
    font-size: 16px;
  }

  .footer-columns a {
    font-size: 13px;
  }

  .logic-hero {
    margin: 18px 10px 0;
    padding: 32px 20px;
  }

  .logic-hero p {
    font-size: 15px;
  }

  .logic-deep {
    padding: 38px 14px;
  }

  .logic-deep article {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .logic-deep article h2,
  .logic-deep article p {
    grid-column: auto;
  }

  .logic-deep article h2 {
    font-size: 22px;
  }

  .logic-return {
    margin: 0 14px 44px;
    padding: 22px;
  }

  .logic-return h2 {
    font-size: 23px;
  }

  .service-compare {
    grid-template-columns: 1fr;
    margin: 30px 14px 0;
  }

  .service-compare div {
    border-right: 0;
    border-bottom: 3px solid var(--border);
  }

  .service-compare div:nth-child(3) {
    border-bottom: 0;
  }

  .static-main {
    padding: 22px 14px 50px;
  }

  .static-hero {
    margin-bottom: 22px;
    padding: 30px 20px;
    border-radius: 12px;
  }

  .static-content {
    font-size: 15px;
  }

  .static-content .sn-page-lead {
    padding: 20px;
  }

  .static-content .sn-page-lead p {
    font-size: 16px;
  }

  .static-content h2,
  .static-content .sn-page-heading {
    margin-top: 36px;
    font-size: 24px;
  }

  .static-content ul,
  .static-content ol {
    padding: 18px 18px 18px 34px;
  }

  .static-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 38px;
    padding: 24px 20px;
  }

  .static-cta a {
    width: 100%;
  }

  .post-nav,
  .post-list {
    grid-template-columns: 1fr;
  }

  .post-card a {
    min-height: 0;
    padding: 22px;
  }
}

@media (max-width: 430px) {
  .kv-slide {
    min-height: 450px;
  }

  .site-header {
    grid-template-columns: 50px minmax(0, 1fr) 72px;
    gap: 4px;
  }

  .menu-button {
    width: 50px;
    min-width: 50px;
  }

  .login-button {
    width: 72px;
  }

  .brand-mark {
    font-size: 13px;
  }

  .brand-logo {
    max-width: min(150px, 42vw);
    max-height: 48px;
  }

  h1 {
    font-size: 28px;
  }

  .kv h2 {
    font-size: 25px;
  }

  .kpi-row,
  .mini-kpis {
    grid-template-columns: repeat(3, 1fr);
  }

  .kpi span,
  .mini-kpis span {
    font-size: 11px;
  }

  .kpi strong {
    font-size: 30px;
  }

  .kpi small {
    font-size: 14px;
  }

  .kpi em {
    font-size: 11px;
  }

  .race-ticket {
    grid-template-columns: 96px 1fr;
  }

  .ticket-stub strong {
    font-size: 18px;
  }
}
