@charset "UTF-8";
:root {
  --bg: #ffe7c9;
  --surface: #fff;
  --surface-soft: #fff4dc;
  --line: #ff7a1a;
  --muted: #8f6748;
  --shadow: rgba(236, 93, 27, 0.24);
  --radius: 1.25rem;
  --content: 95vw;
  --content-wide: 72rem;
  --color-orange: #ff7417;
  --color-orange-deep: #e94b00;
  --color-pink: #ff4f8b;
  --color-blue: #1ba8ff;
  --color-blue-deep: #0876d8;
  --color-green: #55c51d;
  --color-gold: #ffb629;
  --color-cream: #fff4db;
  --color-text: #60240f;
  --outline-light: #fff9ea;
  --shadow-pop: 0 0.45rem 0 #d85b11, 0 1rem 2rem rgba(215, 86, 36, 0.28);
  --shadow-soft: 0 1rem 2rem rgba(207, 95, 54, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #ffe8d2 0%, #ffd7e5 45%, #ffe8bd 100%);
  color: var(--color-text);
  font-family: "Chiron GoRound TC", sans-serif;
}

button {
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.page {
  min-height: 100vh;
  overflow: clip;
}

.page-content {
  background: linear-gradient(180deg, #ffe4c7 0%, #ffddec 38%, #ffe5b6 68%, #ffc9dc 100%);
  overflow: hidden;
}

@media (max-width: 639px) {
  .page-content {
    background: url("../images/content/BG_2.png") center top/cover repeat-y, linear-gradient(180deg, #ffe4c7 0%, #ffddec 38%, #ffe5b6 68%, #ffc9dc 100%);
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
[data-reveal] {
  --reveal-delay: 0ms;
  --reveal-distance: 2rem;
  --reveal-duration: 0.65s;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes road-chart-enter {
    from {
      transform: scale(0.2);
    }
    60% {
      transform: scale(1.8);
    }
    to {
      transform: scale(1);
    }
  }
  @keyframes road-chart-pulse {
    0%, 100% {
      transform: scale(1) rotate(0deg);
    }
    25% {
      transform: scale(1.05) rotate(-3deg);
    }
    50% {
      transform: scale(1.1) rotate(0deg);
    }
    75% {
      transform: scale(1.05) rotate(3deg);
    }
  }
  @keyframes step-chart-hit {
    0% {
      transform: translateY(0) scale(1);
    }
    18% {
      transform: translateY(0.2rem) scaleX(1.025) scaleY(0.975);
    }
    45% {
      transform: translateY(-0.45rem) scaleX(0.99) scaleY(1.045);
    }
    68% {
      transform: translateY(0.08rem) scaleX(1.012) scaleY(0.992);
    }
    84% {
      transform: translateY(-0.12rem) scaleX(0.997) scaleY(1.008);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }
  .step.is-chart-hit {
    z-index: 2;
    animation: step-chart-hit 0.5s cubic-bezier(0.22, 0.8, 0.3, 1);
    transform-origin: center bottom;
  }
  .steps__road-chart-image {
    transform: scale(0.2);
  }
  .steps__road-chart.is-visible .steps__road-chart-image {
    animation: road-chart-enter 0.55s ease-in-out both, road-chart-pulse 0.9s ease-in-out 0.55s infinite;
    transform-origin: center;
  }
  [data-reveal].reveal-ready {
    opacity: 0;
    transition: opacity var(--reveal-duration) ease, transform var(--reveal-duration) cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0ms;
    will-change: opacity, transform;
  }
  [data-reveal=up].reveal-ready {
    transform: translateY(var(--reveal-distance));
  }
  [data-reveal=down].reveal-ready {
    transform: translateY(calc(var(--reveal-distance) * -1));
  }
  [data-reveal=left].reveal-ready {
    transform: translateX(calc(var(--reveal-distance) * -1));
  }
  [data-reveal=right].reveal-ready {
    transform: translateX(var(--reveal-distance));
  }
  [data-reveal=scale].reveal-ready {
    transform: scale(0.94);
  }
  [data-reveal].reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
    transition-delay: var(--reveal-delay);
  }
}
.wire-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  padding: 0.35rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.section {
  position: relative;
  padding: 2rem 0.2rem 2.5rem;
  border-top: 0;
  overflow: hidden;
}
.section--light {
  background: linear-gradient(180deg, #fff4df 0%, #ffe1d7 100%);
}
.section--mid {
  background: linear-gradient(180deg, #ffd9e9 0%, #fff0cf 100%);
}
.section--dark {
  background: linear-gradient(180deg, #ffd0df 0%, #ffc29a 100%);
}
.section--steps {
  margin-top: -1px;
  background: transparent;
}
.section--steps::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/content/BG_step.png") center top/cover no-repeat fixed;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.58) 90%, rgba(0, 0, 0, 0.18) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 78%, rgba(0, 0, 0, 0.58) 90%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}
.section--steps::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 26%;
  background: url("../images/content/BG_2.png") center bottom/cover no-repeat fixed;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 45%, #000 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.42) 45%, #000 100%);
  pointer-events: none;
}
.section--steps > .container {
  position: relative;
  z-index: 1;
}
.section--members {
  background: url("../images/content/BG_2.png") center bottom/cover no-repeat fixed;
}
.section--products {
  background: url("../images/content/BG_2.png") center bottom/cover no-repeat fixed;
}
.section--rules {
  background: url("../images/content/BG_2.png") center bottom/cover no-repeat fixed;
}

.container {
  width: min(100%, var(--content));
  margin-inline: auto;
}
.container--wide {
  width: min(100%, var(--content-wide));
}
.container--narrow {
  width: min(100%, 50rem);
}

@media (max-width: 639px) {
  .section--steps::before,
  .section--steps::after,
  .section--members,
  .section--products,
  .section--rules {
    background-attachment: scroll;
  }
  .section--members,
  .section--products,
  .section--rules {
    background: transparent;
  }
}
.section-title {
  position: relative;
  z-index: 1;
  margin: 0 auto 2.25rem;
  text-align: center;
}
.section-title__image {
  display: block;
  width: min(100%, 40rem);
  margin-inline: auto;
  filter: drop-shadow(0 0.55rem 0 rgba(224, 80, 10, 0.22));
}
.section-title__eyebrow {
  display: inline-block;
  margin-bottom: 0.65rem;
  border: 1px solid #444;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(1.65rem, 7vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--color-orange-deep);
  text-shadow: 0 0.16rem 0 #fff, 0 0.32rem 0 rgba(255, 181, 34, 0.38);
}

.button {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%), linear-gradient(180deg, #ffbd45 0%, var(--color-orange) 48%, #e94708 100%);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.34), inset 0 -0.14rem 0 rgba(116, 34, 0, 0.18), 0 0.28rem 0 #bd3d00, 0 0.72rem 1.05rem rgba(235, 83, 11, 0.3);
  text-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.8rem auto;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.button:hover {
  transform: translateY(0.08rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.12rem 0 rgba(116, 34, 0, 0.16), 0 0.18rem 0 #bd3d00, 0 0.55rem 0.9rem rgba(235, 83, 11, 0.3);
}
.button:active {
  transform: translateY(0.18rem);
  box-shadow: inset 0 0.16rem 0 rgba(108, 30, 0, 0.16), inset 0 -0.08rem 0 rgba(255, 255, 255, 0.4), 0 0.08rem 0 #bd3d00, 0 0.28rem 0.5rem rgba(235, 83, 11, 0.3);
}
.button--disabled {
  width: 100%;
  border-radius: 999px;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 1;
}

.media-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 8rem;
  border: 0.16rem dashed #ffb46d;
  border-radius: 1rem;
  background: rgba(255, 247, 222, 0.76);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100vw - 2rem);
  transform: translate(-50%, 160%) scale(0.85);
  border: 0.16rem solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8fba 0%, #ff6c8f 48%, #ff842f 100%);
  box-shadow: 0 0.3rem 0 #d94b55, 0 0.75rem 1.5rem rgba(151, 45, 55, 0.3), inset 0 0.1rem 0 rgba(255, 255, 255, 0.45);
  color: #fff;
  padding: 0.7rem 1.1rem 0.65rem 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 0.08rem 0 rgba(132, 35, 55, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.2, 1.45, 0.45, 1), opacity 0.2s ease;
}
.toast::before {
  content: "✓";
  display: grid;
  flex: 0 0 1.75rem;
  width: 1.75rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--color-orange-deep);
  font-size: 1rem;
  font-weight: 900;
  text-shadow: none;
  box-shadow: 0 0.12rem 0.35rem rgba(135, 40, 50, 0.2);
}
.toast.is-visible {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: clamp(0.75rem, 2.5vw, 2rem);
  bottom: clamp(10rem, 3vw, 15rem);
  z-index: 1000;
  display: grid;
  width: 3rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff9bbc 0%, #ff6f8e 48%, #ff812e 100%);
  box-shadow: 0 0.25rem 0 #d94b55, 0 0.65rem 1.1rem rgba(151, 45, 55, 0.28), inset 0 0.1rem 0 rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 0.08rem 0 rgba(132, 35, 55, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  translate: 0 1rem;
  scale: 0.75;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s, translate 0.3s cubic-bezier(0.2, 1.35, 0.45, 1), scale 0.3s cubic-bezier(0.2, 1.35, 0.45, 1), filter 0.16s ease;
}
.back-to-top span {
  translate: 0 -0.08rem;
}
.back-to-top:hover {
  filter: brightness(1.08);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  translate: 0 0;
  scale: 1;
  transition-delay: 0s;
}
.back-to-top.is-visible:active {
  translate: 0 0.18rem;
}

.hero {
  display: flex;
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: 100%;
  overflow: visible;
  aspect-ratio: 390/933;
  background: transparent;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../images/content/BG_step.png") center top/cover no-repeat fixed;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: url("../images/content/BG_hero_mobile.png") center bottom/cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 48%, rgba(0, 0, 0, 0.18) 78%, rgba(0, 0, 0, 0) 94%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 48%, rgba(0, 0, 0, 0.18) 78%, rgba(0, 0, 0, 0) 94%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}
.hero__stage {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  min-height: 100%;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
}
.hero img {
  display: block;
  max-width: 100%;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.hero__column {
  display: contents;
}
.hero__deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.hero__deco-item {
  --deco-drift-x: 0.16rem;
  --deco-drift-y: -0.22rem;
  --deco-drift-duration: 7.2s;
  --deco-drift-delay: 0s;
  position: absolute;
  display: block;
  height: auto;
  max-width: none;
  filter: drop-shadow(0 0.35rem 0 rgba(216, 91, 30, 0.16));
  animation: hero-deco-drift var(--deco-drift-duration) ease-in-out infinite;
  animation-delay: var(--deco-drift-delay);
  translate: 0 0;
  will-change: translate;
}
.hero__deco-item:nth-of-type(3n + 1) {
  --deco-drift-x: -0.18rem;
  --deco-drift-y: -0.26rem;
  --deco-drift-duration: 7.8s;
  --deco-drift-delay: -0.7s;
}
.hero__deco-item:nth-of-type(3n + 2) {
  --deco-drift-x: 0.2rem;
  --deco-drift-y: 0.16rem;
  --deco-drift-duration: 8.6s;
  --deco-drift-delay: -1.6s;
}
.hero__deco-item:nth-of-type(3n + 3) {
  --deco-drift-x: 0.12rem;
  --deco-drift-y: -0.3rem;
  --deco-drift-duration: 6.9s;
  --deco-drift-delay: -2.4s;
}
.hero__deco-item--airplane-mid {
  top: 26.7%;
  right: 6.5%;
  width: 20%;
  transform: rotate(7deg);
}
.hero__deco-item--banner {
  top: 10%;
  left: 15%;
  width: 14%;
  transform: rotate(1deg);
}
.hero__deco-item--ribbon {
  top: 15.5%;
  left: -7%;
  width: 18%;
  transform: rotate(10deg);
}
.hero__deco-item--flag {
  top: 0.5%;
  right: 11%;
  width: 12%;
  transform: rotate(10deg);
}
.hero__deco-item--gift {
  top: 25%;
  right: 1%;
  width: 15%;
  transform: rotate(5deg);
}
.hero__deco-item--coupon {
  top: 20.5%;
  left: 1%;
  width: 18%;
  transform: rotate(-18deg);
}
.hero__deco-item--coupon-small {
  display: none;
}
.hero__deco-item--coin-left {
  top: 19.2%;
  left: 2%;
  width: 11%;
}
.hero__deco-item--coin-mid {
  top: 40%;
  right: 1%;
  width: 11%;
}
.hero__deco-item--coin-bottom {
  right: 9%;
  bottom: 5.5%;
  width: 11%;
  transform: rotate(-12deg);
}
.hero__deco-item--drink {
  left: 6%;
  bottom: 23%;
  width: 16%;
  transform: rotate(-9deg);
}
.hero__deco-item--burger {
  left: -8%;
  bottom: 18%;
  width: 25%;
  transform: rotate(-2deg);
  filter: blur(2px);
}
.hero__deco-item--donut {
  left: -4%;
  bottom: 7.5%;
  width: 16%;
  transform: rotate(10deg);
}
.hero__deco-item--camera {
  right: 1%;
  bottom: 13.2%;
  width: 18%;
  transform: rotate(-9deg);
}
.hero__deco-item--suitcase {
  right: -7%;
  bottom: 23%;
  width: 23%;
  transform: rotate(8deg);
}
.hero__deco-item--popcorn {
  display: none;
}
.hero__deco-item--star-top {
  top: 1%;
  left: 15%;
  width: 10%;
}
.hero__deco-item--star-mid {
  right: 7.5%;
  bottom: 35%;
  width: 10%;
  transform: rotate(12deg);
}
.hero__plant {
  z-index: 2;
  width: 100%;
  margin-top: -3rem;
}
.hero__plant img {
  max-width: 100%;
}
.hero__title {
  order: 1;
  z-index: 3;
  width: 88%;
}
.hero__title img {
  width: 100%;
}
.hero__signs {
  display: flex;
  order: 2;
  z-index: 4;
  width: 82%;
  flex-direction: column;
  align-items: center;
}
.hero__sign {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin-inline: auto;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
.hero__sign:focus-visible {
  outline: 3px solid #111;
  outline-offset: 0.2rem;
}
.hero__sign::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(108deg, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0.82) 47%, rgba(255, 245, 185, 0.48) 52%, rgba(255, 255, 255, 0) 62%);
  background-size: 260% 100%;
  background-position: 140% 0;
  opacity: 0;
  animation: hero-sign-shine 3.4s ease-in-out infinite;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  will-change: background-position, opacity;
  pointer-events: none;
}
.hero__sign img {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.hero__sign--19 {
  transform: rotate(2deg);
  animation: hero-sign-sway-19 2.8s ease-in-out infinite;
}
.hero__sign--19::after {
  mask-image: url("../images/content/hero_roadsign_19.png");
  -webkit-mask-image: url("../images/content/hero_roadsign_19.png");
}
.hero__sign--919 {
  margin-top: -1.5%;
  transform: rotate(-1deg);
  animation: hero-sign-sway-919 5.2s ease-in-out infinite;
}
.hero__sign--919::after {
  animation-delay: 0.45s;
  mask-image: url("../images/content/hero_roadsign_919.png");
  -webkit-mask-image: url("../images/content/hero_roadsign_919.png");
}
.hero__sign--999 {
  margin-top: 1%;
  transform: rotate(1deg);
  animation: hero-sign-sway-999 2.8s ease-in-out infinite;
  animation-delay: 0.65s;
}
.hero__sign--999::after {
  animation-delay: 0.9s;
  mask-image: url("../images/content/hero_roadsign_999.png");
  -webkit-mask-image: url("../images/content/hero_roadsign_999.png");
}
.hero__chart {
  order: 3;
  z-index: 3;
  width: 60%;
  transform-origin: 50% 82%;
  animation: hero-chart-drive 3.6s ease-in-out infinite;
  scale: 1;
  opacity: 1;
  transition: scale 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  will-change: transform, scale, opacity;
}
.hero__chart.is-scrolled-away {
  scale: 0.15;
  opacity: 0;
}
.hero__chart img {
  max-width: 100%;
}
.hero__clouds {
  position: absolute;
  right: 0;
  bottom: -3.8%;
  left: 0;
  z-index: 6;
  height: 16%;
  pointer-events: none;
}
.hero__cloud {
  position: absolute;
  bottom: 0;
  display: block;
  max-width: none;
  height: auto;
}
.hero__cloud--left {
  left: -20%;
  width: 74%;
}
.hero__cloud--right {
  right: -24%;
  width: 82%;
}

@media (max-width: 639px) {
  .hero::before {
    background-attachment: scroll;
  }
}
@keyframes hero-sign-shine {
  0%, 38% {
    background-position: 140% 0;
    opacity: 0;
  }
  48% {
    opacity: 1;
  }
  66% {
    opacity: 1;
  }
  100% {
    background-position: -40% 0;
    opacity: 0;
  }
}
@keyframes hero-sign-sway-19 {
  0%, 62%, 100% {
    transform: translateX(0) rotate(2deg);
  }
  72% {
    transform: translateX(-0.55rem) rotate(2deg);
  }
}
@keyframes hero-sign-sway-919 {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-0.14rem) rotate(0.4deg);
  }
}
@keyframes hero-sign-sway-999 {
  0%, 46%, 100% {
    transform: translateX(0) rotate(1deg);
  }
  58% {
    transform: translateX(0.55rem) rotate(1deg);
  }
}
@keyframes hero-chart-drive {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  22% {
    transform: translate3d(-0.1rem, -0.16rem, 0) rotate(-0.35deg) scale(1);
  }
  48% {
    transform: translate3d(0.12rem, 0.08rem, 0) rotate(0.28deg) scale(1);
  }
  56% {
    transform: translate3d(0, -0.32rem, 0) rotate(-0.18deg) scale(1.035);
  }
  62% {
    transform: translate3d(0, 0.12rem, 0) rotate(0.12deg) scale(0.992);
  }
  68% {
    transform: translate3d(0.04rem, -0.08rem, 0) rotate(0.08deg) scale(1.012);
  }
  74% {
    transform: translate3d(-0.06rem, 0.12rem, 0) rotate(-0.18deg) scale(1);
  }
}
@keyframes hero-deco-drift {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: var(--deco-drift-x) var(--deco-drift-y);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__deco-item,
  .hero__sign,
  .hero__chart,
  .hero__sign::after {
    animation: none;
  }
  .hero__sign::after {
    opacity: 0;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .hero {
    aspect-ratio: auto;
    min-height: clamp(39rem, 82vh, 48rem);
  }
  .hero::after {
    background-image: url("../images/content/BG_hero_PC.png");
    opacity: 0.8;
  }
  .hero__stage {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: clamp(0.25rem, 2vw, 1.5rem);
    padding: 5% 5% 3%;
  }
  .hero__column {
    position: relative;
    display: flex;
    flex: 0 1 45%;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero__title {
    order: initial;
    width: 78%;
    margin: 0;
  }
  .hero__signs {
    order: initial;
    width: 56%;
    margin: 0;
  }
  .hero__chart {
    order: initial;
    width: 58%;
    margin: 0;
  }
  .hero__plant {
    order: initial;
    width: 94%;
    margin: 0;
  }
  .hero__deco-item--banner {
    top: 10%;
    left: 9%;
    width: 10%;
  }
  .hero__deco-item--ribbon {
    top: 29%;
    left: 8%;
    width: 7%;
  }
  .hero__deco-item--flag {
    top: 6%;
    right: 20%;
    width: 6%;
  }
  .hero__deco-item--gift {
    top: 19%;
    right: 3%;
    width: 9%;
  }
  .hero__deco-item--coupon {
    top: 40%;
    left: 8%;
    width: 9%;
  }
  .hero__deco-item--coupon-small {
    display: block;
    right: 7%;
    bottom: 12%;
    width: 8%;
    transform: rotate(-18deg);
  }
  .hero__deco-item--coin-left {
    top: 15%;
    left: 18%;
    width: 5.5%;
  }
  .hero__deco-item--coin-mid {
    top: 31%;
    right: 19%;
    width: 4.5%;
  }
  .hero__deco-item--coin-bottom {
    right: 8%;
    bottom: 7%;
    width: 5.5%;
  }
  .hero__deco-item--drink {
    left: 50%;
    bottom: 2%;
    width: 6.5%;
  }
  .hero__deco-item--burger {
    left: 8%;
    bottom: 11%;
    width: 9%;
  }
  .hero__deco-item--donut {
    left: 39%;
    bottom: 11%;
    width: 7%;
  }
  .hero__deco-item--camera {
    right: 15%;
    bottom: 20%;
    width: 7%;
  }
  .hero__deco-item--suitcase {
    right: 8%;
    bottom: 33%;
    width: 9%;
  }
  .hero__deco-item--popcorn {
    display: block;
    left: 42%;
    bottom: 4%;
    width: 6.5%;
  }
  .hero__deco-item--star-top {
    top: 2%;
    left: 28%;
    width: 5%;
  }
  .hero__deco-item--star-mid {
    top: 22%;
    right: 46%;
    bottom: auto;
    width: 4.5%;
  }
  .hero__clouds {
    bottom: -12%;
    height: 19%;
  }
  .hero__cloud--left {
    left: -8%;
    width: 48%;
  }
  .hero__cloud--right {
    right: -10%;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .hero {
    aspect-ratio: 1920/1082;
    height: 75vh;
    height: calc(var(--viewport-height, 100vh) * 0.75);
  }
  .hero::after {
    background-image: url("../images/content/BG_hero_PC.png");
    opacity: 0.8;
  }
  .hero__deco-item--airplane-top {
    top: 10%;
    left: 52%;
    width: 7.8%;
  }
  .hero__deco-item--airplane-mid {
    display: none;
  }
  .hero__deco-item--banner {
    top: 10%;
    left: 10%;
    width: 8%;
  }
  .hero__deco-item--ribbon {
    top: 30%;
    left: 11%;
    width: 5%;
  }
  .hero__deco-item--flag {
    top: 5.4%;
    left: 47%;
    right: auto;
    width: 4.8%;
  }
  .hero__deco-item--gift {
    top: 18%;
    right: 1%;
    width: 8.8%;
  }
  .hero__deco-item--coupon {
    top: 40%;
    left: 11.5%;
    width: 8.5%;
  }
  .hero__deco-item--coupon-small {
    display: block;
    right: 8%;
    bottom: 11%;
    width: 8%;
    transform: rotate(-18deg);
  }
  .hero__deco-item--coin-left {
    top: 15%;
    left: 16%;
    width: 5%;
  }
  .hero__deco-item--coin-mid {
    top: 30%;
    right: 20%;
    width: 4%;
  }
  .hero__deco-item--coin-bottom {
    right: 6.5%;
    bottom: 6%;
    width: 5.2%;
  }
  .hero__deco-item--drink {
    left: 50%;
    bottom: -4%;
    width: 6%;
  }
  .hero__deco-item--burger {
    left: 10%;
    bottom: 10%;
    width: 8%;
  }
  .hero__deco-item--donut {
    left: 40%;
    bottom: 10%;
    width: 7%;
  }
  .hero__deco-item--camera {
    right: 15%;
    bottom: 20%;
    width: 7.2%;
  }
  .hero__deco-item--suitcase {
    right: 9%;
    bottom: 33%;
    width: 9%;
  }
  .hero__deco-item--popcorn {
    display: block;
    left: 42%;
    bottom: 2.5%;
    width: 6.5%;
  }
  .hero__deco-item--star-top {
    top: 1.4%;
    left: 28.5%;
    width: 4.8%;
  }
  .hero__deco-item--star-mid {
    top: 22%;
    right: 46%;
    bottom: auto;
    width: 4.2%;
  }
  .hero__stage {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .hero__column {
    position: relative;
    display: flex;
    flex: 0 1 35%;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hero__title {
    order: initial;
    flex: 0 0 auto;
    width: 75%;
    margin: 0;
    position: relative;
    right: -2rem;
  }
  .hero__signs {
    order: initial;
    flex: 0 0 auto;
    width: 55%;
    margin: 0;
    position: relative;
    right: -2rem;
  }
  .hero__sign {
    width: 100%;
  }
  .hero__sign--919 {
    width: 96%;
    margin-top: 1.5%;
  }
  .hero__sign--999 {
    width: 92%;
    margin-top: 1.8%;
  }
  .hero__chart {
    order: initial;
    flex: 0 0 auto;
    align-self: center;
    width: 60%;
    margin: 0;
    position: relative;
    left: -2rem;
  }
  .hero__plant {
    order: initial;
    flex: 0 0 auto;
    width: 100%;
    margin: 0;
  }
  .hero__clouds {
    bottom: -20%;
    height: 20%;
  }
  .hero__cloud--left {
    left: -10%;
    width: 45%;
  }
  .hero__cloud--right {
    right: -10%;
    width: 45%;
  }
}
.steps {
  --step-main-width: min(20rem, 100%);
  position: relative;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  scroll-margin-top: 5.25rem;
}
.steps__road {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none;
}
.steps__road-chart {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: clamp(3.25rem, 16vw, 4.5rem);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--steps-chart-x, 0), var(--steps-chart-y, 0), 0) translate(-50%, -50%);
  transform-origin: center;
  transition: opacity 0.2s ease;
  will-change: transform;
}
.steps__road-chart.is-visible {
  opacity: 1;
}
.steps__road-chart-image {
  display: block;
  width: 100%;
  height: auto;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.22rem solid var(--outline-light);
  border-radius: 1.25rem;
  width: min(20rem, 100%);
  padding: 2rem;
  text-align: center;
}
.step:nth-of-type(1) {
  --step-bg-border-width: clamp(3rem, 3vw, 4.5rem);
  isolation: isolate;
  border-color: transparent;
  background: transparent;
  justify-self: start;
  width: var(--step-main-width);
  box-shadow: none;
}
.step:nth-of-type(1)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: var(--step-bg-border-width) solid transparent;
  border-image-source: url("../images/content/BG_frameO.png");
  border-image-slice: 145 fill;
  border-image-width: var(--step-bg-border-width);
  border-image-repeat: stretch;
}
.step:nth-of-type(2) {
  --step-bg-border-width: clamp(3rem, 3vw, 4.5rem);
  isolation: isolate;
  border-color: transparent;
  background: transparent;
  justify-self: end;
  width: var(--step-main-width);
  box-shadow: none;
}
.step:nth-of-type(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: var(--step-bg-border-width) solid transparent;
  border-image-source: url("../images/content/BG_frameB.png");
  border-image-slice: 145 fill;
  border-image-width: var(--step-bg-border-width);
  border-image-repeat: stretch;
}
.step:nth-of-type(2) h3 strong {
  color: var(--color-blue-deep);
}
.step:nth-of-type(2) .button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%), linear-gradient(180deg, #64d2ff 0%, var(--color-blue) 48%, var(--color-blue-deep) 100%);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.34), inset 0 -0.14rem 0 rgba(116, 34, 0, 0.18), 0 0.28rem 0 #075db4, 0 0.72rem 1.05rem rgba(20, 120, 226, 0.26);
  text-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.step:nth-of-type(2) .button::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.8rem auto;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.step:nth-of-type(2) .button:hover {
  transform: translateY(0.08rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.12rem 0 rgba(116, 34, 0, 0.16), 0 0.18rem 0 #075db4, 0 0.55rem 0.9rem rgba(20, 120, 226, 0.26);
}
.step:nth-of-type(2) .button:active {
  transform: translateY(0.18rem);
  box-shadow: inset 0 0.16rem 0 rgba(108, 30, 0, 0.16), inset 0 -0.08rem 0 rgba(255, 255, 255, 0.4), 0 0.08rem 0 #075db4, 0 0.28rem 0.5rem rgba(20, 120, 226, 0.26);
}
.step--result {
  --step-bg-border-width: clamp(3rem, 3vw, 5.5rem);
  isolation: isolate;
  border-color: transparent;
  background: transparent;
  justify-self: center;
  box-shadow: none;
  padding: 12rem 1rem 2rem;
}
.step--result::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: var(--step-bg-border-width) solid transparent;
  border-image-source: url("../images/content/BG_frameG.png");
  border-image-slice: 200 fill;
  border-image-width: var(--step-bg-border-width);
  border-image-repeat: stretch;
}
.step .button {
  width: 10rem;
  text-decoration: none;
  margin: 1rem 0;
}
.step__label {
  position: relative;
  top: -2.5rem;
}
.step__label--image {
  min-width: 0;
  width: 10rem;
  background: transparent;
  padding: 0;
}
.step__label--image img {
  display: block;
  width: 100%;
  height: auto;
}
.step__icon {
  display: grid;
  place-items: center;
  width: 10rem;
  aspect-ratio: 1;
  margin: 0 auto 1.3rem;
}
.step__icon img {
  max-width: 100%;
  height: auto;
}
.step__icon--result {
  position: absolute;
  width: 12rem;
  top: -1.2rem;
}
.step h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  color: var(--color-text);
}
.step h3 strong {
  font-size: 2rem;
  color: var(--color-orange-deep);
  text-shadow: 0 0.12rem 0 #fff;
}
.step p {
  min-height: 3.25rem;
  margin: 1rem;
  line-height: 1.6;
  color: #72401f;
  font-size: 1.2rem;
}

@media (min-width: 640px) {
  .steps {
    --step-main-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 5rem;
  }
  .steps__road-chart {
    width: clamp(3.75rem, 5vw, 5rem);
  }
  .step {
    width: auto;
    max-width: 25rem;
    justify-self: auto;
  }
  .step--result {
    transform: none;
  }
}
@media (min-width: 1024px) {
  .step {
    min-height: 22rem;
    padding-inline: 1.75rem;
  }
}
.member-list {
  display: grid;
  gap: 3.5rem;
}

.member {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.24rem solid #ff8a1d;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 244, 217, 0.96) 100%);
  padding: 3.4rem 1rem 1.25rem;
  scroll-margin-top: 5.25rem;
  box-shadow: 0 0.34rem 0 #df6a00, 0 1rem 2rem rgba(223, 98, 24, 0.22);
}
.member__label {
  position: absolute;
  top: -1.25rem;
  inset-inline: auto;
  align-self: center;
  width: 15rem;
  max-width: calc(100% - 2rem);
}
.member__label img {
  display: block;
  width: 100%;
  height: auto;
}
.member__body {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}
.member__body ul {
  margin: 0;
  padding-left: 1.25rem;
  line-height: 1.75;
  color: #6d3718;
}
.member__body ul strong {
  color: var(--color-orange-deep);
  font-size: 1.5rem;
}
.member__app-button {
  width: 10rem;
  margin-block-start: 0.25rem;
  margin-inline: auto;
  text-decoration: none;
}
.member__mascot {
  display: flex;
  place-items: center;
}
.member__mascot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0.45rem 0 rgba(216, 82, 18, 0.18));
}
.member__mascot--iron {
  position: absolute;
  z-index: 1;
  width: 7rem;
  top: -3.5rem;
  right: -1rem;
}
.member__mascot--god {
  position: relative;
  z-index: 1;
  width: 15rem;
}

.member--small .member__body {
  align-items: center;
}
.member--small .member__body ul {
  display: flex;
  order: 2;
  min-width: 0;
  width: 100%;
  flex-direction: column;
  gap: 0.65rem;
  padding-left: 0;
  list-style: none;
  padding: 0 1.25rem 1rem;
}
.member--small .member__body li {
  border-radius: 0.75rem;
  background: rgb(255, 227, 187);
  padding: 0.7rem 0.9rem;
  overflow-wrap: anywhere;
  font-weight: 600;
  line-height: 1.3rem;
  text-align: center;
}
.member--small .member__body .member__mascot {
  order: 1;
  margin-bottom: 0.75rem;
  transform: none;
}

.member--small {
  --member-bg-border-width: clamp(3rem, 9vw, 4.5rem);
  isolation: isolate;
  border-color: transparent;
  background: transparent;
  padding: 2rem 2.75rem 2rem;
  box-shadow: none;
}
.member--small::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: var(--member-bg-border-width) solid transparent;
  border-image-source: url("../images/content/BG_frameO.png");
  border-image-slice: 145 fill;
  border-image-width: var(--member-bg-border-width);
  border-image-repeat: stretch;
}
.member--small .member__body {
  min-width: 0;
  min-height: 20rem;
  justify-content: center;
  padding-left: 0;
}
.member--small .member__body .button {
  align-self: center;
  max-width: 100%;
  white-space: normal;
  position: absolute;
  padding: 0.5rem 1.25rem;
}
.member--small .member__body .member__app-button {
  order: 3;
  position: static;
  margin-block-start: auto;
  margin-top: -2rem;
}

.member--iron {
  --member-bg-border-width: clamp(2.5rem, 9vw, 4rem);
  isolation: isolate;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.member--iron::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: var(--member-bg-border-width) solid transparent;
  border-image-source: url("../images/content/BG_blue.png");
  border-image-slice: 145 fill;
  border-image-width: var(--member-bg-border-width);
  border-image-repeat: stretch;
}

.member--god {
  --member-bg-border-width: clamp(3rem, 9vw, 5.5rem);
  display: flex;
  position: relative;
  isolation: isolate;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}
.member--god::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: var(--member-bg-border-width) solid transparent;
  border-image-source: url("../images/content/BG_frameG.png");
  border-image-slice: 200 fill;
  border-image-width: var(--member-bg-border-width);
  border-image-repeat: repeat;
}
.member--god .member__label {
  top: -3.25rem;
  width: min(16rem, 100% - 2rem);
}
.member--god .member__body {
  position: relative;
  min-height: 15rem;
  justify-content: center;
  padding-left: 0;
}
.member--god .member__body ul {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 15rem;
  gap: 0.65rem;
  list-style: none;
  padding: 1.25rem 1rem;
  border-radius: 0.75rem;
  background: rgb(255, 227, 187);
  margin: 0.5rem;
}
.member--god .member__body li {
  border-radius: 0.75rem;
  font-weight: 600;
  line-height: 1.3rem;
  text-align: center;
}

.coupon-list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  top: -1rem;
}

.coupon {
  display: flex;
  flex-direction: row;
  flex: 1 1 auto;
  align-items: stretch;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  border: 0;
  background: url("../images/content/BG_coupon.png") center/100% 100% no-repeat;
  padding: 0.75rem;
  text-align: center;
  box-shadow: none;
}
.coupon__block {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.25;
  border-left: 0.14rem dotted var(--muted);
}
.coupon__block:first-child {
  border-left: none;
}
.coupon__block--code {
  flex-grow: 1.45;
  gap: 0.1rem;
}
.coupon__block--code code,
.coupon__block--code small {
  display: block;
}
.coupon__block--action {
  flex: 0 0 4.8rem;
}
.coupon span {
  font-weight: 400;
  color: #6b3719;
}
.coupon strong {
  font-size: 1.35rem;
  color: var(--color-orange-deep);
  text-shadow: 0 0.1rem 0 #fff;
  letter-spacing: -0.05rem;
}
.coupon code {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #5b2f16;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.05rem;
}
.coupon small {
  color: var(--muted);
}

.copy-button {
  width: clamp(3.4rem, 15vw, 4rem);
  min-height: 0;
  aspect-ratio: 1;
  border-radius: 0.85rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.15;
  padding: 0.42rem;
  cursor: pointer;
  white-space: normal;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%), linear-gradient(180deg, #80d1f1 0%, var(--color-blue) 48%, var(--color-blue-deep) 100%);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.34), inset 0 -0.14rem 0 rgba(116, 34, 0, 0.18), 0 0.28rem 0 #075db4, 0 0.72rem 1.05rem rgba(20, 120, 226, 0.26);
  text-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.copy-button::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.8rem auto;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.copy-button:hover {
  transform: translateY(0.08rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.12rem 0 rgba(116, 34, 0, 0.16), 0 0.18rem 0 #075db4, 0 0.55rem 0.9rem rgba(20, 120, 226, 0.26);
}
.copy-button:active {
  transform: translateY(0.18rem);
  box-shadow: inset 0 0.16rem 0 rgba(108, 30, 0, 0.16), inset 0 -0.08rem 0 rgba(255, 255, 255, 0.4), 0 0.08rem 0 #075db4, 0 0.28rem 0.5rem rgba(20, 120, 226, 0.26);
}

@media (min-width: 640px) {
  .member .member__label {
    width: 20rem;
  }
  .member--small {
    width: min(100%, 50rem);
    margin-inline: auto;
  }
  .member__body {
    flex-direction: row;
    align-items: center;
  }
  .member--god .member__body {
    flex-direction: row;
  }
  .member--small .member__body {
    padding-left: min(15rem, 40%);
  }
  .member--small .member__body .member__mascot--new {
    position: absolute;
    left: 0;
    width: 20rem;
    margin-top: 0;
  }
  .member--small .member__body .member__app-button {
    order: initial;
    position: absolute;
    bottom: 2rem;
    margin-block-start: 0;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }
  .member--small .button {
    flex: 0 0 auto;
  }
  .member--god {
    width: min(100%, 40rem);
    min-height: 25rem;
    margin-inline: auto;
  }
  .member--god .member__label {
    top: -5rem;
  }
  .member--god .member__body {
    padding-left: min(15rem, 50%);
    margin-top: 3rem;
  }
  .member--god .member__body .member__mascot--god {
    position: absolute;
    left: 2rem;
    width: 15rem;
  }
  .member--god ul {
    font-size: 1.2rem;
  }
  .member--god ul li {
    padding: 0.2rem;
  }
  .member--god ul li strong {
    font-size: 2rem;
  }
  /*
  .coupon-list {
    gap: 0;
    flex-direction: row;
    background: url("../images/content/BG_coupon.png") center / 100% 100%
      no-repeat;
    padding: 1rem 1.2rem;
  }

  .coupon {
    flex-basis: 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    background: transparent;
    padding: 0.35rem 0.45rem 0.25rem;
    border-left: 0.2rem dotted var(--muted);
    &:first-child {
      border-left: none;
    }
    .coupon__block--discount {
      strong {
        font-size: 2rem;
      }
    }
    .coupon__block {
      flex: 0 0 auto;
      border-left: none;

      &--code {
        flex-grow: 0;
        gap: 0.25rem;
        code {
          font-size: 1.8rem;
          font-weight: 800;
        }
      }

      &--action {
        width: 100%;
        flex-basis: auto;
        margin-top: 0.45rem;
      }
    }
  }

  .copy-button {
    width: 10rem;
    min-height: 2.5rem;
    aspect-ratio: auto;
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
  }
  */
  .coupon-list {
    flex-direction: column;
    gap: 0.85rem;
    background: transparent;
    padding: 0;
  }
  .coupon {
    flex: 1 1 auto;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0.35rem;
    aspect-ratio: 2059/505;
    max-height: 8rem;
    background: url("../images/content/BG_coupon.png") center/100% 100% no-repeat;
    padding: 0.75rem;
    border-left: 0;
  }
  u .coupon:first-child {
    border-left: 0;
  }
  .coupon span {
    font-size: 1.5rem;
    font-weight: 500;
  }
  .coupon .coupon__block {
    flex: 1 1 0;
    border-left: 0.14rem dotted var(--muted);
    gap: 0.5rem;
  }
  .coupon .coupon__block:first-child {
    border-left: none;
  }
  .coupon .coupon__block--code {
    flex-grow: 1.45;
    gap: 0.5rem;
  }
  .coupon .coupon__block--code code {
    font-size: 2rem;
    font-weight: 500;
  }
  .coupon .coupon__block--action {
    width: auto;
    flex: 0 0 10rem;
    margin-top: 0;
  }
  .coupon .coupon__block--discount strong {
    font-size: 2rem;
  }
  .copy-button {
    width: 7rem;
    min-height: 0;
    aspect-ratio: 1;
    border-radius: 0.85rem;
    padding: 0.42rem;
  }
  .member__mascot {
    width: 9rem;
  }
  .member__mascot--iron {
    position: absolute;
    top: -5rem;
    right: 5rem;
    width: 10rem;
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .member-list {
    gap: 5rem;
  }
  .member--iron {
    width: min(100%, 58rem);
    margin-inline: auto;
  }
}
.section--products {
  scroll-margin-top: 5.25rem;
}

.tabs {
  display: grid;
  justify-items: center;
  gap: 0;
}

.tab-list {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  scroll-padding-inline: 0.85rem;
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar {
  display: none;
}

@media (max-width: 639px) {
  .page-content,
  .section--products {
    overflow: clip;
  }
  .tab-list {
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100vw;
    max-width: none;
    margin-inline: calc(50% - 50vw);
  }
}
.tab {
  display: flex;
  min-height: 2rem;
  margin-left: 0;
  border: 0;
  border-radius: 1.15rem 1.15rem 0.45rem 0.45rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  padding: 0.72rem 0.95rem 0.62rem;
  cursor: pointer;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%), linear-gradient(180deg, #ffc04f 0%, var(--color-orange) 48%, #e84e08 100%);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.34), inset 0 -0.14rem 0 rgba(116, 34, 0, 0.18), 0 0.28rem 0 #c84e00, 0 0.72rem 1.05rem rgba(224, 92, 12, 0.24);
  text-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.tab::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.8rem auto;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.tab:hover {
  transform: translateY(0.08rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.12rem 0 rgba(116, 34, 0, 0.16), 0 0.18rem 0 #c84e00, 0 0.55rem 0.9rem rgba(224, 92, 12, 0.24);
}
.tab:active {
  transform: translateY(0.18rem);
  box-shadow: inset 0 0.16rem 0 rgba(108, 30, 0, 0.16), inset 0 -0.08rem 0 rgba(255, 255, 255, 0.4), 0 0.08rem 0 #c84e00, 0 0.28rem 0.5rem rgba(224, 92, 12, 0.24);
}
.tab:nth-child(2) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%), linear-gradient(180deg, #ff8fba 0%, var(--color-pink) 48%, #de2f72 100%);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.34), inset 0 -0.14rem 0 rgba(116, 34, 0, 0.18), 0 0.28rem 0 #ca2767, 0 0.72rem 1.05rem rgba(225, 56, 124, 0.24);
  text-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.tab:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.8rem auto;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.tab:nth-child(2):hover {
  transform: translateY(0.08rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.12rem 0 rgba(116, 34, 0, 0.16), 0 0.18rem 0 #ca2767, 0 0.55rem 0.9rem rgba(225, 56, 124, 0.24);
}
.tab:nth-child(2):active {
  transform: translateY(0.18rem);
  box-shadow: inset 0 0.16rem 0 rgba(108, 30, 0, 0.16), inset 0 -0.08rem 0 rgba(255, 255, 255, 0.4), 0 0.08rem 0 #ca2767, 0 0.28rem 0.5rem rgba(225, 56, 124, 0.24);
}
.tab:nth-child(3) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%), linear-gradient(180deg, #d7a5ff 0%, #9d62ff 48%, #7340df 100%);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.34), inset 0 -0.14rem 0 rgba(116, 34, 0, 0.18), 0 0.28rem 0 #6736cc, 0 0.72rem 1.05rem rgba(124, 69, 214, 0.24);
  text-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.tab:nth-child(3)::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.8rem auto;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.tab:nth-child(3):hover {
  transform: translateY(0.08rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.12rem 0 rgba(116, 34, 0, 0.16), 0 0.18rem 0 #6736cc, 0 0.55rem 0.9rem rgba(124, 69, 214, 0.24);
}
.tab:nth-child(3):active {
  transform: translateY(0.18rem);
  box-shadow: inset 0 0.16rem 0 rgba(108, 30, 0, 0.16), inset 0 -0.08rem 0 rgba(255, 255, 255, 0.4), 0 0.08rem 0 #6736cc, 0 0.28rem 0.5rem rgba(124, 69, 214, 0.24);
}
.tab:nth-child(4) {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 32%), linear-gradient(180deg, #75d6ff 0%, var(--color-blue) 48%, var(--color-blue-deep) 100%);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.34), inset 0 -0.14rem 0 rgba(116, 34, 0, 0.18), 0 0.28rem 0 #0873c9, 0 0.72rem 1.05rem rgba(24, 128, 222, 0.24);
  text-shadow: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.tab:nth-child(4)::before {
  content: "";
  position: absolute;
  inset: 0.18rem 0.8rem auto;
  z-index: -1;
  height: 18%;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  pointer-events: none;
}
.tab:nth-child(4):hover {
  transform: translateY(0.08rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.12rem 0 rgba(116, 34, 0, 0.16), 0 0.18rem 0 #0873c9, 0 0.55rem 0.9rem rgba(24, 128, 222, 0.24);
}
.tab:nth-child(4):active {
  transform: translateY(0.18rem);
  box-shadow: inset 0 0.16rem 0 rgba(108, 30, 0, 0.16), inset 0 -0.08rem 0 rgba(255, 255, 255, 0.4), 0 0.08rem 0 #0873c9, 0 0.28rem 0.5rem rgba(24, 128, 222, 0.24);
}
.tab[aria-selected=false] {
  filter: grayscale(0.8) saturate(0.1);
}
.tab[aria-selected=true] {
  z-index: 2;
  padding-bottom: 0.78rem;
  outline: 0;
  color: #fff;
  transform: translateY(0.18rem);
}

@media (max-width: 639px) {
  .tab {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }
  .tab + .tab {
    margin-left: -1.5rem;
  }
}
.tab-panel[hidden] {
  display: none;
}

.tab-panel {
  width: 100%;
  border: 0.18rem solid rgba(255, 255, 255, 0.72);
  border-radius: 0 0 1rem 1rem;
  background: rgba(255, 246, 224, 0.72);
  padding: 0.5rem;
}
.tab-panel[data-panel=food] {
  background: rgb(255, 239, 202);
}
.tab-panel[data-panel=travel] {
  background: rgb(255, 222, 236);
}
.tab-panel[data-panel=beauty] {
  background: rgb(236, 222, 255);
}
.tab-panel[data-panel=health] {
  background: rgb(219, 242, 255);
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.product {
  display: block;
  position: relative;
  min-width: 0;
  border: 0;
  border-radius: 0.9rem;
  background: rgba(255, 253, 247, 0.92);
  color: inherit;
  text-decoration: none;
  box-shadow: none;
  overflow: hidden;
}
.product__image {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 730/487;
  border-bottom: 0;
  background: #fff;
  color: #a05724;
  font-size: 0.65rem;
  font-weight: 700;
}
.product__image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(270deg, rgba(74, 31, 12, 0.42) 0%, rgba(74, 31, 12, 0.18) 36%, rgba(74, 31, 12, 0) 72%);
  pointer-events: none;
}
.product__badge {
  position: absolute;
  top: 0;
  right: 0.45rem;
  z-index: 2;
  width: clamp(2.5rem, 20%, 3.8rem);
  height: auto;
  filter: drop-shadow(0 0.16rem 0 rgba(142, 61, 0, 0.2));
  pointer-events: none;
}
.product__photo {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__body {
  padding: 0.5rem;
}
.product__body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  color: #4f210f;
}
.product__price {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
}
.product__price del {
  color: #9c755c;
  font-size: 1.2rem;
}
.product__price .product__sale-price {
  justify-self: start;
  color: var(--color-orange-deep);
  font-size: 1.5rem;
  line-height: 1.2;
}
.product__link {
  width: 6rem;
  margin-inline: auto;
  text-decoration: none;
}

@media (min-width: 640px) {
  .tab-list {
    overflow: visible;
    justify-content: center;
    margin-bottom: 0;
    padding-inline: 0.65rem;
  }
  .tab {
    flex: 1 1 0;
    max-width: 12rem;
    margin-left: -0.9rem;
  }
  .products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}
.accordion {
  border: 0.22rem solid #ff9a2d;
  border-radius: 1.15rem;
  background: linear-gradient(180deg, #fffdf8 0%, #fff0cc 100%);
  padding-inline: 1rem;
  box-shadow: 0 0.34rem 0 #d86600, 0 1rem 1.8rem rgba(217, 94, 22, 0.2);
  overflow: hidden;
}
.accordion__item + .accordion__item {
  border-top: 0.12rem dashed #ffc066;
}
.accordion__trigger {
  display: flex;
  width: 100%;
  min-height: 3.75rem;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: var(--color-text);
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
}
.accordion__trigger::after {
  content: "+";
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 1.9rem;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 34%), linear-gradient(180deg, #ffc24f 0%, var(--color-orange) 52%, #e84e08 100%);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  text-shadow: none;
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.3), inset 0 -0.1rem 0 rgba(130, 38, 0, 0.16), 0 0.16rem 0 #c94b00;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.accordion__trigger:hover::after {
  transform: translateY(0.06rem);
  filter: saturate(1.08);
  box-shadow: inset 0 0.08rem 0 rgba(255, 255, 255, 0.28), inset 0 -0.08rem 0 rgba(130, 38, 0, 0.14), 0 0.1rem 0 #c94b00;
}
.accordion__trigger[aria-expanded=true]::after {
  content: "−";
}
.accordion__panel {
  overflow: hidden;
  padding: 0 0 1rem;
  color: #7b492c;
  line-height: 1.65;
}
.accordion__panel[hidden] {
  display: none;
}
.accordion__coupon-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
}
.accordion__coupon-list li {
  display: grid;
  gap: 0.1rem;
  padding: 0.65rem 0.75rem;
  border: 0.08rem dashed #f2ad58;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.58);
}
.accordion__coupon-list strong {
  color: var(--color-orange);
  font-size: 1.05rem;
}
.accordion__coupon-list span {
  display: block;
}

@media (min-width: 768px) {
  .accordion__coupon-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}/*# sourceMappingURL=main.css.map */