@font-face {
  font-family: 'Tamanegi Geki';
  src: url('../fonts/tamanegi-geki.ttf') format('truetype');
  font-display: swap;
}

:root {
  --paper: #FFF1D6;
  --paper-hot: #FFE3AE;
  --ink: #1C0E00;
  --blaze: #FF4E00;
  --flame: #E60023;
  --sun: #FFC300;
  --pop: #12B0E8;
  --white: #FFFBEF;
  --f-impact: 'Anton', sans-serif;
  --f-pop: 'Bungee', sans-serif;
  --f-jp: 'Dela Gothic One', sans-serif;
  --f-gekiga: 'Tamanegi Geki', 'Dela Gothic One', sans-serif;
  --f-body: 'Noto Sans JP', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 700;
  line-height: 1.9;
  overflow-x: hidden;
  position: relative;
}

/* grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.2 0 0 0 0 0 0 0 0 0.1 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
}

.back-pill {
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 8px 14px 6px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 3px 0 rgba(28, 14, 0, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.back-pill:hover { transform: translateY(-2px); box-shadow: 0 5px 0 rgba(28, 14, 0, 0.25); }

.logo-pill {
  background: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 12px;
  padding: 7px 16px 5px;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  transform: rotate(-3deg);
  box-shadow: 4px 4px 0 var(--flame);
}
.logo-mark { font-family: var(--f-pop); color: var(--sun); font-size: 18px; letter-spacing: 0.02em; }
.logo-run { font-family: var(--f-pop); color: var(--blaze); font-size: 15px; }

.nav-pill {
  margin-left: auto;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-pill a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 13px;
}
.nav-pill a:hover { color: var(--blaze); }
.nav-dot { color: var(--blaze); font-weight: 900; }

.header-cta {
  background: var(--flame);
  border: 3px solid var(--ink);
  border-radius: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.4;
  padding: 6px 14px;
  text-align: center;
  transform: rotate(2deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.header-cta strong { display: block; font-size: 12px; font-family: var(--f-pop); font-weight: 400; }
.header-cta:hover { transform: rotate(2deg) translateY(2px); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 12%, var(--sun) 0%, var(--blaze) 42%, var(--flame) 100%);
  isolation: isolate;
}

.sunburst {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 180vmax;
  height: 180vmax;
  transform: translate(-50%, -50%);
  z-index: -1;
  background: repeating-conic-gradient(
    from 0deg at 50% 50%,
    rgba(255,255,255,0.16) 0deg 6deg,
    transparent 6deg 12deg);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.heat-lines {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: repeating-linear-gradient(
    -8deg, transparent 0 42px, rgba(255,195,0,0.10) 42px 46px);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  text-align: center;
  padding: 90px 20px clamp(260px, 44vw, 500px);
  z-index: 2;
}

.hero-kicker {
  display: inline-block;
  font-family: var(--f-pop);
  font-size: clamp(11px, 2.6vw, 15px);
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 5px 18px 3px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 18px;
}

.hero-title {
  line-height: 0.82;
  filter: drop-shadow(6px 6px 0 var(--ink));
}
.ht-line { display: block; }
.ht-line .c {
  font-family: var(--f-gekiga);
  font-style: normal;
  font-size: clamp(64px, 17vw, 188px);
  color: var(--white);
  -webkit-text-stroke: 1.5px var(--ink);
  paint-order: stroke fill;
  display: inline-block;
  line-height: 1;
}
.ht-crazy .c1 { color: var(--sun);   transform: rotate(-6deg); }
.ht-crazy .c2 { color: var(--white); transform: rotate(4deg) translateY(-6px); }
.ht-crazy .c3 { color: var(--pop);   transform: rotate(-3deg); }
.ht-crazy .c4 { color: var(--white); transform: rotate(6deg) translateY(-4px); }
.ht-crazy .c5 { color: var(--sun);   transform: rotate(-4deg); }
.ht-run { margin-top: 2px; }
.ht-run .c { color: var(--ink); -webkit-text-stroke: 2px var(--white); background: none; }
.ht-run .c6 { transform: rotate(-5deg); }
.ht-run .c7 { transform: rotate(4deg) translateY(-6px); }
.ht-run .c8 { transform: rotate(-3deg); }

.hero-jp {
  font-family: var(--f-jp);
  font-size: clamp(18px, 5vw, 34px);
  color: var(--ink);
  margin-top: 22px;
  text-shadow: 2px 2px 0 var(--sun);
}

.hero-badges { margin-top: 22px; }
.hb-date {
  display: inline-block;
  font-family: var(--f-impact);
  font-size: clamp(16px, 4.4vw, 30px);
  letter-spacing: 0.04em;
  color: var(--white);
  background: var(--ink);
  border: 3px solid var(--white);
  border-radius: 14px;
  padding: 8px 22px 6px;
  transform: rotate(-1.5deg);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.35);
}
.hb-date b { color: var(--sun); font-size: 1.35em; }
.hb-date small { font-size: 0.5em; color: var(--blaze); letter-spacing: 0.1em; }

.hb-place {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--f-jp);
  font-size: clamp(14px, 3.6vw, 22px);
  color: var(--ink);
  background: var(--sun);
  border: 3px solid var(--ink);
  border-radius: 14px;
  padding: 6px 20px;
  transform: rotate(1.5deg);
  box-shadow: 4px 4px 0 var(--ink);
}

.hero-rules {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.hr {
  font-family: var(--f-body);
  font-weight: 900;
  font-size: clamp(12px, 3.2vw, 16px);
  color: var(--ink);
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 7px 18px;
  box-shadow: 3px 3px 0 var(--ink);
}
.hr em { font-style: normal; font-family: var(--f-jp); color: var(--flame); font-size: 1.15em; }
.hr-start { transform: rotate(-2deg); }
.hr-stop { transform: rotate(2deg); }

/* speed lines behind the hero runner (manga 集中線) */
.speedlines {
  position: absolute;
  bottom: -8%;
  left: 50%;
  width: 130vmax;
  height: 130vmax;
  transform: translateX(-50%);
  z-index: 1;
  background: repeating-conic-gradient(
    from 90deg at 50% 100%,
    rgba(28,14,0,0.5) 0deg 1.1deg,
    transparent 1.1deg 4deg);
  mix-blend-mode: multiply;
  opacity: 0.55;
}

/* floating hero stickers (gekiga illustrations) */
.hero-sticker { position: absolute; width: clamp(64px, 12vw, 140px); z-index: 2; filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.35)); }
.st-fire-l { top: 18%; left: 4%; animation: float 3.2s ease-in-out infinite; }
.st-fire-r { top: 22%; right: 5%; animation: float 3.6s ease-in-out infinite reverse; }
.st-sun    { top: 9%; right: 12%; width: clamp(74px, 15vw, 168px); animation: bob 5s ease-in-out infinite; }
.st-hot    { bottom: 30%; left: 3%; width: clamp(70px, 14vw, 160px); animation: float 4s ease-in-out infinite; }
.st-sweat  { top: 42%; left: 2%; width: clamp(38px, 7vw, 70px); animation: float 2.8s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-16px) rotate(4deg); } }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* 犬種ポートレート（透過カットアウト） */
.hero-pin {
  position: absolute;
  width: clamp(70px, 12vw, 130px);
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.4));
  z-index: 2;
}
.pin-frenchie { top: 42%; right: 2%; transform: rotate(6deg); }
.pin-shiba { bottom: 22%; right: 6%; transform: rotate(-5deg); }

/* dramatic hero-anchor: 北斗の拳風の走るシルエット＋擬音 */
.hero-runner-wrap {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(240px, 42vw, 480px);
  z-index: 3;
  pointer-events: none;
}
.hero-runner {
  display: block;
  width: 100%;
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,0.45));
}
.sfx {
  position: absolute;
  font-family: var(--f-gekiga);
  -webkit-text-stroke: 2.5px var(--ink);
  paint-order: stroke fill;
  white-space: nowrap;
  z-index: 4;
}
.sfx-goo {
  top: -4%;
  left: -20%;
  font-size: clamp(22px, 4.4vw, 42px);
  color: var(--sun);
  transform: rotate(-8deg);
}
.sfx-doko {
  bottom: 6%;
  right: -24%;
  font-size: clamp(18px, 3.6vw, 34px);
  color: var(--flame);
  transform: rotate(6deg);
}

/* ---------- ticker ---------- */
.hazard {
  height: 12px;
  background: repeating-linear-gradient(
    -45deg, var(--ink) 0 16px, var(--sun) 16px 32px);
}
.ticker {
  overflow: hidden;
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  padding: 10px 0;
  white-space: nowrap;
}
.tk-a { background: var(--ink); color: var(--sun); }
.tk-b { background: var(--flame); color: var(--white); }
.ticker-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}
.ticker-track.rev { animation: marquee-rev 22s linear infinite; }
.ticker span {
  font-family: var(--f-pop), var(--f-jp);
  font-size: clamp(15px, 3.4vw, 24px);
  padding-right: 8px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ---------- message ---------- */
.message {
  position: relative;
  background: var(--paper-hot);
  padding: 74px 22px 84px;
  text-align: center;
  overflow: hidden;
}
.message::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(28,14,0,0.08) 1px, transparent 1.4px);
  background-size: 8px 8px; }
.message .msg-shout, .message .msg-body { position: relative; z-index: 1; }
.sec-label {
  display: inline-block;
  font-family: var(--f-pop);
  font-size: 13px;
  color: var(--white);
  background: var(--flame);
  border: 3px solid var(--ink);
  padding: 3px 16px 1px;
  border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 26px;
}
.sec-label.light { color: var(--ink); background: var(--sun); }

.msg-shout {
  font-family: var(--f-gekiga);
  line-height: 1.15;
  color: var(--ink);
}
.msg-shout .ms1 { font-size: clamp(24px, 6.4vw, 46px); }
.msg-shout .ms2 { font-size: clamp(28px, 7.4vw, 54px); }
.msg-shout .ms2 .q { color: var(--flame); font-size: 1.3em; }
.msg-shout .ms3 {
  font-size: clamp(34px, 9.5vw, 78px);
  color: var(--blaze);
  -webkit-text-stroke: 1.5px var(--ink);
  paint-order: stroke fill;
  margin-top: 10px;
  transform: rotate(-2deg);
}
.msg-shout .ms3 .hl { color: var(--sun); }

.msg-body {
  max-width: 640px;
  margin: 40px auto 0;
  font-size: clamp(14px, 3.6vw, 17px);
  font-weight: 700;
  line-height: 2;
}
.msg-body p + p { margin-top: 20px; }
.msg-body b { color: var(--flame); font-family: var(--f-jp); }

.msg-sticker {
  position: absolute;
  right: 4%;
  top: 6%;
  width: clamp(74px, 14vw, 150px);
  transform: rotate(12deg);
  animation: bob 4s ease-in-out infinite;
}

.msg-caution {
  position: absolute;
  left: 3%;
  bottom: 10%;
  width: clamp(56px, 11vw, 110px);
  transform: rotate(-10deg);
  animation: float 3s ease-in-out infinite;
}

/* ---------- about ---------- */
.about {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 78px 22px 88px;
  text-align: center;
  overflow: hidden;
}
.about::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1.4px);
  background-size: 8px 8px; }
.sec-title {
  position: relative;
  z-index: 1;
  font-family: var(--f-gekiga);
  font-size: clamp(26px, 6.6vw, 46px);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 42px;
}
.sec-title.light { color: var(--white); text-shadow: 3px 3px 0 var(--blaze); }

.about-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}
.about-card {
  background: var(--paper);
  color: var(--ink);
  border: 4px solid var(--white);
  border-radius: 8px;
  padding: 30px 18px 26px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.4);
  position: relative;
}
.ac-when   { transform: rotate(-2deg); }
.ac-start  { transform: rotate(1.5deg); }
.ac-finish { transform: rotate(-1deg); background: var(--sun); }
.about-card:hover { transform: rotate(0) translateY(-4px); }
.ac-emoji { width: 74px; margin-bottom: 8px; filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.2)); }
.ac-en {
  font-family: var(--f-pop);
  font-size: 15px;
  color: var(--flame);
  letter-spacing: 0.05em;
}
.ac-main {
  font-family: var(--f-jp);
  font-size: clamp(20px, 5vw, 28px);
  line-height: 1.2;
  margin: 6px 0 10px;
}
.ac-main small { font-size: 0.55em; }
.ac-sub { font-size: 12.5px; font-weight: 700; line-height: 1.6; }

.about-note {
  position: relative;
  z-index: 1;
  margin-top: 40px;
  font-size: clamp(13px, 3.2vw, 15px);
  font-weight: 900;
  color: var(--sun);
}
.about-note span { display: block; color: var(--white); font-weight: 700; margin-top: 4px; }

/* ---------- area ---------- */
.area {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 78px 22px 88px;
  text-align: center;
  overflow: hidden;
}
.area::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1.4px);
  background-size: 8px 8px; }
.area-lead {
  position: relative;
  z-index: 1;
  max-width: 460px;
  margin: -18px auto 44px;
  font-size: clamp(13px, 3.4vw, 15px);
  font-weight: 700;
  line-height: 1.9;
  color: var(--paper);
}
.area-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 940px;
  margin: 0 auto;
}
.area-card {
  background: var(--paper);
  color: var(--ink);
  border: 4px solid var(--white);
  border-radius: 8px;
  padding: 26px 16px 22px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.4);
}
.area-card:nth-child(1) { transform: rotate(-2deg); }
.area-card:nth-child(2) { transform: rotate(1.5deg); }
.area-card:nth-child(3) { transform: rotate(-1deg); }
.area-card:hover { transform: rotate(0) translateY(-4px); }
.area-card img { width: 96px; margin: 0 auto 10px; display: block; filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.2)); }
.area-en {
  font-family: var(--f-pop);
  font-size: 13px;
  color: var(--flame);
  letter-spacing: 0.05em;
}
.area-card h3 {
  font-family: var(--f-jp);
  font-size: clamp(15px, 3.6vw, 18px);
  line-height: 1.3;
  margin: 6px 0 8px;
}
.area-weight {
  display: inline-block;
  font-family: var(--f-pop);
  font-size: 14px;
  color: var(--ink);
  background: var(--sun);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 3px 16px 1px;
  margin-bottom: 10px;
}
.area-card p:last-child { font-size: 12.5px; font-weight: 700; line-height: 1.6; }
.area-note {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 34px auto 0;
  font-size: clamp(12.5px, 3.2vw, 14px);
  font-weight: 900;
  line-height: 1.8;
  color: var(--sun);
}
.area-note span { display: block; color: var(--paper); font-weight: 700; margin-top: 4px; }

/* ---------- rule ---------- */
.rule {
  position: relative;
  background: var(--paper);
  padding: 78px 22px 90px;
  text-align: center;
  overflow: hidden;
}
.rule::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(28,14,0,0.08) 1px, transparent 1.4px);
  background-size: 8px 8px; }
.rule-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.rule-card {
  background: var(--white);
  border: 5px solid var(--ink);
  border-radius: 6px;
  padding: 34px 22px 30px;
  text-align: center;
  box-shadow: 8px 8px 0 var(--ink);
  position: relative;
}
.rule-card:nth-child(1) { transform: rotate(-1.5deg); }
.rule-card:nth-child(2) { transform: rotate(1deg); }
.rule-card:nth-child(3) { transform: rotate(-1deg); }
.rule-card:hover { transform: rotate(0) translateY(-4px); }
.rule-no {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-pop);
  font-size: 12px;
  color: var(--white);
  background: var(--flame);
  border: 3px solid var(--ink);
  border-radius: 999px;
  padding: 4px 14px 2px;
  white-space: nowrap;
}
.rule-no span { color: var(--sun); margin-left: 6px; }
.rule-card img { width: 84px; margin: 8px auto 14px; display: block; filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.15)); }
.rule-card h3 {
  font-family: var(--f-jp);
  font-size: clamp(16px, 4vw, 20px);
  line-height: 1.4;
  margin-bottom: 12px;
}
.rule-card p { font-size: 13.5px; font-weight: 700; line-height: 1.9; }
.chip {
  display: inline-block;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 900;
  color: var(--white);
  background: var(--pop);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 2px 12px;
}

/* ---------- kokoroe（劇画調・白黒に赤の差し込みページ） ---------- */
.kokoroe {
  position: relative;
  background: var(--ink);
  padding: 76px 22px 88px;
  text-align: center;
  overflow: hidden;
}
.kokoroe::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1.4px);
  background-size: 8px 8px;
  pointer-events: none;
}
.kokoroe .sec-label {
  background: var(--flame);
  color: var(--white);
}
.kokoroe .sec-title {
  color: var(--white);
  text-shadow: 3px 3px 0 var(--flame);
}
.kokoroe-lead {
  position: relative;
  max-width: 560px;
  margin: -18px auto 44px;
  color: var(--paper);
  font-size: clamp(13px, 3.4vw, 15px);
  font-weight: 700;
  line-height: 1.9;
}
.kokoroe-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.kokoroe-card {
  background: var(--paper);
  border: 5px solid var(--white);
  border-radius: 6px;
  padding: 30px 20px 26px;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.5);
}
.kokoroe-card:nth-child(1) { transform: rotate(-1.5deg); }
.kokoroe-card:nth-child(2) { transform: rotate(1deg); }
.kokoroe-card:nth-child(3) { transform: rotate(-1.5deg); }
.kokoroe-card:hover { transform: rotate(0) translateY(-4px); }
.kokoroe-card img { width: 78px; margin: 0 auto 14px; display: block; filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.15)); }
.kokoroe-card h3 {
  font-family: var(--f-jp);
  font-size: clamp(16px, 4vw, 19px);
  color: var(--ink);
  margin-bottom: 10px;
}
.kokoroe-card p { font-size: 13px; font-weight: 700; line-height: 1.85; color: var(--ink); }

/* ---------- price ---------- */
.price {
  position: relative;
  background: var(--paper);
  padding: 78px 22px 90px;
  text-align: center;
  overflow: hidden;
}
.price::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(28,14,0,0.08) 1px, transparent 1.4px);
  background-size: 8px 8px; }
.price-lead {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: -18px auto 40px;
  font-size: clamp(13px, 3.4vw, 15px);
  font-weight: 700;
  line-height: 1.9;
}
.price-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 560px;
  margin: 0 auto;
}
.price-card {
  background: var(--white);
  border: 5px solid var(--ink);
  border-radius: 6px;
  padding: 30px 18px 26px;
  box-shadow: 8px 8px 0 var(--ink);
}
.price-card:nth-child(1) { transform: rotate(-1.5deg); }
.price-card--add { transform: rotate(1.5deg); background: var(--sun); }
.price-card:hover { transform: rotate(0) translateY(-4px); }
.price-en {
  font-family: var(--f-pop);
  font-size: 13px;
  color: var(--flame);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.price-yen {
  font-family: var(--f-gekiga);
  font-size: clamp(34px, 8vw, 54px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 10px;
}
.price-yen small { font-size: 0.4em; margin-left: 2px; }
.price-sub { font-size: 12.5px; font-weight: 700; line-height: 1.7; }

/* ---------- ninja（キッチンカー） / follow clouds ---------- */
.ninja {
  background: radial-gradient(120% 100% at 50% 0%, var(--blaze), var(--flame));
  padding: 80px 22px 92px;
  text-align: center;
}
.ninja-cloud, .follow-cloud {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 5px solid var(--ink);
  border-radius: 10px;
  padding: 44px 26px 40px;
  box-shadow: 10px 10px 0 var(--ink);
}
.rc-icon {
  position: absolute;
  top: -46px; right: -14px;
  width: 96px;
  transform: rotate(10deg);
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.4));
}
.ninja-en, .follow-en {
  font-family: var(--f-pop);
  font-size: 15px;
  color: var(--flame);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.ninja-hero {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 4px auto 10px;
  filter: drop-shadow(4px 5px 0 rgba(0,0,0,0.18));
}
.ninja-maybe {
  display: inline-block;
  font-family: var(--f-pop);
  font-size: clamp(14px, 3.8vw, 17px);
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  padding: 5px 20px 3px;
  margin-bottom: 14px;
  transform: rotate(-1.5deg);
}
.ninja-title {
  font-family: var(--f-gekiga);
  font-size: clamp(23px, 5.6vw, 36px);
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 18px;
}
.ninja-lead { font-size: 14px; font-weight: 700; line-height: 2; }
.ninja-lead b { color: var(--flame); }
.ninja-sun {
  font-size: clamp(14px, 3.8vw, 16px);
  font-weight: 900;
  line-height: 1.8;
  margin-top: 10px;
}
.ninja-sun em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--sun) 62%);
  padding: 0 2px;
}
.ninja-box {
  margin: 26px auto 0;
  max-width: 460px;
  /* ロゴ画像の地色が純黒なので、境目が出ないようボックスも #000 に揃える */
  background: #000;
  border-radius: 8px;
  padding: 24px 20px 22px;
}
.ninja-logo {
  display: block;
  width: 100%;
  max-width: 230px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 56%;
  margin: 0 auto 10px;
}
.ninja-desc {
  font-size: 13px;
  font-weight: 700;
  line-height: 2;
  color: var(--paper);
}
.ninja-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.ninja-photos figure { margin: 0; }
.ninja-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 6px;
}
.ninja-photos figcaption {
  margin-top: 7px;
  font-size: 11.5px;
  font-weight: 900;
  color: var(--sun);
}
.ninja-note {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  color: var(--ink);
  opacity: 0.75;
}

/* ---------- follow ---------- */
.follow {
  background: var(--sun);
  padding: 78px 22px 90px;
  text-align: center;
}
.follow-cloud p:not(.follow-en) { font-size: 15px; font-weight: 800; line-height: 1.9; margin-bottom: 24px; }

.btn-blast {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-pop);
  font-size: clamp(15px, 4vw, 20px);
  color: var(--white);
  text-decoration: none;
  background: var(--flame);
  border: 4px solid var(--ink);
  border-radius: 999px;
  padding: 12px 30px 10px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 0.1s;
}
.btn-blast:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.btn-blast .arrow { font-size: 1.2em; }

/* ---------- faq ---------- */
.access {
  position: relative;
  background: var(--paper);
  padding: 76px 22px 88px;
  text-align: center;
  overflow: hidden;
}
.access-card {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 34px 24px 30px;
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(-0.8deg);
}
.access-name {
  font-family: var(--f-gekiga);
  font-size: clamp(22px, 5.6vw, 36px);
  line-height: 1.3;
  color: var(--ink);
}
.access-addr {
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 15px;
  color: var(--ink);
  margin-top: 10px;
}
.access-note {
  font-family: var(--f-body);
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink);
  margin: 18px 0 24px;
}

.faq {
  position: relative;
  background: var(--paper-hot);
  padding: 76px 22px 88px;
  text-align: center;
  overflow: hidden;
}
.faq::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(28,14,0,0.08) 1px, transparent 1.4px);
  background-size: 8px 8px; }
.faq-pin {
  position: absolute;
  top: 12px;
  right: clamp(8px, 4vw, 56px);
  width: clamp(64px, 10vw, 100px);
  transform: rotate(8deg);
  filter: drop-shadow(3px 4px 0 rgba(0,0,0,0.25));
  z-index: 1;
}
.faq-list {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}
.faq details {
  background: var(--white);
  border: 4px solid var(--ink);
  border-radius: 6px;
  margin-bottom: 16px;
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-family: var(--f-body);
  font-weight: 900;
  font-size: 15px;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-impact);
  font-size: 26px;
  color: var(--flame);
}
.faq details[open] summary::after { content: '−'; }
.faq details p {
  padding: 0 22px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.95;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 54px 22px 40px;
}
.footer-logo {
  font-family: var(--f-pop);
  font-size: clamp(30px, 8vw, 52px);
  color: var(--sun);
  line-height: 1;
}
.footer-logo span { color: var(--blaze); }
.footer-info { font-family: var(--f-impact); font-size: 16px; letter-spacing: 0.04em; margin: 14px 0 20px; color: var(--white); }
.footer-brand { font-size: 13px; font-weight: 700; }
.footer-copy { font-size: 11px; font-weight: 700; opacity: 0.7; margin-top: 18px; }

/* ---------- float cta ---------- */
.float-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  text-decoration: none;
  background: var(--flame);
  color: var(--white);
  border: 4px solid var(--ink);
  border-radius: 999px;
  width: 74px; height: 74px;
  justify-content: center;
  box-shadow: 4px 4px 0 var(--ink);
  animation: bob 3s ease-in-out infinite;
}
.float-cta:hover { transform: translate(2px, 2px); }
.float-en { font-family: var(--f-pop); font-size: 10px; }
.float-ja { font-size: 10px; font-weight: 900; }
.float-cta .arrow { font-size: 14px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

.sp { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 720px) {
  .nav-pill { display: none; }
  .site-header { gap: 8px; }
  /* 短い文言のカードは2列＋3枚目フル幅でコンパクトに */
  .about-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
    gap: 14px;
  }
  .about-cards > :nth-child(3) {
    grid-column: 1 / -1;
  }
  /* 本文が長いカード・エリアも2列＋3枚目フル幅に揃える */
  .rule-list, .kokoroe-list, .area-cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 480px;
    gap: 14px;
  }
  .rule-list { gap: 28px 14px; }
  .rule-list > :nth-child(3),
  .kokoroe-list > :nth-child(3),
  .area-cards > :nth-child(3) {
    grid-column: 1 / -1;
  }
  /* 2列でも収まるよう、余白・装飾・画像を詰める */
  .area-card {
    padding: 20px 12px 18px;
    border-width: 3px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.4);
  }
  .area-card img { width: 72px; margin-bottom: 8px; }
  .area-card h3 { font-size: 15px; }
  .area-weight { font-size: 13px; padding: 3px 12px 1px; }
  .area-card p:last-child { font-size: 12px; }

  .rule-card {
    padding: 28px 12px 22px;
    border-width: 4px;
    box-shadow: 5px 5px 0 var(--ink);
  }
  .rule-card img { width: 64px; margin: 6px auto 10px; }
  .rule-card h3 { font-size: 15px; margin-bottom: 10px; }
  .rule-card p { font-size: 12.5px; line-height: 1.8; }
  .rule-no { font-size: 11px; padding: 3px 11px 1px; }

  .kokoroe-card {
    padding: 24px 12px 20px;
    border-width: 4px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
  }
  .kokoroe-card img { width: 62px; margin-bottom: 10px; }
  .kokoroe-card h3 { font-size: 15px; }
  .kokoroe-card p { font-size: 12.5px; line-height: 1.8; }
  .price-cards { max-width: 340px; gap: 14px; }
  .sp { display: inline; }
  .msg-sticker { top: 2%; width: 60px; }
  .msg-caution { display: none; }
  .st-sun { top: 9%; right: 8%; }
  .hero-inner { padding-top: 76px; }
  /* 応募ボタンが折り返して矢印が浮くのを防ぐ */
  .btn-blast { font-size: 15px; padding: 12px 20px 10px; }
  /* 見出しに犬が重ならないよう、コーナーの犬アイコンを小さく上へ */
  .rc-icon { width: 68px; top: -34px; right: -6px; }
}
