:root {
  --red: #c8102e;
  --red-dark: #a90d27;
  --red-soft: #fff1f2;
  --ink: #171717;
  --muted: #666;
  --line: #e8e8e8;
  --white: #fff;
  --max: 1040px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", YuGothic, Meiryo,
    sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100% - 32px, var(--max));
  height: 82px;
  align-items: center;
  justify-content: space-between;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  margin-right: 10px;
}

.header-cta {
  border: 2px solid var(--red);
  border-radius: 999px;
  padding: 9px 20px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  padding: 110px 20px 74px;
  background:
    radial-gradient(circle at 16% 19%, rgba(195, 22, 36, 0.08) 0 8%, transparent 8.2%),
    linear-gradient(145deg, #fff 0 57%, #fff5f6 57% 100%);
  text-align: center;
}

.hero::before,
.hero::after {
  position: absolute;
  width: 280px;
  height: 42px;
  background: var(--red);
  content: "";
  transform: rotate(-35deg);
}

.hero::before {
  top: 45px;
  right: -120px;
}

.hero::after {
  bottom: 42px;
  left: -150px;
  opacity: 0.14;
}

.hero::before,
.hero::after {
  animation: mesh-float 10s ease-in-out infinite;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
}

.campaign-label {
  display: inline-block;
  margin: 0 0 10px;
  border-radius: 4px;
  padding: 4px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  animation: fade-up 0.4s ease-out both;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(40px, 5.2vw, 66px);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1.12;
  animation: fade-up 0.4s 0.1s ease-out both;
}

.hero-copy {
  margin-bottom: 23px;
  color: #464646;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.7;
  animation: fade-up 0.4s 0.2s ease-out both;
}

.hero-offer {
  display: grid;
  width: min(100%, 580px);
  margin: 0 auto 26px;
  grid-template-columns: 1fr auto;
  align-items: end;
  border-top: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  padding: 14px 18px 18px;
  text-align: left;
  animation:
    fade-up 0.4s 0.3s ease-out both,
    offer-glow 1.5s 0.8s ease-in-out 1;
}

.offer-eyebrow {
  grid-column: 1 / -1;
  color: var(--red);
  font-size: 16px;
  font-weight: 900;
}

.hero-offer > strong {
  grid-column: 1 / -1;
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.05;
}

.offer-main {
  font-size: clamp(17px, 3vw, 26px);
  font-weight: 900;
  line-height: 1.3;
}

.offer-main b {
  color: var(--red);
  font-size: 1.55em;
}

.offer-free {
  grid-row: 3 / 5;
  grid-column: 2;
  color: var(--red);
  font-size: clamp(58px, 12vw, 96px);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  padding: 14px 34px;
  font-size: 17px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px) scale(1.03);
}

.button:active {
  transform: scale(0.97);
}

.button:focus-visible,
.header-cta:focus-visible,
.brand:focus-visible {
  outline: 3px solid #111;
  outline-offset: 4px;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 24px rgba(195, 22, 36, 0.23);
}

.button-primary:hover {
  background: var(--red-dark);
}

.hero .button {
  width: min(100%, 390px);
  animation: fade-up 0.4s 0.5s ease-out both;
}

.hero-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  animation: fade-up 0.4s 0.4s ease-out both;
}

.section {
  padding: 92px 20px;
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.container.narrow {
  max-width: 760px;
}

.section-kicker {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-align: center;
}

.section h2 {
  margin-bottom: 42px;
  font-size: clamp(28px, 4.3vw, 44px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.35;
  text-align: center;
}

.brand-intro {
  background: var(--white);
}

.brand-intro-title span {
  display: inline;
}

.brand-intro-grid {
  display: grid;
  max-width: 920px;
  align-items: center;
  gap: 36px;
  margin: -12px auto 34px;
  grid-template-columns: 1.15fr 0.85fr;
}

.brand-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.brand-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(200, 16, 46, 0.14));
  content: "";
  pointer-events: none;
}

.brand-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-lead {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  text-align: left;
}

.feature-pills {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0;
  list-style: none;
}

.feature-pills li {
  display: grid;
  min-height: 82px;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.feature-pills small {
  display: block;
  color: var(--red);
  font-size: 10px;
}

.pricing {
  background: #fafafa;
}

.pricing h2 {
  margin-bottom: 12px;
}

.headline-price {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.headline-price strong {
  color: var(--red);
  font-size: clamp(42px, 7vw, 64px);
  letter-spacing: -0.05em;
}

.headline-price span {
  font-size: 14px;
}

.pricing-card {
  max-width: 940px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid var(--line);
  padding: 18px 14px;
  text-align: center;
  vertical-align: middle;
}

.pricing-table thead th {
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
}

.pricing-table thead th:first-child {
  border-radius: 10px 0 0;
}

.pricing-table thead th:last-child {
  border-radius: 0 10px 0 0;
}

.pricing-table tbody th {
  width: 34%;
  font-size: 14px;
  text-align: left;
}

.pricing-table strong,
.pricing-table small {
  display: block;
}

.pricing-table td strong {
  color: var(--red);
  font-size: 18px;
}

.pricing-table small {
  color: var(--muted);
  font-size: 11px;
}

.pricing-table .best-price {
  background: var(--red-soft);
}

.pricing-mobile {
  display: none;
}

.join-fee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 18px;
  font-size: 13px;
}

.join-fee strong {
  color: var(--red);
  font-size: 16px;
}

.additional-plan-note {
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.campaign-example {
  margin-bottom: 14px;
  border-radius: 12px;
  padding: 18px;
  color: var(--red);
  background: var(--red-soft);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.campaign-example strong {
  display: block;
  font-size: 1.15em;
}

.campaign-example > span {
  display: block;
}

.price-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.benefits {
  background: #fafafa;
}

.benefits-photo {
  position: relative;
  overflow: hidden;
  max-width: 840px;
  aspect-ratio: 16 / 8;
  margin: -12px auto 38px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.benefits-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(200, 16, 46, 0.15));
  content: "";
  pointer-events: none;
}

.benefits-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}

.benefit-grid {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
}

.benefit-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 28px;
  background: var(--white);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition:
    opacity 0.55s ease-out,
    transform 0.55s ease-out,
    box-shadow 0.2s ease;
}

.benefit-card::after {
  position: absolute;
  z-index: 0;
  right: -58px;
  bottom: -68px;
  width: 132px;
  height: 132px;
  border: 18px solid var(--red-soft);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.card-icon {
  display: grid;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--red);
  background: var(--red-soft);
}

.card-icon svg {
  width: 42px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.card-label {
  display: inline-block;
  margin-bottom: 13px;
  border-radius: 999px;
  padding: 3px 16px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-size: 19px;
}

.card-offer {
  margin-bottom: 0;
  color: var(--red);
  font-size: 28px;
  font-weight: 950;
  line-height: 1.2;
}

.card-offer strong {
  font-size: 44px;
}

.plus {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  margin-left: -7px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--red);
  font-size: 30px;
  font-weight: 900;
}

.step-list {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.step-list::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 43px;
  width: 2px;
  background: linear-gradient(var(--red), rgba(200, 16, 46, 0.12));
  content: "";
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition:
    transform 0.9s ease-out,
    opacity 0.3s ease;
}

.step-list.is-revealed::before {
  opacity: 1;
  transform: scaleY(1);
}

.step-list li {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 26px;
  align-items: center;
  padding: 26px 0;
}

.step-list li:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.step-number {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 46px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  background: var(--white);
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateY(24px);
}

.reveal-ready .reveal-item.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s var(--reveal-delay, 0ms) ease-out,
    transform 0.55s var(--reveal-delay, 0ms) cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-ready .reveal-pop {
  opacity: 0;
  transform: scale(0.65) rotate(-12deg);
}

.reveal-ready .reveal-pop.is-revealed {
  opacity: 1;
  transform: scale(1) rotate(0);
  transition:
    opacity 0.35s 0.18s ease-out,
    transform 0.5s 0.18s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.store-link.reveal-item.is-revealed:hover,
.benefit-card.reveal-item.is-revealed:hover {
  transform: translateY(-4px);
}

.step-list h3 {
  margin-bottom: 5px;
  font-size: 21px;
}

.step-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.reservation {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
  text-align: center;
}

.reservation::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 65%, rgba(255, 255, 255, 0.08) 65%),
    radial-gradient(circle at 14% 32%, rgba(255, 255, 255, 0.11) 0 7%, transparent 7.2%);
  content: "";
}

.reservation-inner {
  position: relative;
  z-index: 1;
}

.section-kicker.light {
  color: var(--white);
  opacity: 0.72;
}

.reservation h2 {
  margin-bottom: 20px;
}

.reservation-photo {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  aspect-ratio: 16 / 8;
  margin: 0 auto 28px;
  border: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(70, 0, 6, 0.25);
}

.reservation-photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, rgba(70, 0, 6, 0.3));
  content: "";
  pointer-events: none;
}

.reservation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.reservation-lead {
  margin-bottom: 30px;
  font-size: 16px;
}

.line-guide {
  display: flex;
  max-width: 560px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0 auto 20px;
}

.line-guide p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.line-badge {
  flex: 0 0 auto;
  border-radius: 5px;
  padding: 2px 8px;
  color: #06c755;
  background: var(--white);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.store-links {
  display: grid;
  max-width: 760px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.store-link {
  display: flex;
  min-height: 145px;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid transparent;
  border-radius: 9px;
  padding: 21px 18px 17px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(70, 0, 6, 0.18);
  text-align: left;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.store-link:hover {
  transform: translateY(-3px);
  border-color: #06c755;
}

.store-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.store-link small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.store-link strong {
  display: block;
  font-size: 24px;
  line-height: 1.3;
}

.store-link > b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #00a943;
  font-size: 13px;
}

.line-message {
  max-width: 620px;
  margin: 0 auto 18px;
  border-left: 4px solid var(--white);
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.reservation-tiles {
  display: grid;
  max-width: 760px;
  margin: 28px auto 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.reservation-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin: 0;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 15px;
  background: var(--red-dark);
  box-shadow: 0 8px 22px rgba(70, 0, 6, 0.2);
}

.reservation-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.reservation-tile:nth-child(1) img {
  object-position: 55% center;
}

.reservation-tile:nth-child(2) img {
  object-position: 58% center;
}

.reservation-tile:nth-child(3) img {
  object-position: 58% center;
}

.reservation-tile:hover img {
  transform: scale(1.04);
}

.reservation-tile figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  border-radius: 999px;
  padding: 2px 9px;
  color: var(--red);
  background: rgba(255, 255, 255, 0.92);
  font-size: 10px;
  font-weight: 900;
}

.notes {
  padding-top: 64px;
  padding-bottom: 64px;
}

.notes h2 {
  margin-bottom: 16px;
  font-size: 21px;
  text-align: left;
}

.notes ul {
  margin: 0;
  padding-left: 1.4em;
  color: var(--muted);
  font-size: 13px;
}

footer {
  display: grid;
  place-items: center;
  padding: 42px 20px 110px;
  color: var(--white);
  background: #151515;
  text-align: center;
}

footer img {
  border-radius: 50%;
}

footer p {
  margin: 8px 0 4px;
  font-weight: 900;
}

footer small {
  color: #969696;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.sticky-cta {
  position: fixed;
  z-index: 20;
  right: 50%;
  bottom: calc(10px + env(safe-area-inset-bottom));
  display: none;
  width: min(calc(100% - 32px), 360px);
  padding: 0;
  transform: translateX(50%);
  transition:
    width 0.25s ease-out,
    opacity 0.25s ease-out;
}

.sticky-cta .button {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    0 10px 26px rgba(91, 0, 12, 0.24),
    0 0 0 1px rgba(200, 16, 46, 0.08);
  transition:
    min-height 0.25s ease-out,
    padding 0.25s ease-out,
    font-size 0.25s ease-out,
    transform 0.2s ease;
  animation: sticky-cta-nudge 5s ease-in-out infinite;
}

.sticky-cta .button::after {
  position: absolute;
  top: -40%;
  left: -35%;
  width: 22%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  transform: rotate(18deg);
  animation: sticky-cta-shine 5s ease-in-out infinite;
  pointer-events: none;
}

.sticky-arrow {
  display: inline-block;
  animation: sticky-arrow-move 1.4s ease-in-out infinite;
}

.sticky-cta.is-compact {
  width: 210px;
  opacity: 0.9;
}

.sticky-cta.is-compact .button {
  min-height: 44px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
}

.sticky-cta:hover .button,
.sticky-cta:focus-within .button,
.sticky-cta.is-compact .button {
  animation-play-state: paused;
}

.sticky-cta:hover .button::after,
.sticky-cta:focus-within .button::after,
.sticky-cta.is-compact .button::after {
  animation-play-state: paused;
}

.mobile-only {
  display: none;
}

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

  .brand {
    font-size: 12px;
  }

  .brand img {
    width: 45px;
    height: 45px;
    margin-right: 7px;
  }

  .header-cta {
    padding: 7px 14px;
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 76px 18px 34px;
  }

  .campaign-label {
    margin-bottom: 9px;
    font-size: 12px;
  }

  h1 {
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.18;
  }

  .mobile-only {
    display: block;
  }

  .hero-copy {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-offer {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;
    text-align: center;
  }

  .offer-eyebrow,
  .hero-offer > strong,
  .offer-main,
  .offer-free {
    display: block;
  }

  .offer-main {
    margin-top: 0;
    font-size: 16px;
  }

  .offer-free {
    margin-top: 0;
    font-size: clamp(58px, 18vw, 72px);
    letter-spacing: -0.04em;
    line-height: 1;
  }

  .button {
    min-height: 57px;
    padding-right: 24px;
    padding-left: 24px;
    font-size: 16px;
  }

  .hero .button {
    min-height: 54px;
  }

  .section {
    padding: 70px 18px;
  }

  .section h2 {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .brand-lead {
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }

  .brand-intro-title {
    font-size: 27px !important;
    line-height: 1.35 !important;
  }

  .brand-intro-title span {
    display: block;
    white-space: nowrap;
  }

  .brand-intro-grid {
    gap: 20px;
    margin-top: -8px;
    margin-bottom: 26px;
    grid-template-columns: 1fr;
  }

  .brand-photo {
    aspect-ratio: 16 / 10;
    border-radius: 16px;
  }

  .brand-photo img {
    object-position: center 46%;
  }

  .brand-lead br {
    display: none;
  }

  .feature-pills {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .feature-pills li {
    min-height: 88px;
    border-radius: 18px;
    padding: 12px 9px;
    font-size: 12px;
  }

  .headline-price {
    margin-bottom: 22px;
    font-size: 17px;
  }

  .headline-price strong {
    font-size: 44px;
  }

  .pricing-card {
    border: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .pricing-table-wrap {
    display: none;
  }

  .pricing-mobile {
    display: grid;
    gap: 10px;
  }

  .price-plan {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  }

  .price-plan summary {
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    list-style: none;
  }

  .price-plan summary::-webkit-details-marker {
    display: none;
  }

  .price-plan summary::after {
    color: var(--red);
    content: "＋";
    font-size: 18px;
  }

  .price-plan[open] summary::after {
    content: "−";
  }

  .price-plan summary small {
    display: block;
    color: var(--muted);
    font-size: 10px;
  }

  .price-plan summary b {
    border-radius: 999px;
    padding: 2px 9px;
    color: var(--white);
    background: var(--red);
    font-size: 10px;
  }

  .price-plan dl {
    margin: 0;
    padding: 0 16px 14px;
  }

  .price-plan dl > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-top: 1px solid var(--line);
    padding: 12px 0;
  }

  .price-plan dt {
    font-size: 12px;
    font-weight: 800;
  }

  .price-plan dd {
    margin: 0;
    text-align: right;
  }

  .price-plan dd strong,
  .price-plan dd small {
    display: block;
  }

  .price-plan dd strong {
    color: var(--red);
    font-size: 15px;
  }

  .price-plan dd small {
    color: var(--muted);
    font-size: 10px;
  }

  .join-fee {
    display: block;
    margin: 20px 0 14px;
    text-align: center;
  }

  .join-fee strong,
  .join-fee span {
    display: block;
  }

  .additional-plan-note {
    margin-top: -4px;
    font-size: 12px;
  }

  .campaign-example {
    padding: 15px 13px;
    font-size: 14px;
    line-height: 1.65;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .benefits-photo {
    aspect-ratio: 16 / 10;
    margin-top: -8px;
    margin-bottom: 28px;
    border-radius: 16px;
  }

  .benefit-card {
    min-height: 0;
    padding: 31px 22px;
  }

  .benefit-card::after {
    right: -54px;
    bottom: -62px;
    width: 118px;
    height: 118px;
    border-width: 16px;
  }

  .plus {
    margin: -9px auto;
  }

  .card-icon {
    width: 62px;
    height: 62px;
  }

  .card-offer strong {
    font-size: 39px;
  }

  .step-list li {
    grid-template-columns: 58px 1fr;
    gap: 15px;
    padding: 24px 0;
  }

  .step-list::before {
    left: 28px;
  }

  .step-number {
    font-size: 37px;
  }

  .step-list h3 {
    font-size: 17px;
  }

  .step-list p {
    font-size: 13px;
  }

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

  .reservation-photo {
    aspect-ratio: 16 / 10;
    margin-bottom: 22px;
    border-radius: 16px;
  }

  .line-guide {
    align-items: flex-start;
    text-align: left;
  }

  .line-guide p {
    font-size: 13px;
  }

  .store-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .store-link {
    min-height: 88px;
    flex-direction: row;
    align-items: center;
    padding: 16px 17px;
  }

  .store-link strong {
    font-size: 21px;
  }

  .store-link > b {
    gap: 12px;
  }

  .line-message {
    font-size: 12px;
  }

  .reservation-tiles {
    gap: 7px;
    margin-top: 22px;
  }

  .reservation-tile {
    border-radius: 10px;
  }

  .reservation-tile figcaption {
    right: 5px;
    bottom: 5px;
    padding: 1px 6px;
    font-size: 9px;
  }

  .notes {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .sticky-cta {
    display: block;
  }
}

@media (max-width: 700px) and (max-height: 700px) {
  .site-header {
    height: 58px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .header-cta {
    padding: 5px 12px;
  }

  .hero {
    padding-top: 62px;
    padding-bottom: 16px;
  }

  .campaign-label {
    margin-bottom: 5px;
    padding: 2px 15px;
    font-size: 11px;
  }

  h1 {
    margin-bottom: 6px;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-copy {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.45;
  }

  .hero-offer {
    margin-bottom: 8px;
    padding-top: 5px;
    padding-bottom: 6px;
  }

  .offer-eyebrow {
    font-size: 12px;
  }

  .hero-offer > strong {
    font-size: 27px;
  }

  .offer-main {
    font-size: 13px;
  }

  .offer-free {
    font-size: 50px;
  }

  .hero-note {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .hero .button {
    min-height: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
    font-size: 14px;
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mesh-float {
  0%,
  100% {
    transform: rotate(-35deg) translate(0, 0);
  }
  50% {
    transform: rotate(-35deg) translate(3%, -4%);
  }
}

@keyframes offer-glow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(200, 16, 46, 0);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(200, 16, 46, 0.08);
  }
}

@keyframes sticky-cta-nudge {
  0%,
  72%,
  100% {
    transform: translateY(0) scale(1);
  }
  78% {
    transform: translateY(-4px) scale(1.015);
  }
  84% {
    transform: translateY(0) scale(1);
  }
  89% {
    transform: translateY(-2px) scale(1.008);
  }
}

@keyframes sticky-cta-shine {
  0%,
  70% {
    left: -35%;
    opacity: 0;
  }
  76% {
    opacity: 1;
  }
  88%,
  100% {
    left: 115%;
    opacity: 0;
  }
}

@keyframes sticky-arrow-move {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
  }
}

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

  .button {
    transition: none;
  }

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

  .reveal-ready .reveal-item,
  .reveal-ready .reveal-pop {
    opacity: 1 !important;
    transform: none !important;
  }

  .step-list::before {
    opacity: 1;
    transform: scaleY(1);
  }
}
