:root {
  --ink: #182329;
  --muted: #66737a;
  --paper: #fffaf0;
  --white: #ffffff;
  --cream: #fff3d7;
  --cream-2: #fff8ea;
  --blue: #7440e8;
  --blue-dark: #4b2f8f;
  --orange: #ff7a00;
  --orange-dark: #f05a00;
  --orange-light: #ffb000;
  --gold: #d7a943;
  --green: #19b98f;
  --line: #eadfc8;
  --shadow: 0 24px 70px rgba(33, 43, 48, 0.14);
  --radius: 8px;
  --orange: #ff6200;
  --orange-light: #ff9500;
  --purple: #7c3aed;
  --purple-light: #a855f7;
  --purple-dark: #4c1d95;
  --white: #ffffff;
  --ink: #16202a;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(141, 85, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #fffdf6 0%, #fff8ea 46%, #ffffff 100%);
  font-family:
    "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", system-ui,
    -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.75;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 68px;
  background: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(200,180,140,0.4);
  backdrop-filter: blur(16px);
}



.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 40px rgba(33, 43, 48, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  gap: 16px;
}

.brand {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--purple-dark);
}


.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 6px 12px rgba(33, 43, 48, 0.08));
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,98,0,0.32);
}


.btn-primary:hover { box-shadow: 0 14px 34px rgba(255,98,0,0.42); }


.btn-outline {
  border-color: var(--purple);
  color: var(--purple-dark);
  background: transparent;
}

.btn-outline:hover { background: rgba(124,58,237,0.06); }

.btn-large { min-height: 54px; padding: 14px 28px; font-size: 16px; }

.btn-white {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-dark);
}

.btn-white:hover {
  background: var(--white);
  box-shadow: 0 16px 34px rgba(33, 43, 48, 0.16);
}

.btn-large {
  min-height: 58px;
  padding: 16px 28px;
  font-size: 17px;
}

.web-link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.web-link:hover {
  color: var(--blue-dark);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

section {
  padding: 86px 0;
}

.label {
  margin: 0;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.18;
}

h3 {
  font-size: 23px;
  line-height: 1.35;
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  background: #fff8ee;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
}


.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  right: -150px;
  top: 48px;
  background: rgba(141, 85, 255, 0.28);
  filter: blur(3px);
}

.hero::after {
  width: 320px;
  height: 320px;
  left: 48%;
  bottom: -110px;
  background: rgba(255, 122, 0, 0.3);
  filter: blur(2px);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) brightness(1.05);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.1) brightness(1.05);
}



.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(100deg,
      rgba(255,248,238,0.92) 0%,
      rgba(255,248,238,0.82) 45%,
      rgba(255,248,238,0.32) 68%,
      rgba(255,248,238,0.04) 100%),
    linear-gradient(180deg,
      rgba(255,248,238,0.3) 0%,
      rgba(255,248,238,0.05) 60%,
      rgba(255,248,238,0.5) 100%);
}


/* Ambient blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.hero-blob--purple {
  width: 44vw;
  height: 44vw;
  right: -8vw;
  top: 6vh;
  background: rgba(124,58,237,0.18);
  filter: blur(60px);
}
.hero-blob--orange {
  width: 30vw;
  height: 30vw;
  right: 22vw;
  bottom: -8vw;
  background: rgba(255,98,0,0.2);
  filter: blur(50px);
}

.hero-type-bg {
  position: absolute;
  inset: 54px 0 auto;
  z-index: 1;
  display: grid;
  gap: 0;
  width: 100%;
  pointer-events: none;
  transform: rotate(-11deg);
}

.hero-type-bg span {
  display: block;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(100px, 15vw, 250px);
  line-height: 0.78;
  letter-spacing: 0.02em;
  white-space: nowrap;
  -webkit-text-stroke: 1.6px rgba(255, 255, 255, 0.46);
  text-shadow:
    0 10px 24px rgba(24, 35, 41, 0.12),
    0 0 18px rgba(255, 255, 255, 0.2);
  opacity: 0;
  transform: translateX(-28px);
  animation: heroBgTypeIn 760ms 160ms ease-out forwards;
}

.hero-type-bg span:nth-child(1) {
  margin-left: -14vw;
  font-size: clamp(70px, 10.5vw, 180px);
  opacity: 0;
  color: rgba(255, 255, 255, 0.07);
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.34);
  animation-delay: 80ms;
}

.hero-type-bg span:nth-child(2) {
  margin-left: 13vw;
  font-size: clamp(108px, 15.5vw, 260px);
  color: rgba(255, 122, 0, 0.13);
  -webkit-text-stroke-color: rgba(255, 122, 0, 0.48);
  animation-delay: 180ms;
}

.hero-type-bg span:nth-child(3) {
  margin-left: -10vw;
  font-size: clamp(136px, 19vw, 320px);
  color: rgba(116, 64, 232, 0.13);
  -webkit-text-stroke-color: rgba(116, 64, 232, 0.46);
  animation-delay: 280ms;
}

.hero-confetti {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.hero-confetti i {
  position: absolute;
  top: -12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.96;
  box-shadow:
    0 0 12px currentColor,
    0 0 24px rgba(255, 255, 255, 0.82);
  color: #ffffff;
  animation:
    confettiFall 5.2s linear infinite,
    confettiSparkle 720ms ease-in-out infinite alternate;
}

.hero-confetti i:nth-child(4n + 1) {
  background: #ff9a1f;
  color: #ff9a1f;
}

.hero-confetti i:nth-child(4n + 2) {
  background: #9d6bff;
  color: #9d6bff;
}

.hero-confetti i:nth-child(4n + 3) {
  background: #f5d16b;
  color: #f5d16b;
}

.hero-confetti i:nth-child(1) { left: 7%; animation-delay: 0.2s; }
.hero-confetti i:nth-child(2) { left: 13%; animation-delay: 1.5s; }
.hero-confetti i:nth-child(3) { left: 19%; animation-delay: 0.9s; }
.hero-confetti i:nth-child(4) { left: 27%; animation-delay: 2.1s; }
.hero-confetti i:nth-child(5) { left: 33%; animation-delay: 0.4s; }
.hero-confetti i:nth-child(6) { left: 41%; animation-delay: 2.8s; }
.hero-confetti i:nth-child(7) { left: 48%; animation-delay: 1.1s; }
.hero-confetti i:nth-child(8) { left: 56%; animation-delay: 3.1s; }
.hero-confetti i:nth-child(9) { left: 62%; animation-delay: 0.7s; }
.hero-confetti i:nth-child(10) { left: 69%; animation-delay: 2.4s; }
.hero-confetti i:nth-child(11) { left: 74%; animation-delay: 1.8s; }
.hero-confetti i:nth-child(12) { left: 81%; animation-delay: 0.1s; }
.hero-confetti i:nth-child(13) { left: 86%; animation-delay: 2.9s; }
.hero-confetti i:nth-child(14) { left: 91%; animation-delay: 1.2s; }
.hero-confetti i:nth-child(15) { left: 16%; animation-delay: 3.4s; }
.hero-confetti i:nth-child(16) { left: 38%; animation-delay: 4.1s; }
.hero-confetti i:nth-child(17) { left: 58%; animation-delay: 3.8s; }
.hero-confetti i:nth-child(18) { left: 78%; animation-delay: 4.5s; }
.hero-confetti i:nth-child(19) { left: 4%; animation-delay: 2.2s; width: 4px; height: 4px; }
.hero-confetti i:nth-child(20) { left: 11%; animation-delay: 3.6s; width: 7px; height: 7px; }
.hero-confetti i:nth-child(21) { left: 24%; animation-delay: 1.7s; width: 4px; height: 4px; }
.hero-confetti i:nth-child(22) { left: 31%; animation-delay: 4.8s; width: 6px; height: 6px; }
.hero-confetti i:nth-child(23) { left: 45%; animation-delay: 2.6s; width: 4px; height: 4px; }
.hero-confetti i:nth-child(24) { left: 51%; animation-delay: 5.2s; width: 7px; height: 7px; }
.hero-confetti i:nth-child(25) { left: 64%; animation-delay: 3.3s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(26) { left: 71%; animation-delay: 4.4s; width: 6px; height: 6px; }
.hero-confetti i:nth-child(27) { left: 83%; animation-delay: 2.7s; width: 4px; height: 4px; }
.hero-confetti i:nth-child(28) { left: 88%; animation-delay: 5.5s; width: 7px; height: 7px; }
.hero-confetti i:nth-child(29) { left: 94%; animation-delay: 3.9s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(30) { left: 54%; animation-delay: 0.3s; width: 6px; height: 6px; }
.hero-confetti i:nth-child(31) { left: 6%; animation-delay: 0.8s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(32) { left: 18%; animation-delay: 2.9s; width: 8px; height: 8px; }
.hero-confetti i:nth-child(33) { left: 29%; animation-delay: 1.3s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(34) { left: 36%; animation-delay: 3.7s; width: 7px; height: 7px; }
.hero-confetti i:nth-child(35) { left: 43%; animation-delay: 0.6s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(36) { left: 49%; animation-delay: 2.1s; width: 8px; height: 8px; }
.hero-confetti i:nth-child(37) { left: 57%; animation-delay: 1.0s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(38) { left: 66%; animation-delay: 3.2s; width: 7px; height: 7px; }
.hero-confetti i:nth-child(39) { left: 76%; animation-delay: 0.5s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(40) { left: 84%; animation-delay: 2.5s; width: 8px; height: 8px; }
.hero-confetti i:nth-child(41) { left: 90%; animation-delay: 1.6s; width: 5px; height: 5px; }
.hero-confetti i:nth-child(42) { left: 96%; animation-delay: 3.9s; width: 7px; height: 7px; }

.hero-inner {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 180px);
}


.hero-copy {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 820px;
  padding: 24px 0;
  isolation: isolate;
}

.hero-copy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-opening-mark {
  display: grid;
  gap: 70px;
  width: fit-content;
  padding: 0 0 8px;
}
.store-name {
  position: relative;
  z-index: 3;
  width: fit-content;
  border: 3px solid rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 12px 20px 10px;
  background: linear-gradient(135deg, rgba(75, 47, 143, 0.96), rgba(141, 85, 255, 0.96));
  box-shadow:
    0 14px 34px rgba(75, 47, 143, 0.28),
    0 0 22px rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-size: clamp(40px, 4.7vw, 76px);
  font-weight: 1000;
  line-height: 1.05;
  letter-spacing: 0;
  transform: none;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.18),
    0 0 18px rgba(255, 255, 255, 0.48);
  animation: heroStoreIn 620ms 240ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-date-badge {
  position: absolute;
  top: clamp(76px, 8vw, 110px);
  right: -4px;
  z-index: 20;
  background: var(--orange);
  color: var(--white);
  padding: 12px 36px 12px 28px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 14px 50%);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 32px rgba(255,98,0,0.38);
  animation: badgeSlideIn 600ms 400ms cubic-bezier(0.16,1,0.3,1) both;
}


.hero-date-badge .badge-date {
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: 0.03em;
}

.hero-date-badge .badge-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hero-date-badge .badge-year {
  font-size: clamp(11px, 1.1vw, 14px);
  font-weight: 900;
  opacity: 0.88;
  letter-spacing: 0.1em;
}
.hero-date-badge .badge-label {
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.08em;
  line-height: 1;
}

.renewal-badge {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 0;
  width: fit-content;
  margin-top: 44px;
  transform: rotate(-12deg);
  transform-origin: left center;
}
.renewal-badge span,
.renewal-badge strong {
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.renewal-badge span {
  display: block;
  color: #ff7a00;
  font-size: clamp(128px, 20vw, 342px);
  line-height: 0.68;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.52),
    0 18px 34px rgba(255, 122, 0, 0.28);
  animation: heroRenewalIn 620ms 430ms cubic-bezier(0.12, 0.98, 0.28, 1) both;
}

.renewal-badge strong {
  display: block;
  color: transparent;
  background: linear-gradient(135deg, #8d55ff 0%, #6b3bd8 34%, var(--blue-dark) 68%, #2a0f66 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(178px, 25vw, 430px);
  margin-top: -8px;
  line-height: 0.68;
  -webkit-text-stroke: 1.5px rgba(47, 18, 108, 0.44);
  text-shadow:
    0 6px 0 rgba(255, 255, 255, 0.26),
    0 22px 38px rgba(75, 47, 143, 0.38);
  animation: heroOpenIn 660ms 560ms cubic-bezier(0.12, 0.98, 0.28, 1) both;
}
.hero h1,
.hero-lead,
.hero-cta,
.hero-web {
  animation: heroCopyIn 680ms 760ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(14px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes slideInLeft {
  from { opacity:0; transform:translateX(-40px) skewX(-2deg); }
  to   { opacity:1; transform:translateX(0) skewX(-2deg); }
}
@keyframes slideInRight {
  from { opacity:0; transform:translateX(50px) skewX(-2deg); }
  to   { opacity:1; transform:translateX(0) skewX(-2deg); }
}
@keyframes badgeSlideIn {
  from { opacity:0; transform:translateX(60px); }
  to   { opacity:1; transform:translateX(0); }
}
@keyframes cFall {
  0%   { opacity:0; transform:translate3d(0,-10px,0) rotate(0deg); }
  8%   { opacity:1; }
  100% { opacity:0; transform:translate3d(30px,110vh,0) rotate(400deg); }
}
@keyframes cSpark {
  from { filter:brightness(0.9); opacity:0.5; }
  to   { filter:brightness(2.0); opacity:1; }
}


.hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 1000;
  line-height: 1.02;
  color: #17242a;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 10px rgba(255, 255, 255, 0.78),
    0 12px 30px rgba(24, 35, 41, 0.22);
}

.hero-title-line {
  display: inline-block;
  white-space: nowrap;
}

.hero-lead {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.76);
  color: #17242a;
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(24, 35, 41, 0.14);
  backdrop-filter: blur(8px);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-cta,
.cta-row,
.final-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-web {
  width: fit-content;
}

.campaign-kicker {
  width: fit-content;
  border-radius: 999px;
  padding: 6px 12px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 1000;
}

.benefit {
  position: relative;
  z-index: 2;
  margin-top: -48px;
  padding: 0 0 64px;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 122, 0, 0.18), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #fff1d2 100%);
}

.benefit > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.benefit .container {
  width: 100%;
}

.benefit-ribbon {
  width: 100%;
  padding: 20px 18px 18px;
  background: var(--orange);
  color: var(--white);
  font-size: clamp(20px, 4.5vw, 42px);
  font-weight: 1000;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 -12px 34px rgba(33, 43, 48, 0.12);
}

.benefit .section-head {
  position: relative;
  padding-top: 46px;
  padding-right: 20px;
  padding-left: 20px;
  max-width: none;
}

.benefit .section-head::before {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  border-radius: 999px;
  padding: 8px 16px;
  background: var(--orange);
  color: var(--white);
  content: "今だけの最重要特典";
  font-size: 14px;
  font-weight: 1000;
}

.benefit #benefit-title {
  color: var(--orange-dark);
  font-size: clamp(38px, 5.2vw, 68px);
  text-shadow: 0 8px 24px rgba(255, 122, 0, 0.14);
}

.benefit-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.benefit-visual {
  display: grid;
  place-items: center;
  min-height: 420px;
  border-top: 3px dashed rgba(255, 122, 0, 0.34);
  border-bottom: 3px dashed rgba(255, 122, 0, 0.34);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.16), rgba(141, 85, 255, 0.12)),
    var(--cream-2);
  text-align: center;
}

.benefit-visual p {
  color: var(--orange-dark);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 1000;
  line-height: 1.1;
}

.benefit-visual span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.benefit-cta {
  justify-content: center;
  gap: 12px;
  width: min(760px, calc(100% - 40px));
  margin: 24px auto 0;
  padding: 0;
}

.benefit-list,
.check-list,
.school-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li,
.check-list li,
.school-points li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 850;
}

.benefit-list li::before,
.check-list li::before,
.school-points li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--green);
  content: "✓";
  font-weight: 1000;
}

.note {
  color: var(--muted);
  font-size: 13px;
}

.renewal-summary {
  padding-top: 88px;
  background:
    linear-gradient(180deg, var(--cream-2), var(--white));
}

.renewal-summary .section-head {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.renewal-summary #summary-title {
  text-wrap: balance;
}

.keep-together {
  white-space: nowrap;
}

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

.renewal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(33, 43, 48, 0.08);
}

.renewal-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #8d55ff;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(141, 85, 255, 0.28);
  font-weight: 1000;
}

.renewal-card h3 {
  margin-bottom: 10px;
}

.renewal-card p {
  color: var(--muted);
}

.renewal-card-photo {
  min-height: 280px;
  display: grid;
  grid-template-rows: 48px auto minmax(3.6em, auto);
  align-content: end;
  gap: 10px;
  color: #3a286f;
  border: 0;
  background: #fffaf0;
}

.renewal-card-photo img {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(1.14) saturate(1.12);
}

.renewal-card-photo::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.02) 10%, rgba(255, 250, 240, 0.12) 42%, rgba(255, 250, 240, 0.88)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.02));
}

.renewal-card-photo span,
.renewal-card-photo h3,
.renewal-card-photo p,
.renewal-card-machines span,
.renewal-card-machines h3,
.renewal-card-machines p {
  position: relative;
  z-index: 2;
}

.renewal-card-photo span,
.renewal-card-machines span {
  margin-bottom: 0;
}

.renewal-card-photo h3,
.renewal-card-machines h3 {
  margin-bottom: 0;
}

.renewal-card-photo p,
.renewal-card-machines p {
  min-height: 3.6em;
  color: #514b61;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.renewal-card-photo h3,
.renewal-card-machines h3 {
  color: #3a286f;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.renewal-card-machines {
  min-height: 280px;
  display: grid;
  grid-template-rows: 48px auto minmax(3.6em, auto);
  align-content: end;
  gap: 10px;
  border: 0;
  padding: 28px;
  background: #fffaf0;
  color: #3a286f;
}

.machine-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 3px;
  background: rgba(141, 85, 255, 0.56);
}

.machine-grid img {
  width: 100%;
  height: 100%;
  padding: 8px;
  background: #ffffff;
  object-fit: contain;
  filter: brightness(1.08) saturate(1.06);
}

.renewal-card-machines::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.02) 10%, rgba(255, 250, 240, 0.14) 42%, rgba(255, 250, 240, 0.9)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.02));
}

.renewal-card-machines h3 {
  max-width: 330px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(18px, 2.3vw, 24px);
  line-height: 1.35;
  text-align: left;
}

.school-inline {
  display: grid;
  gap: 22px;
  margin-top: 54px;
  padding: 58px 0 0;
  background: transparent;
  box-shadow: none;
}

.school-inline #school-title {
  white-space: nowrap;
}

.school-title-line {
  display: inline;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 48px;
}

.image-card {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  margin: 0;
  border-radius: 20px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.image-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 1000;
}

.school-offer {
  display: grid;
  gap: 4px;
  width: fit-content;
  padding: 0;
  background: transparent;
  color: var(--blue-dark);
  font-weight: 1000;
  line-height: 1.28;
  box-shadow: none;
}

.school-offer-en,
.school-offer-sub {
  color: var(--blue-dark);
  font-size: clamp(13px, 1.8vw, 18px);
  letter-spacing: 0.02em;
}

.school-offer strong {
  color: var(--orange);
  font-size: clamp(24px, 4.4vw, 44px);
  line-height: 1.12;
}

@media (min-width: 881px) {
  .school-inline {
    justify-items: center;
    text-align: center;
  }

  .school-inline .lead {
    max-width: 860px;
  }

  .school-offer {
    justify-self: center;
  }

  .school-points {
    width: fit-content;
    justify-self: center;
    text-align: left;
  }

  .school-inline .cta-row {
    gap: 24px;
    justify-content: center;
    margin-top: 10px;
  }

  .school-inline .cta-row .btn {
    min-width: 270px;
    min-height: 66px;
    padding: 16px 36px;
    font-size: 18px;
  }
}

.facility {
  background: var(--white);
}

.facility-reel {
  overflow: hidden;
  width: 100%;
  padding: 8px 0 18px;
}

.facility-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: facilitySlide 24s linear infinite;
}

.facility-card {
  position: relative;
  flex: 0 0 270px;
  overflow: hidden;
  height: 330px;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 16px 40px rgba(33, 43, 48, 0.08);
}

.facility-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44));
}

.facility-card h3 {
  position: absolute;
  left: 18px;
  bottom: 14px;
  z-index: 1;
  color: var(--white);
  font-size: 20px;
}

.price {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.14), rgba(141, 85, 255, 0.12)),
    var(--cream-2);
}

.price-table {
  display: grid;
  gap: 14px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px 24px;
  border-radius: 16px;
  padding: 20px 22px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(33, 43, 48, 0.08);
}

.price-row span {
  min-width: 0;
  color: var(--muted);
  font-weight: 900;
  line-height: 1.5;
}

.price-row strong {
  min-width: max-content;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.25;
  text-align: right;
}

.price-note {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.55;
  text-align: right;
}

.price-note strong {
  display: inline-block;
  margin-left: 0.35em;
  color: var(--ink);
}

.price-row.highlight,
.price-row.highlight ~ .price-row {
  background:
    linear-gradient(135deg, var(--orange-light), var(--orange));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(255, 122, 0, 0.22);
}

.price-row.highlight span,
.price-row.highlight ~ .price-row span {
  color: rgba(255, 255, 255, 0.84);
}

.price-row.highlight strong,
.price-row.highlight ~ .price-row strong {
  color: var(--white);
  text-shadow: 0 1px 0 rgba(120, 54, 0, 0.18);
}

.final-cta {
  padding: 96px 0 126px;
  background:
    linear-gradient(135deg, rgba(92, 48, 166, 0.9), rgba(255, 122, 0, 0.84)),
    url("images/nightgaikan.jpg")center/cover;
  color: var(--white);
}

.final-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.final-inner .label,
.final-inner p {
  color: rgba(255, 255, 255, 0.9);
}

.final-inner p {
  max-width: 720px;
}

.final-web {
  color: rgba(255, 255, 255, 0.9);
}

.mobile-sticky {
  position: fixed;
  inset: auto 0 0;
  z-index: 60;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 -12px 34px rgba(33, 43, 48, 0.14);
  backdrop-filter: blur(16px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-opening-mark {
  gap: 56px;
}

.store-name {
  margin-top: -10px;
  margin-bottom: 10px;
  padding: 10px 15px 9px;
  font-size: 36px;
}

.hero-date-badge {
  position: fixed;
  top: 80px;
  right: auto;
  left: 318px;
  z-index: 100;
  width: 82px;
  height: 82px;
  padding: 7px;
  font-size: 20px;
  border-width: 2px;
}

.renewal-badge {
  margin-top: 38px;
}

.renewal-badge span {
  font-size: 104px;
}

.renewal-badge strong {
  font-size: 158px;
}

.hero h1 {
  margin-top: 4px;
  font-size: clamp(36px, 10vw, 48px);
}
  .site-header {
    height: 66px;
  }

  .header-inner {
    width: min(100% - 24px, 720px);
  }

  .brand {
    width: 200px;
    height: 80px;
  }

  .header-actions .btn,
  .header-actions .web-link {
    display: none;
  }

  .hero {
    min-height: 100svh;
    padding: 64px 0 76px;
    background: #fffaf0;
  }

  .hero-type-bg {
    inset: 72px 0 auto;
    gap: 4px;
    transform: rotate(-12deg);
  }

  .hero-type-bg span {
    font-size: 104px;
    -webkit-text-stroke-width: 1.25px;
  }

  .hero-type-bg span:nth-child(1) {
    font-size: 78px;
  }

  .hero-type-bg span:nth-child(3) {
    font-size: 130px;
  }

  .hero-bg {
    inset: 0;
    height: auto;
    border-radius: 0;
    opacity: 1;
    box-shadow: none;
  }

  .hero-bg img {
    height: calc(100% + 76px);
    object-position: center top;
    transform: translateY(-76px);
  }

  .hero-bg::after {
    background: none;
  }

  .hero-inner,
  .benefit-panel,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: calc(100svh - 170px);
    align-items: end;
  }

  .hero-copy {
    border-radius: 0;
    padding: 24px 0 12px;
    background: transparent;
    backdrop-filter: none;
  }

  .hero-copy::before {
    inset: -16px -18px -18px -18px;
    border-radius: 22px;
    background: none;
  }

  .renewal-cards {
    grid-template-columns: 1fr;
  }

  .image-card,
  .benefit-visual {
    min-height: 340px;
  }

  section {
    padding: 68px 0;
  }

  .mobile-sticky {
    display: grid;
  }

  .facility-track {
    gap: 12px;
    animation-duration: 20s;
  }

  .facility-card {
    flex-basis: 200px;
    height: 285px;
  }

  @keyframes facilitySlide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-50% - 6px));
    }
  }
}

@media (max-width: 560px) {
  .container,
  .hero-inner {
    width: min(100% - 28px, 520px);
  }

  .store-name {
    max-width: calc(100vw - 32px);
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 31px;
  }

  .hero-date-badge {
    top: 80px;
    right: auto;
    left: 318px;
    width: 70px;
    height: 70px;
    font-size: 17px;
  }

  .renewal-badge span {
    font-size: 90px;
  }

  .renewal-badge strong {
    font-size: 136px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.2vw, 42px);
  }

  .hero-cta .btn,
  .cta-row .btn,
  .final-buttons .btn {
    width: 100%;
  }

  .renewal-card {
    padding: 24px;
  }

  .renewal-card-photo,
  .renewal-card-machines {
    height: 330px;
    min-height: 330px;
  }

  .renewal-card-machines h3 {
    max-width: 300px;
    padding: 0;
    font-size: 19px;
  }

  .price-row {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .price-row strong {
    min-width: 0;
    text-align: left;
  }

  .price-note {
    text-align: left;
  }

  #price-title {
    font-size: clamp(23px, 6.2vw, 34px);
    line-height: 1.2;
    white-space: nowrap;
  }

  .mobile-sticky .btn {
    min-height: 48px;
    padding: 10px 8px;
    font-size: 14px;
  }
}

@keyframes facilitySlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Rebuilt first view: renewal event visual system */
.hero {
  min-height: 100vh;
  padding: 118px 0 84px;
  background: #fff7ea;
}

.hero::before {
  width: 46vw;
  height: 46vw;
  top: 92px;
  right: -12vw;
  background: rgba(141, 85, 255, 0.2);
  filter: blur(1px);
}

.hero::after {
  top: 96px;
  right: clamp(18px, 3vw, 48px);
  left: auto;
  bottom: auto;
  z-index: 7;
  display: grid;
  place-items: center;
  width: clamp(94px, 8vw, 126px);
  height: clamp(94px, 8vw, 126px);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  padding: 10px;
  background:
    radial-gradient(circle at 30% 22%, #ffffff 0%, #fff3bf 34%, var(--orange-light) 68%, var(--orange) 100%);
  color: var(--blue-dark);
  content: "2026\A 7.17\A OPEN";
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 0.84;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: pre;
  box-shadow:
    0 18px 42px rgba(255, 122, 0, 0.26),
    0 0 0 7px rgba(255, 255, 255, 0.28);
  filter: none;
  transform: rotate(8deg);
}

.hero-bg img {
  filter: saturate(1.18) contrast(1.06) brightness(1.04);
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(255, 248, 234, 0.54) 0%, rgba(255, 248, 234, 0.12) 48%, rgba(255, 248, 234, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 248, 234, 0.1));
}

.hero-type-bg {
  inset: 106px 0 auto;
  z-index: 1;
  gap: 2px;
  transform: rotate(-8deg);
}

.hero-type-bg span {
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(96px, 12vw, 190px);
  line-height: 0.82;
  -webkit-text-stroke: 1.2px rgba(255, 255, 255, 0.34);
  text-shadow: none;
}

.hero-type-bg span:nth-child(1) {
  margin-left: -8vw;
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(84px, 10vw, 160px);
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.3);
}

.hero-type-bg span:nth-child(2) {
  margin-left: 18vw;
  color: rgba(255, 122, 0, 0.1);
  font-size: clamp(108px, 13vw, 210px);
  -webkit-text-stroke-color: rgba(255, 122, 0, 0.32);
}

.hero-type-bg span:nth-child(3) {
  margin-left: -5vw;
  color: rgba(141, 85, 255, 0.09);
  font-size: clamp(118px, 14vw, 230px);
  -webkit-text-stroke-color: rgba(141, 85, 255, 0.3);
}

.hero-inner {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 44px));
  min-height: calc(100vh - 220px);
  align-items: center;
}

.hero-copy {
  gap: 20px;
  max-width: 930px;
  padding: 0;
}

.hero-opening-mark {
  display: grid;
  gap: 14px;
  width: min-content;
  padding: 0;
}

.store-name {
  border: 0;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  color: #17242a;
  font-size: clamp(24px, 2.5vw, 40px);
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 16px rgba(255, 255, 255, 0.62);
}

.store-name::after {
  display: block;
  width: 100%;
  height: 5px;
  margin-top: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  content: "";
}

.hero-date-badge {
  position: absolute;
  top: 96px;
  right: clamp(18px, 3vw, 48px);
  z-index: 8;
  width: clamp(94px, 8vw, 126px);
  height: clamp(94px, 8vw, 126px);
  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, #ffffff 0%, #fff3bf 34%, var(--orange-light) 68%, var(--orange) 100%);
  color: var(--blue-dark);
  box-shadow:
    0 18px 42px rgba(255, 122, 0, 0.26),
    0 0 0 7px rgba(255, 255, 255, 0.28);
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 0.84;
  letter-spacing: 0.03em;
  text-align: center;
  transform: rotate(8deg);
}

.renewal-badge {
  display: grid;
  gap: 0;
  width: fit-content;
  margin: 0;
  transform: rotate(-8deg);
  transform-origin: left center;
}

.renewal-badge span,
.renewal-badge strong {
  letter-spacing: 0;
}

.renewal-badge span {
  color: var(--orange);
  font-size: clamp(142px, 18vw, 290px);
  line-height: 0.72;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.55),
    0 20px 34px rgba(255, 122, 0, 0.24);
}

.renewal-badge strong {
  margin-top: -0.08em;
  background: linear-gradient(135deg, #9c74ff 0%, #7147dc 34%, var(--blue-dark) 70%, #2b0f68 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(47, 18, 108, 0.22);
  font-size: clamp(184px, 24vw, 390px);
  line-height: 0.68;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.34),
    0 18px 36px rgba(75, 47, 143, 0.28);
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.8vw, 82px);
  line-height: 1.04;
  color: #17242a;
}

.hero-lead {
  width: auto;
  max-width: 560px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: none;
  color: #17242a;
  font-size: clamp(17px, 1.9vw, 25px);
  font-weight: 1000;
  box-shadow: none;
  backdrop-filter: none;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 0 12px rgba(255, 255, 255, 0.86);
}
/* CTAs */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  opacity: 0;
  animation: fadeUp 600ms 780ms ease-out forwards;
}
/* .hero-cta {
  gap: 14px;
  padding-top: 4px;
} */
/* Web link */
.hero-web {
  margin-top: 14px;
  display: block;
  width: fit-content;
  font-size: 13px;
  font-weight: 800;
  color: #5a5a6e;
  text-decoration: underline;
  text-underline-offset: 4px;
  opacity: 0;
  animation: fadeUp 600ms 840ms ease-out forwards;
}

.hero-web:hover { color: var(--purple-dark); }


@media (max-width: 920px) {
  

  .hero-bg img {
    height: 100%;
    object-position: center top;
    transform: none;
  }

  

  .hero-type-bg {
    inset: 94px 0 auto;
    transform: rotate(-8deg);
  }

  .hero-type-bg span {
    font-size: 72px;
    -webkit-text-stroke-width: 1px;
  }

  .hero-type-bg span:nth-child(1) {
    font-size: 60px;
  }

  .hero-type-bg span:nth-child(2) {
    font-size: 78px;
  }

  .hero-type-bg span:nth-child(3) {
    font-size: 88px;
  }

  

  .hero::after {
    top: 76px;
    right: 8px;
    width: 68px;
    height: 68px;
    border-width: 2px;
    padding: 6px;
    font-size: 17px;
  }

  .hero-inner {
    width: min(100% - 30px, 540px);
    min-height: calc(100svh - 160px);
    align-items: center;
  }

  .hero-copy {
    gap: 16px;
    padding: 0 0 12px;
  }

  .hero-opening-mark {
    gap: 12px;
  }

  .store-name {
    max-width: none;
    margin: 0;
    font-size: 25px;
  }

  .store-name::after {
    height: 4px;
    margin-top: 7px;
  }

  .renewal-badge {
    margin-top: 0;
    transform: rotate(-7deg);
  }

  .renewal-badge span {
    font-size: clamp(82px, 23vw, 102px);
  }

  .renewal-badge strong {
    font-size: clamp(112px, 31vw, 138px);
  }

  .hero h1 {
    margin-top: 0;
    font-size: clamp(35px, 10vw, 46px);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .hero-date-badge {
    right: 8px;
    width: 66px;
    height: 66px;
    font-size: 17px;
  }

  .hero::after {
    right: 6px;
    width: 64px;
    height: 64px;
    font-size: 16px;
  }

  .renewal-badge span {
    font-size: 84px;
  }

  .renewal-badge strong {
    font-size: 116px;
  }
}

/* Final FV reset: clearer event hierarchy */
.hero {
  overflow: hidden;
  padding: 112px 0 78px;
  background: #fff7ea;
}

.hero::after {
  display: none;
  content: "";
}

.hero-bg::after {
  background: none;
}

.hero-bg img {
  filter: saturate(1.22) contrast(1.08) brightness(1.03);
}

.hero-type-bg {
  inset: 118px -10vw auto;
  z-index: 1;
  opacity: 0.92;
  transform: rotate(-8deg);
}

.hero-type-bg span {
  line-height: 0.78;
  color: rgba(255, 255, 255, 0.12);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.46);
  text-shadow:
    0 12px 32px rgba(75, 47, 143, 0.12),
    0 0 18px rgba(255, 255, 255, 0.16);
}

.hero-type-bg span:nth-child(1) {
  margin-left: -12vw;
  font-size: clamp(88px, 11vw, 170px);
  color: rgba(255, 255, 255, 0.1);
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.42);
}

.hero-type-bg span:nth-child(2) {
  margin-left: 12vw;
  font-size: clamp(120px, 14vw, 230px);
  color: rgba(255, 122, 0, 0.13);
  -webkit-text-stroke-color: rgba(255, 122, 0, 0.34);
}

.hero-type-bg span:nth-child(3) {
  margin-left: -4vw;
  font-size: clamp(138px, 16vw, 270px);
  color: rgba(116, 64, 232, 0.14);
  -webkit-text-stroke-color: rgba(116, 64, 232, 0.34);
}
.hero-confetti {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
/* .hero-confetti {
  z-index: 6;
  opacity: 1;
} */
.hero-confetti i {
  position: absolute;
  top: -10px;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  opacity: 0;
  animation: cFall 5.5s linear infinite, cSpark 800ms ease-in-out infinite alternate;
}



.hero-confetti i:nth-child(3n)   { background: var(--orange); border-radius: 50%; }
.hero-confetti i:nth-child(3n+1) { background: var(--purple-light); }
.hero-confetti i:nth-child(3n+2) { background: #ffd020; border-radius: 50%; }

/* confetti positions */
.hero-confetti i:nth-child(1)  { left:5%;  animation-delay:0.1s; width:5px; height:5px; }
.hero-confetti i:nth-child(2)  { left:11%; animation-delay:1.4s; width:7px; height:7px; }
.hero-confetti i:nth-child(3)  { left:18%; animation-delay:0.8s; width:5px; height:5px; }
.hero-confetti i:nth-child(4)  { left:24%; animation-delay:2.2s; width:6px; height:6px; }
.hero-confetti i:nth-child(5)  { left:31%; animation-delay:0.3s; width:5px; height:5px; }
.hero-confetti i:nth-child(6)  { left:38%; animation-delay:2.9s; }
.hero-confetti i:nth-child(7)  { left:45%; animation-delay:1.0s; width:5px; height:5px; }
.hero-confetti i:nth-child(8)  { left:52%; animation-delay:3.2s; width:8px; height:8px; }
.hero-confetti i:nth-child(9)  { left:59%; animation-delay:0.6s; width:5px; height:5px; }
.hero-confetti i:nth-child(10) { left:66%; animation-delay:2.5s; }
.hero-confetti i:nth-child(11) { left:72%; animation-delay:1.7s; width:5px; height:5px; }
.hero-confetti i:nth-child(12) { left:79%; animation-delay:0.2s; width:7px; height:7px; }
.hero-confetti i:nth-child(13) { left:85%; animation-delay:3.0s; width:5px; height:5px; }
.hero-confetti i:nth-child(14) { left:91%; animation-delay:1.3s; }
.hero-confetti i:nth-child(15) { left:8%;  animation-delay:3.5s; width:5px; height:5px; }
.hero-confetti i:nth-child(16) { left:35%; animation-delay:4.2s; }
.hero-confetti i:nth-child(17) { left:57%; animation-delay:3.8s; width:5px; height:5px; }
.hero-confetti i:nth-child(18) { left:76%; animation-delay:4.6s; }
.hero-confetti i:nth-child(19) { left:2%;  animation-delay:2.0s; width:4px; height:4px; }
.hero-confetti i:nth-child(20) { left:96%; animation-delay:4.0s; width:5px; height:5px; }

.hero > .hero-date-badge {
  position: absolute !important;
  top: 94px !important;
  right: clamp(20px, 3vw, 54px) !important;
  left: auto !important;
  z-index: 20 !important;
  display: grid !important;
  place-items: center;
  width: clamp(94px, 8vw, 126px);
  height: clamp(94px, 8vw, 126px);
  margin: 0;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  padding: 10px;
  background:
    radial-gradient(circle at 32% 24%, #ffffff 0%, #fff0b8 28%, #ffb000 58%, #ff7a00 100%);
  color: #4b2f8f;
  box-shadow:
    0 18px 42px rgba(255, 122, 0, 0.28),
    0 0 0 8px rgba(255, 255, 255, 0.26);
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(25px, 2.45vw, 36px);
  line-height: 0.84;
  letter-spacing: 0.03em;
  text-align: center;
  opacity: 1 !important;
  visibility: visible !important;
  transform: rotate(8deg);
  animation: heroDatePop 620ms cubic-bezier(0.2, 0.9, 0.2, 1.2) 420ms both;
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 180px);
}


.hero-copy {
  display: grid;
  gap: 0;
  max-width: 900px;
}


.hero-opening-mark {
  gap: 12px;
  width: fit-content;
}

.store-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 900;
  color: var(--purple-dark);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeUp 600ms 100ms ease-out forwards;
}

.store-name::before {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--purple-light));
  flex-shrink: 0;
}


/* RENEWAL lettering */
.renewal-word {
  display: block;
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0.01em;
  color: var(--orange);
  font-size: clamp(100px, 16vw, 250px);
  text-shadow:
    0 4px 0 rgba(255,255,255,0.6),
    0 16px 32px rgba(255,98,0,0.2);
  opacity: 0;
  transform: translateX(-40px) skewX(-2deg);
  animation: slideInLeft 650ms 220ms cubic-bezier(0.16,1,0.3,1) forwards;
  margin-top: 12px;
}

/* OPEN lettering */
.open-word {
  display: block;
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0.01em;
  font-size: clamp(126px, 20vw, 320px);
  background: linear-gradient(130deg, #a855f7 0%, #7c3aed 38%, #4c1d95 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  text-shadow: none;
  filter: drop-shadow(0 6px 0 rgba(255,255,255,0.4)) drop-shadow(0 18px 28px rgba(76,29,149,0.22));
  opacity: 0;
  transform: translateX(50px) skewX(-2deg);
  animation: slideInRight 680ms 380ms cubic-bezier(0.16,1,0.3,1) forwards;
  margin-top: -0.06em;
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  opacity: 0;
  animation: fadeUp 600ms 600ms ease-out forwards;
}
.hero-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  max-width: 120px;
  background: linear-gradient(90deg, rgba(200,150,80,0.5), transparent);
}
.renewal-badge {
  transform: rotate(-8deg);
}

.renewal-badge span,
.renewal-badge strong {
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  letter-spacing: -0.01em;
}

.renewal-badge span {
  color: #ff7a00;
  font-size: clamp(150px, 19vw, 310px);
  line-height: 0.7;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.58),
    0 18px 34px rgba(255, 122, 0, 0.24);
}

.renewal-badge strong {
  margin-top: -0.1em;
  background: linear-gradient(135deg, #2f126c 0%, #7440e8 42%, #b990ff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(47, 18, 108, 0.18);
  font-size: clamp(198px, 25vw, 410px);
  line-height: 0.66;
  text-shadow: 0 18px 34px rgba(75, 47, 143, 0.24);
}

/* h1 */
.hero h1 {
  font-size: clamp(26px, 3.8vw, 54px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--ink);
  text-shadow:
    0 1px 0 rgba(255,255,255,0.95),
    0 0 14px rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeUp 600ms 640ms ease-out forwards;
}



/* Lead */
.hero-lead {
  margin-top: 10px;
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 700;
  color: #3a3a4a;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.9),
    0 0 10px rgba(255,255,255,0.7);
  opacity: 0;
  animation: fadeUp 600ms 700ms ease-out forwards;
}


@media (max-width: 920px) {
  .hero {
    min-height: 100svh;
    padding: 88px 0 72px;
  }

  .hero-bg img {
    object-position: center top;
  }

  .hero-type-bg {
    inset: 100px -32vw auto;
  }

  .hero-type-bg span:nth-child(1) {
    margin-left: -20vw;
    font-size: 70px;
  }

  .hero-type-bg span:nth-child(2) {
    margin-left: 16vw;
    font-size: 88px;
  }

  .hero-type-bg span:nth-child(3) {
    margin-left: -8vw;
    font-size: 104px;
  }

  .hero > .hero-date-badge {
    top: 76px !important;
    right: 6px !important;
    left: auto !important;
    width: 66px;
    height: 66px;
    border-width: 2px;
    padding: 6px;
    font-size: 16px;
    box-shadow:
      0 12px 28px rgba(255, 122, 0, 0.28),
      0 0 0 5px rgba(255, 255, 255, 0.22);
  }
.hero-inner {
    width: min(100% - 28px, 540px);
    min-height: calc(100svh - 160px);
  }
  .hero-inner {
    width: min(100% - 30px, 540px);
    min-height: calc(100svh - 148px);
  }

  .hero-copy {
    gap: 14px;
  }

  .hero-opening-mark {
    gap: 10px;
  }

  .store-name {
    font-size: 25px;
  }

  .store-name::after {
    height: 4px;
    margin-top: 7px;
  }

  .renewal-badge {
    transform: rotate(-7deg);
  }

  .renewal-badge span {
    font-size: clamp(88px, 24vw, 112px);
  }

  .renewal-badge strong {
    font-size: clamp(122px, 34vw, 154px);
  }

  .hero h1 {
    font-size: clamp(35px, 9.4vw, 46px);
  }

  .hero-lead {
    font-size: 16px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 880px) {
  .hero { padding: 84px 0 70px; }

  .hero-bg::after {
    background:
      linear-gradient(180deg,
        rgba(255,248,238,0.85) 0%,
        rgba(255,248,238,0.6) 55%,
        rgba(255,248,238,0.88) 100%);
  }

  .hero-date-badge {
    top: clamp(74px, 10vw, 92px);
    padding: 9px 24px 9px 20px;
    gap: 10px;
  }
  .hero-date-badge .badge-date { font-size: 34px; }
  .hero-date-badge .badge-label { font-size: 20px; }
  .hero-date-badge .badge-year { font-size: 11px; }

  .hero-inner {
    width: min(100% - 28px, 540px);
    min-height: calc(100svh - 160px);
  }

  .store-name { font-size: 13px; letter-spacing: 0.08em; }

  .renewal-word {
    font-size: clamp(76px, 22vw, 108px);
    margin-top: 8px;
  }
  .open-word { font-size: clamp(98px, 28vw, 138px); }

  .hero-divider { margin-top: 20px; }
  .hero h1 { font-size: clamp(22px, 7.5vw, 38px); }
  .hero-lead { font-size: 14px; }

  .hero-cta { margin-top: 18px; }
  .btn-large { min-height: 48px; padding: 12px 20px; font-size: 15px; }

  .header-actions { display: none; }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 90px;
  }

  .hero-type-bg {
    top: 104px;
  }

  .hero > .hero-date-badge {
    top: 76px !important;
    right: 4px !important;
    left: auto !important;
    width: 64px;
    height: 64px;
    font-size: 15px;
  }

  .renewal-badge span {
    font-size: 92px;
  }

  .renewal-badge strong {
    font-size: 128px;
  }
}
@media (max-width: 480px) {
  .renewal-word { font-size: 82px; }
  .open-word    { font-size: 108px; }
  .hero h1      { font-size: clamp(20px, 7vw, 28px); }
  .hero-cta .btn-large { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* 2026-06-25 FV adjustment: sample-like event layout */
.site-header {
  z-index: 100;
  height: 68px;
}

.brand {
  display: inline-flex !important;
  align-items: center;
  width: clamp(170px, 18vw, 230px) !important;
  height: 56px !important;
  flex: 0 0 auto;
}

.brand-logo {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.header-actions {
  flex: 0 1 auto;
}

.header-actions .btn {
  min-height: 48px;
  padding: 11px 22px;
}

.hero {
  min-height: 100svh;
  padding: 92px 0 76px !important;
  background: #fff7ec;
}

.hero-bg {
  opacity: 0.8;
}

.hero-bg img {
  object-position: center top;
  filter: saturate(1.06) contrast(1.03) brightness(1.08);
}

.hero-bg::after {
  background:
    linear-gradient(90deg, rgba(255, 247, 236, 0.76) 0%, rgba(255, 247, 236, 0.46) 48%, rgba(255, 247, 236, 0.24) 100%),
    radial-gradient(circle at 78% 24%, rgba(163, 104, 255, 0.18), transparent 34%),
    radial-gradient(circle at 16% 18%, rgba(255, 122, 0, 0.14), transparent 30%);
}

.hero-type-bg,
.hero-blob {
  display: none !important;
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  align-items: start;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 168px);
  margin: 0 auto;
}

.hero-copy {
  display: grid;
  gap: 0;
  max-width: 760px;
  padding-top: clamp(8px, 2vw, 32px);
}

.store-name {
  display: inline-flex !important;
  align-items: center;
  width: fit-content;
  max-width: none;
  margin: 0 0 8px !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
  color: #4b2f8f !important;
  font-size: clamp(14px, 1.45vw, 20px) !important;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: 0.07em !important;
  white-space: nowrap !important;
  text-shadow: none !important;
}

.store-name::before {
  width: 26px;
  height: 3px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff6a00, #9b5cff);
  content: "";
  flex: 0 0 auto;
}

.store-name::after {
  display: none !important;
}

.renewal-word,
.open-word {
  width: fit-content;
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  transform-origin: left center;
}

.renewal-word {
  margin-top: 0;
  color: #ff5a00;
  font-size: clamp(104px, 17vw, 250px);
  line-height: 0.78;
  text-shadow:
    0 4px 0 rgba(255, 255, 255, 0.7),
    0 16px 34px rgba(255, 90, 0, 0.18);
  animation: slideInLeft 650ms 160ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.open-word {
  margin-top: -0.05em;
  background: linear-gradient(180deg, #b46cff 0%, #8d4cff 45%, #6f35d8 100%);
  font-size: clamp(128px, 20.5vw, 315px);
  line-height: 0.74;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 5px 0 rgba(255, 255, 255, 0.55));
  animation: slideInRight 680ms 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-divider {
  width: min(100%, 430px);
  height: 1px;
  margin-top: 26px;
  background: linear-gradient(90deg, rgba(215, 169, 67, 0.62), transparent);
}

.hero-divider::after {
  display: none;
}

.hero h1 {
  margin: 10px 0 0;
  color: #17242a;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 1000;
  line-height: 1.12;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.9),
    0 0 16px rgba(255, 255, 255, 0.72);
}

.hero-lead {
  margin-top: 8px;
  color: #27343b;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 900;
  line-height: 1.55;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9),
    0 0 10px rgba(255, 255, 255, 0.68);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-web {
  width: fit-content;
  margin-top: 12px;
  color: #57636a;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero > .hero-date-badge {
  position: absolute !important;
  top: 86px !important;
  right: 0 !important;
  left: auto !important;
  z-index: 120 !important;
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: min(40vw, 330px) !important;
  height: 60px !important;
  margin: 0 !important;
  padding: 8px 22px 8px 34px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #ff5a00 !important;
  color: #ffffff !important;
  box-shadow: 0 16px 32px rgba(255, 90, 0, 0.22);
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: left;
  opacity: 1 !important;
  visibility: visible !important;
  animation: ribbonIn 660ms 220ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
}

.hero > .hero-date-badge::before {
  position: absolute;
  top: 0;
  left: -18px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-right: 18px solid #ff5a00;
  content: "";
}

.hero-date-badge .badge-date {
  font-size: clamp(35px, 4.2vw, 58px);
  line-height: 0.9;
}

.hero-date-badge .badge-meta {
  display: grid;
  gap: 4px;
}

.hero-date-badge .badge-year {
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 1;
}

.hero-date-badge .badge-label {
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1;
  white-space: nowrap;
}

@keyframes ribbonIn {
  from {
    opacity: 0;
    transform: translateX(120%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 880px) {
  .site-header {
    height: 66px;
  }

  .brand {
    width: 158px !important;
    height: 54px !important;
  }

  .hero {
    padding: 76px 0 70px !important;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(255, 247, 236, 0.8) 0%, rgba(255, 247, 236, 0.54) 58%, rgba(255, 247, 236, 0.3) 100%),
      radial-gradient(circle at 76% 24%, rgba(163, 104, 255, 0.2), transparent 36%),
      radial-gradient(circle at 16% 16%, rgba(255, 122, 0, 0.15), transparent 30%);
  }

  .hero-inner {
    width: min(100% - 28px, 540px);
    min-height: calc(100svh - 146px);
  }

  .hero-copy {
    padding-top: 44px;
  }

  .store-name {
    margin-top: 0 !important;
    margin-bottom: 8px !important;
    font-size: 13px !important;
    letter-spacing: 0.06em !important;
  }

  .store-name::before {
    width: 24px;
    height: 3px;
    margin-right: 9px;
  }

  .renewal-word {
    font-size: clamp(78px, 23vw, 112px);
  }

  .open-word {
    font-size: clamp(98px, 30vw, 142px);
  }

  .hero-divider {
    margin-top: 20px;
  }

  .hero h1 {
    font-size: clamp(29px, 8.7vw, 42px);
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-cta {
    gap: 12px;
    margin-top: 20px;
  }

  .hero > .hero-date-badge {
    position: fixed !important;
    top: 74px !important;
    right: 0 !important;
    left: auto !important;
    z-index: 120 !important;
    width: 226px !important;
    height: 56px !important;
    padding: 7px 4px 7px 22px !important;
    gap: 5px;
    animation: ribbonIn 760ms 220ms cubic-bezier(0.16, 1, 0.3, 1) both !important;
  }

  .hero > .hero-date-badge::before {
    left: -16px;
    border-top-width: 28px;
    border-bottom-width: 28px;
    border-right-width: 16px;
  }

  .hero-date-badge .badge-date {
    font-size: 30px !important;
  }

  .hero-date-badge .badge-year {
    font-size: 9px !important;
  }

  .hero-date-badge .badge-label {
    font-size: 10px !important;
  }

  .benefit {
    padding-bottom: 72px;
  }

  .benefit-cta {
    width: min(100% - 40px, 420px);
    margin-top: 28px;
  }

  .benefit-cta .btn {
    width: 100%;
    min-height: 44px;
  }
}

@keyframes ribbonInMobile {
  from {
    opacity: 0;
    transform: translateX(42px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 96px !important;
  }

  .hero-inner {
    width: calc(100% - 26px);
  }

  .hero > .hero-date-badge {
    left: auto !important;
    right: 0 !important;
    width: 226px !important;
  }

  .renewal-word {
    font-size: 82px;
  }

  .open-word {
    font-size: 108px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.4vw, 37px);
  }
}

/* 2026-06-29 FV copy spacing and mobile photo framing */
.hero h1 .hero-title-line {
  display: block;
}

.hero h1 .hero-title-line + .hero-title-line {
  margin-top: 19px;
}

.hero-cta {
  margin-top: 32px;
}

@media (max-width: 880px) {
  .hero-bg img {
    width: 100%;
    height: 122%;
    object-position: 64% center;
    transform: translateY(-12%);
  }

  .hero h1 .hero-title-line + .hero-title-line {
    margin-top: 9.5px;
  }

  .hero h1 {
    font-size: clamp(26px, 7.35vw, 33px);
  }

  .hero-cta {
    margin-top: 34px;
  }
}

@media (max-width: 560px) {
  .renewal-summary {
    padding-top: 72px;
  }

  .school-inline {
    margin-top: 44px;
    padding-top: 48px;
  }

  .school-inline #school-title {
    white-space: normal;
  }

  .school-title-line {
    display: block;
  }

  .school-inline .cta-row {
    width: min(100%, 320px);
    margin-right: auto;
    margin-left: auto;
  }

  .school-inline .cta-row .btn {
    width: 100%;
    min-height: 48px;
    padding-right: 18px;
    padding-left: 18px;
    font-size: 14px;
  }
}

/* PC only: renewal benefit image and CTA sizing */
@media (min-width: 881px) {
  .benefit {
    background: #fff1d2;
  }

  .benefit > img {
    width: min(62vw, 820px);
    margin: 0 auto;
  }

  .benefit-cta {
    gap: 24px;
    margin-top: 34px;
  }

  .benefit-cta .btn {
    min-width: 270px;
    min-height: 66px;
    padding: 16px 36px;
    font-size: 18px;
  }
}
