:root {
  --sky: #5bd6ff;
  --sky-deep: #249fe8;
  --blue: #2368ff;
  --navy: #13213f;
  --navy-soft: #20345f;
  --lime: #bcff4f;
  --grass: #5dcc45;
  --cream: #fff8e7;
  --paper: #fffdf7;
  --yellow: #ffd33d;
  --orange: #ff913b;
  --coral: #ff5c69;
  --purple: #8f69ff;
  --rakuten: #bf0000;
  --amazon: #ff9900;
  --line: rgba(19, 33, 63, .18);
  --shadow: 0 18px 45px rgba(19, 33, 63, .18);
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", "Yu Gothic", "Hiragino Maru Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--navy);
  background: var(--cream);
  font-weight: 700;
  line-height: 1.8;
}

body.is-locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

button:focus,
a:focus,
summary:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

main > section {
  scroll-margin-top: 108px;
}

.affiliate-strip {
  position: relative;
  z-index: 55;
  min-height: 32px;
  margin: 0;
  padding: 6px 88px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.7;
  text-align: center;
}

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  background: var(--sky);
  transition: opacity .25s ease, visibility .25s ease;
}

body.is-loaded .splash {
  visibility: hidden;
  opacity: 0;
}

.splash p {
  margin: 0;
  font-size: 13px;
  letter-spacing: .18em;
}

.splash__blocks {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 72px;
}

.splash__blocks i {
  display: block;
  width: 48px;
  height: 48px;
  background: var(--yellow);
  box-shadow: inset -10px -10px rgba(19, 33, 63, .1);
  animation: blockJump .75s ease-in-out infinite alternate;
}

.splash__blocks i:nth-child(2) {
  height: 64px;
  background: var(--coral);
  animation-delay: .12s;
}

.splash__blocks i:nth-child(3) {
  height: 38px;
  background: var(--lime);
  animation-delay: .24s;
}

.site-header {
  position: fixed;
  top: 32px;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding: 0 38px;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 30px rgba(19, 33, 63, .08);
  backdrop-filter: blur(14px);
}

.site-logo {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 240px;
}

.site-logo__mark {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  background: var(--blue);
  transform: rotate(12deg);
  box-shadow: inset -8px -8px rgba(19, 33, 63, .12);
}

.site-logo__mark::after {
  position: absolute;
  inset: 11px;
  background: #fff;
  content: "";
}

.site-logo strong,
.site-logo small {
  display: block;
  line-height: 1;
}

.site-logo strong {
  font-size: 19px;
  letter-spacing: -.03em;
}

.site-logo small {
  margin-top: 7px;
  color: var(--blue);
  font-size: 9px;
  letter-spacing: .16em;
}

.site-nav {
  display: flex;
  gap: clamp(22px, 2.8vw, 42px);
  align-items: center;
  margin-right: 78px;
  font-size: 12px;
  font-weight: 900;
}

.site-nav a {
  position: relative;
  padding: 12px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 4px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.menu-button {
  position: fixed;
  top: 47px;
  right: 30px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: rotate(3deg);
}

.menu-button span {
  display: block;
  width: 22px;
  height: 3px;
  margin: 3px auto;
  border-radius: 99px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  width: min(480px, 100vw);
  padding: 106px 42px 42px;
  overflow: hidden;
  background: var(--lime);
  box-shadow: -24px 0 70px rgba(19, 33, 63, .22);
  transform: translateX(105%);
  transition: transform .35s ease;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__close {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 3px solid currentColor;
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.drawer a {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 2px solid rgba(19, 33, 63, .16);
}

.drawer a span {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.drawer a small {
  font-size: 11px;
}

.drawer__world {
  position: absolute;
  right: -56px;
  bottom: -38px;
  width: 230px;
  height: 160px;
  background: var(--grass);
  transform: rotate(-8deg);
  box-shadow: inset 0 -58px #a56f47;
}

.drawer__world i {
  position: absolute;
  bottom: 70px;
  width: 48px;
  height: 72px;
  background: var(--coral);
  box-shadow: inset -10px -10px rgba(19, 33, 63, .12);
}

.drawer__world i:nth-child(1) { left: 34px; }
.drawer__world i:nth-child(2) { left: 95px; height: 110px; background: var(--blue); }
.drawer__world i:nth-child(3) { left: 155px; height: 54px; background: var(--yellow); }

.store-bubble {
  position: fixed;
  right: 32px;
  bottom: 30px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 20px;
  border: 7px solid #fff;
  border-radius: 50%;
  background: var(--rakuten);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
}

.store-bubble:hover {
  transform: rotate(4deg) scale(1.04);
}

.store-bubble span,
.store-bubble strong {
  display: block;
}

.store-bubble span {
  font-size: 10px;
  line-height: 1.1;
  letter-spacing: .1em;
}

.store-bubble strong {
  margin-top: 3px;
  font-size: 15px;
  line-height: 1.25;
}

.hero {
  position: relative;
  min-height: 760px;
  height: calc(100svh - 32px);
  overflow: hidden;
  background: linear-gradient(180deg, var(--sky) 0 68%, #80eaff 68%);
}

.hero::after {
  position: absolute;
  right: -10%;
  bottom: -126px;
  left: -10%;
  height: 230px;
  border-radius: 50% 50% 0 0;
  background: var(--cream);
  content: "";
}

.hero__sky {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 18%, rgba(255, 255, 255, .72) 0 2%, transparent 2.2%),
    radial-gradient(circle at 85% 24%, rgba(255, 255, 255, .5) 0 1%, transparent 1.2%),
    linear-gradient(125deg, transparent 0 56%, rgba(255, 255, 255, .14) 56% 72%, transparent 72%);
}

.cloud {
  position: absolute;
  display: block;
  width: 154px;
  height: 34px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .72);
}

.cloud::before,
.cloud::after {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
  content: "";
}

.cloud::before {
  left: 30px;
  width: 58px;
  height: 58px;
}

.cloud::after {
  right: 30px;
  width: 76px;
  height: 76px;
}

.cloud--one { top: 20%; left: 39%; transform: scale(.7); }
.cloud--two { top: 12%; right: 8%; transform: scale(.46); opacity: .65; }
.cloud--three { right: 31%; bottom: 24%; transform: scale(.36); opacity: .45; }

.hero__copy {
  position: relative;
  z-index: 4;
  width: min(600px, 46vw);
  padding: 152px 0 100px 6vw;
}

.hero__eyebrow,
.section-title__tag {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(62px, 7.1vw, 112px);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.08em;
}

.hero h1 em {
  position: relative;
  color: #fff;
  font-style: normal;
  text-shadow: 5px 5px 0 var(--blue);
}

.hero h1 em::after {
  position: absolute;
  right: -30px;
  bottom: 8px;
  width: 20px;
  height: 20px;
  background: var(--lime);
  content: "";
  transform: rotate(17deg);
}

.hero__lead {
  width: min(520px, 100%);
  margin: 28px 0 0;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.8;
}

.hero__note {
  margin: 16px 0 0;
  font-size: 10px;
  line-height: 1.6;
}

.mall-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.mall-buttons--hero {
  margin-top: 26px;
}

.mall-button {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 210px;
  min-height: 58px;
  padding: 10px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 10px 22px rgba(19, 33, 63, .15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mall-button::after {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 32px;
  height: 190%;
  background: rgba(255, 255, 255, .28);
  content: "";
  transform: rotate(18deg);
  animation: ctaSheen 5s ease-in-out infinite;
}

.mall-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(19, 33, 63, .22);
}

.mall-button small,
.mall-button span {
  display: block;
}

.mall-button small {
  font-size: 9px;
  letter-spacing: .12em;
}

.mall-button span {
  font-size: 14px;
}

.mall-button--rakuten {
  background: var(--rakuten);
}

.mall-button--amazon {
  background: #20252b;
  color: #fff;
}

.mall-button--amazon small {
  color: var(--amazon);
}

.hero__scene {
  position: absolute;
  z-index: 3;
  top: 122px;
  right: 0;
  width: 58%;
  height: calc(100% - 130px);
}

.island {
  position: absolute;
  background: var(--grass);
  box-shadow: inset 0 -70px #a87149, 0 25px 40px rgba(19, 33, 63, .22);
  transform: rotate(-5deg) skewY(1deg);
}

.island::after {
  position: absolute;
  right: 0;
  bottom: -42px;
  left: 0;
  height: 72px;
  background: repeating-linear-gradient(90deg, #8f5b38 0 42px, #b8794d 42px 82px);
  clip-path: polygon(0 0, 100% 0, 92% 45%, 78% 60%, 68% 100%, 50% 66%, 35% 92%, 18% 50%);
  content: "";
}

.island--main {
  right: 8%;
  bottom: 23%;
  width: min(570px, 70%);
  height: 220px;
}

.island--back {
  top: 16%;
  right: 10%;
  width: 230px;
  height: 100px;
  opacity: .8;
  transform: scale(.7) rotate(7deg);
}

.island--front {
  right: -8%;
  bottom: 5%;
  width: 330px;
  height: 120px;
  transform: rotate(8deg);
}

.island > i {
  position: absolute;
  bottom: 94px;
  display: block;
  width: 58px;
  height: 80px;
  background: var(--purple);
  box-shadow: inset -12px -12px rgba(19, 33, 63, .14);
}

.island > i:nth-child(1) { left: 44px; }
.island > i:nth-child(2) { left: 120px; height: 130px; background: var(--coral); }
.island > i:nth-child(3) { right: 30px; height: 54px; background: var(--yellow); }

.tree {
  position: absolute;
  bottom: 126px;
  display: block;
  width: 30px;
  height: 75px;
  background: #87543b;
}

.tree::before {
  position: absolute;
  top: -54px;
  left: -24px;
  width: 78px;
  height: 62px;
  background: #24aa48;
  box-shadow: inset -16px -14px rgba(19, 33, 63, .12);
  content: "";
}

.tree--one { left: 13%; }
.tree--two { right: 11%; transform: scale(.72); }

.coin {
  position: absolute;
  bottom: 174px;
  display: block;
  width: 36px;
  height: 36px;
  border: 6px solid #ffe788;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 8px 0 rgba(19, 33, 63, .14);
  animation: coinFloat 1.4s ease-in-out infinite alternate;
}

.coin--one { left: 30%; }
.coin--two { right: 28%; bottom: 220px; animation-delay: .35s; }

.block-avatar {
  position: absolute;
  z-index: 2;
  right: 32%;
  bottom: 184px;
  width: 130px;
  height: 245px;
  filter: drop-shadow(16px 18px 14px rgba(19, 33, 63, .2));
  transform: rotate(4deg);
  animation: avatarFloat 2.4s ease-in-out infinite alternate;
}

.block-avatar i {
  position: absolute;
  display: block;
  box-shadow: inset -14px -14px rgba(19, 33, 63, .12);
}

.block-avatar__head {
  top: 0;
  left: 35px;
  width: 72px;
  height: 72px;
  background: var(--yellow);
}

.block-avatar__head::before {
  position: absolute;
  top: 27px;
  left: 17px;
  width: 8px;
  height: 8px;
  background: var(--navy);
  box-shadow: 31px 0 var(--navy);
  content: "";
}

.block-avatar__head::after {
  position: absolute;
  top: 45px;
  left: 25px;
  width: 24px;
  height: 5px;
  background: var(--navy);
  content: "";
}

.block-avatar__body {
  top: 78px;
  left: 25px;
  width: 94px;
  height: 92px;
  background: var(--blue);
}

.block-avatar__arm {
  top: 82px;
  width: 28px;
  height: 94px;
  background: var(--yellow);
}

.block-avatar__arm--left { left: -8px; transform: rotate(9deg); }
.block-avatar__arm--right { right: -12px; transform: rotate(-14deg); }

.block-avatar__leg {
  top: 168px;
  width: 42px;
  height: 76px;
  background: var(--navy);
}

.block-avatar__leg--left { left: 28px; }
.block-avatar__leg--right { right: 11px; }

.hero__scroll {
  position: absolute;
  z-index: 5;
  right: 48%;
  bottom: 54px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 9px;
  letter-spacing: .15em;
}

.hero__scroll i {
  display: block;
  width: 42px;
  height: 42px;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.hero__scroll i::after {
  display: block;
  width: 9px;
  height: 9px;
  margin: 12px auto;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  content: "";
  transform: rotate(45deg);
}

.news {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 42px minmax(0, 860px) 42px;
  gap: 22px;
  justify-content: center;
  align-items: center;
  padding: 38px 24px 66px;
}

.news__arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: var(--paper);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.news__arrow--next {
  background: var(--navy);
  color: #fff;
}

.news__pill {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 66px;
  padding: 16px 30px;
  border: 3px solid var(--navy);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 8px 8px 0 var(--lime);
}

.news__pill strong {
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
}

.news__date {
  color: var(--blue);
  font-size: 12px;
}

.news__link {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.news__date,
.news__link {
  transition: opacity .17s ease, transform .17s ease;
}

.news__pill.is-changing .news__date,
.news__pill.is-changing .news__link {
  opacity: 0;
  transform: translateY(5px);
}

.section-title {
  position: relative;
  z-index: 2;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(50px, 6vw, 86px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.06em;
}

.section-title > p:last-child {
  margin: 10px 0 0;
  font-size: 16px;
}

.section-title--light {
  color: var(--navy);
}

.story {
  padding: 50px 24px 144px;
  background: var(--cream);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 58px auto 0;
}

.story-world {
  position: relative;
  min-height: 440px;
  border: 5px solid var(--navy);
  border-radius: 18px;
  background: linear-gradient(var(--sky) 0 63%, #91e2ff 63%);
  box-shadow: 12px 12px 0 var(--yellow);
  overflow: hidden;
}

.story-world::before,
.story-world::after {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .65);
  content: "";
}

.story-world::before {
  top: 50px;
  left: 55px;
  width: 90px;
  height: 26px;
  box-shadow: 240px 80px 0 -5px rgba(255, 255, 255, .55);
}

.story-world::after {
  right: 66px;
  bottom: 88px;
  width: 110px;
  height: 50px;
  background: #27ad4b;
  box-shadow: -330px -24px 0 #3fc75d;
}

.story-world__floor {
  position: absolute;
  right: -10%;
  bottom: -38px;
  left: -10%;
  height: 160px;
  background: var(--grass);
  box-shadow: inset 0 -68px #a56f47;
  transform: rotate(-2deg);
}

.story-world__tower {
  position: absolute;
  bottom: 94px;
  width: 110px;
  background: var(--purple);
  box-shadow: inset -18px -18px rgba(19, 33, 63, .14);
}

.story-world__tower::before {
  position: absolute;
  top: -38px;
  right: 0;
  left: 0;
  height: 42px;
  background: repeating-linear-gradient(90deg, currentColor 0 22px, transparent 22px 34px);
  color: inherit;
  content: "";
}

.story-world__tower--one {
  left: 19%;
  height: 160px;
  color: var(--purple);
}

.story-world__tower--two {
  right: 17%;
  height: 230px;
  background: var(--coral);
  color: var(--coral);
}

.story-world__bridge {
  position: absolute;
  right: 30%;
  bottom: 185px;
  width: 230px;
  height: 24px;
  background: var(--yellow);
  transform: rotate(-4deg);
}

.story-world__flag {
  position: absolute;
  right: calc(17% + 52px);
  bottom: 322px;
  width: 7px;
  height: 72px;
  background: var(--navy);
}

.story-world__flag::after {
  position: absolute;
  top: 0;
  left: 7px;
  width: 54px;
  height: 34px;
  background: var(--lime);
  content: "";
}

.story__copy {
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 900;
  line-height: 2;
}

.story__copy p {
  margin: 0 0 26px;
}

.guide,
.compare {
  position: relative;
  overflow: hidden;
  background: var(--sky);
}

.guide {
  padding: 150px 24px 138px;
}

.guide::before,
.lineup::before {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 150vw;
  height: 410px;
  border-radius: 0 0 50% 50%;
  background: var(--cream);
  content: "";
  transform: translateX(-50%);
}

.arc-word {
  position: absolute;
  top: 77px;
  left: 50%;
  width: 1500px;
  color: rgba(19, 33, 63, .09);
  font-size: clamp(80px, 9vw, 138px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%) rotate(5deg);
}

.guide__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1080px, 100%);
  margin: 58px auto 0;
}

.guide__cards article {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border: 4px solid var(--navy);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 10px 10px 0 rgba(19, 33, 63, .12);
}

.guide__cards > article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 9px;
  background: var(--navy);
  color: #fff;
}

.guide__cards h3 {
  margin: 24px 0 10px;
  font-size: 24px;
  line-height: 1.35;
}

.guide__cards p {
  margin: 0;
  font-size: 14px;
}

.check-icon {
  position: relative;
  width: 112px;
  height: 96px;
  margin: 26px auto 0;
}

.check-icon::before,
.check-icon::after {
  position: absolute;
  content: "";
}

.check-icon--shop::before {
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 62px;
  background: var(--coral);
  box-shadow: inset -14px -14px rgba(19, 33, 63, .1);
}

.check-icon--shop::after {
  top: 5px;
  left: 0;
  width: 112px;
  height: 38px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 22px, #fff 22px 44px);
  clip-path: polygon(8% 0, 92% 0, 100% 70%, 93% 100%, 76% 75%, 58% 100%, 40% 76%, 23% 100%, 7% 76%, 0 65%);
}

.check-icon--globe {
  border: 10px solid var(--blue);
  border-radius: 50%;
}

.check-icon--globe::before {
  inset: 12px 34px;
  border-right: 5px solid var(--blue);
  border-left: 5px solid var(--blue);
  border-radius: 50%;
}

.check-icon--globe::after {
  top: 34px;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--blue);
  box-shadow: 0 22px var(--blue);
}

.check-icon--price::before {
  inset: 10px;
  border-radius: 12px;
  background: var(--lime);
  box-shadow: inset -14px -14px rgba(19, 33, 63, .1);
  transform: rotate(-7deg);
}

.check-icon--price::after {
  top: 29px;
  left: 43px;
  width: 20px;
  height: 35px;
  border: 7px solid var(--navy);
  border-top: 0;
  border-bottom: 0;
  content: "¥";
  font-size: 30px;
  font-weight: 900;
  line-height: 35px;
  text-align: center;
}

.categories {
  margin-top: -1px;
  padding: 118px 24px 138px;
  border-radius: 88px 88px 0 0;
  background: var(--cream);
}

.category-layout {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .7fr) 98px;
  gap: clamp(30px, 5vw, 62px);
  align-items: center;
  width: min(1120px, 100%);
  margin: 62px auto 0;
}

.category-stage {
  position: relative;
  min-height: 460px;
  border: 5px solid var(--navy);
  border-radius: 22px;
  background: var(--sky);
  box-shadow: 12px 12px 0 var(--lime);
  overflow: hidden;
  transition: background .25s ease;
}

.category-stage::before {
  position: absolute;
  right: -70px;
  bottom: 20px;
  left: -70px;
  height: 180px;
  background: var(--grass);
  box-shadow: inset 0 -72px #a66d48;
  content: "";
  transform: rotate(-5deg);
}

.category-stage__platform {
  position: absolute;
  z-index: 1;
  right: 14%;
  bottom: 112px;
  left: 14%;
  height: 65px;
  background: rgba(255, 255, 255, .38);
  box-shadow: 0 12px 0 rgba(19, 33, 63, .12);
  transform: skewY(-4deg);
}

.category-object {
  position: absolute;
  z-index: 2;
  display: block;
  box-shadow: inset -18px -18px rgba(19, 33, 63, .13), 12px 16px 20px rgba(19, 33, 63, .14);
  transition: all .28s ease;
}

.category-object--a {
  bottom: 160px;
  left: 20%;
  width: 125px;
  height: 170px;
  background: var(--coral);
  transform: rotate(-8deg);
}

.category-object--b {
  right: 20%;
  bottom: 150px;
  width: 130px;
  height: 205px;
  background: var(--blue);
  transform: rotate(7deg);
}

.category-object--c {
  top: 72px;
  left: 50%;
  width: 60px;
  height: 60px;
  border: 9px solid #fff1a6;
  border-radius: 50%;
  background: var(--yellow);
  transform: translateX(-50%);
}

.category-stage.is-books .category-object--a::after,
.category-stage.is-books .category-object--b::after {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  height: 8px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 20px rgba(255, 255, 255, .52), 0 40px rgba(255, 255, 255, .52);
  content: "";
}

.category-stage.is-figures {
  background: #bca7ff;
}

.category-stage.is-figures .category-object--a {
  width: 90px;
  height: 90px;
  background: var(--yellow);
  transform: rotate(5deg);
}

.category-stage.is-figures .category-object--b {
  width: 100px;
  height: 170px;
  background: var(--coral);
  transform: rotate(-4deg);
}

.category-stage.is-figures .category-object--c {
  top: 112px;
  width: 92px;
  height: 92px;
  border: 0;
  border-radius: 0;
  background: var(--lime);
  transform: translateX(-50%) rotate(12deg);
}

.category-stage.is-fashion {
  background: #ffb2bd;
}

.category-stage.is-fashion .category-object--a {
  left: 26%;
  width: 190px;
  height: 150px;
  background: var(--blue);
  clip-path: polygon(25% 0, 42% 12%, 58% 12%, 75% 0, 100% 24%, 82% 48%, 73% 38%, 73% 100%, 27% 100%, 27% 38%, 18% 48%, 0 24%);
}

.category-stage.is-fashion .category-object--b {
  right: 16%;
  width: 100px;
  height: 110px;
  background: var(--yellow);
}

.category-stage.is-fashion .category-object--c {
  top: 78px;
  left: 68%;
  border-color: #fff;
}

.category-stage.is-gift {
  background: #ffe072;
}

.category-stage.is-gift .category-object--a {
  left: 22%;
  width: 210px;
  height: 135px;
  border: 8px solid #fff;
  border-radius: 10px;
  background: var(--purple);
  transform: rotate(-6deg);
}

.category-stage.is-gift .category-object--a::after {
  position: absolute;
  top: 43px;
  left: 78px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.category-stage.is-gift .category-object--b {
  right: 15%;
  width: 90px;
  height: 90px;
  background: var(--coral);
  transform: rotate(14deg);
}

.category-stage.is-gift .category-object--c {
  top: 55px;
  left: 24%;
  border-color: #fff;
}

.category-copy h3 {
  margin: 0;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.2;
}

.category-copy__no,
.category-copy__en {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .12em;
}

.category-copy__description {
  margin: 22px 0 0;
  font-size: 17px;
}

.category-copy__caution {
  margin: 22px 0;
  padding: 12px 16px;
  border-left: 5px solid var(--coral);
  background: #fff0d8;
  font-size: 12px;
}

.category-copy__no,
.category-copy__title,
.category-copy__en,
.category-copy__description,
.category-copy__caution {
  transition: opacity .17s ease, transform .17s ease;
}

.category-copy.is-changing .category-copy__no,
.category-copy.is-changing .category-copy__title,
.category-copy.is-changing .category-copy__en,
.category-copy.is-changing .category-copy__description,
.category-copy.is-changing .category-copy__caution {
  opacity: 0;
  transform: translateY(7px);
}

.category-copy .mall-button {
  min-width: 175px;
}

.category-rail {
  display: grid;
  gap: 12px;
}

.category-rail button {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 52px;
  padding: 8px;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.category-rail button i {
  display: block;
  width: 30px;
  height: 30px;
  background: var(--blue);
  box-shadow: inset -7px -7px rgba(19, 33, 63, .1);
}

.category-rail button:nth-child(2) i { background: var(--purple); border-radius: 50%; }
.category-rail button:nth-child(3) i { background: var(--coral); transform: rotate(8deg); }
.category-rail button:nth-child(4) i { background: var(--yellow); border: 4px solid var(--navy); }

.category-rail button.is-active {
  border-color: var(--navy);
  background: var(--lime);
  box-shadow: 5px 5px 0 var(--navy);
  transform: translate(-3px, -3px);
}

.lineup {
  position: relative;
  overflow: hidden;
  padding: 152px 24px 138px;
  background: var(--cream);
}

.lineup::before {
  top: -300px;
  background: var(--sky);
}

.arc-word--lineup {
  top: 64px;
  transform: translateX(-50%) rotate(-5deg);
}

.lineup-world {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  min-height: 390px;
  margin: 58px auto 0;
  border: 5px solid var(--navy);
  border-radius: 22px;
  background: linear-gradient(165deg, var(--sky) 0 60%, #58c649 60%);
  box-shadow: 13px 13px 0 var(--yellow);
  overflow: hidden;
}

.lineup-world::after {
  position: absolute;
  right: -10%;
  bottom: -50px;
  left: -10%;
  height: 160px;
  background: #9f6a46;
  content: "";
  transform: rotate(3deg);
}

.lineup-world span {
  position: absolute;
  z-index: 1;
  bottom: 92px;
  display: block;
  width: 100px;
  height: 150px;
  background: var(--coral);
  box-shadow: inset -18px -18px rgba(19, 33, 63, .14);
  transform: rotate(-5deg);
}

.lineup-world span:nth-child(1) { left: 7%; }
.lineup-world span:nth-child(2) { left: 23%; height: 220px; background: var(--purple); transform: rotate(4deg); }
.lineup-world span:nth-child(3) { right: 26%; width: 160px; height: 90px; background: var(--yellow); }
.lineup-world span:nth-child(4) { right: 8%; height: 190px; background: var(--blue); transform: rotate(6deg); }
.lineup-world span:nth-child(5) { top: 65px; left: 50%; width: 54px; height: 54px; border: 9px solid #fff; border-radius: 50%; background: var(--yellow); animation: coinFloat 1.4s ease-in-out infinite alternate; }

.lineup-world strong {
  position: absolute;
  z-index: 3;
  top: 82px;
  left: 50%;
  color: #fff;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .86;
  text-align: center;
  text-shadow: 6px 6px 0 var(--navy);
  transform: translateX(-50%) rotate(-3deg);
}

.product-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 50px auto 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 20px;
  border: 3px solid var(--navy);
  border-radius: 17px;
  background: var(--paper);
  box-shadow: 8px 8px 0 rgba(19, 33, 63, .1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 12px 14px 0 rgba(19, 33, 63, .13);
}

.product-card__visual {
  position: relative;
  min-height: 230px;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--sky);
  overflow: hidden;
}

.product-card__visual::after {
  position: absolute;
  right: -20px;
  bottom: -35px;
  left: -20px;
  height: 100px;
  background: var(--grass);
  box-shadow: inset 0 -44px #a16d49;
  content: "";
  transform: rotate(-4deg);
}

.product-card__visual i {
  position: absolute;
  z-index: 1;
  display: block;
  box-shadow: inset -12px -12px rgba(19, 33, 63, .12), 8px 10px 12px rgba(19, 33, 63, .12);
}

.product-card--books .product-card__visual i {
  bottom: 74px;
  width: 76px;
  height: 110px;
  background: var(--coral);
  transform: rotate(-8deg);
}

.product-card--books .product-card__visual i:nth-child(1) { left: 23%; }
.product-card--books .product-card__visual i:nth-child(2) { left: 43%; bottom: 66px; height: 130px; background: var(--blue); transform: rotate(2deg); }
.product-card--books .product-card__visual i:nth-child(3) { right: 20%; height: 96px; background: var(--yellow); transform: rotate(9deg); }

.product-card--figures .product-card__visual { background: #c8b6ff; }
.product-card--figures .product-card__visual i:nth-child(1) { left: 21%; bottom: 72px; width: 64px; height: 64px; background: var(--yellow); }
.product-card--figures .product-card__visual i:nth-child(2) { left: 43%; bottom: 55px; width: 70px; height: 125px; background: var(--coral); }
.product-card--figures .product-card__visual i:nth-child(3) { right: 14%; bottom: 73px; width: 58px; height: 88px; background: var(--lime); transform: rotate(9deg); }

.product-card--fashion .product-card__visual { background: #ffb7c0; }
.product-card--fashion .product-card__visual i:nth-child(1) { left: 22%; bottom: 63px; width: 150px; height: 130px; background: var(--blue); clip-path: polygon(25% 0, 42% 12%, 58% 12%, 75% 0, 100% 25%, 80% 46%, 70% 35%, 70% 100%, 30% 100%, 30% 35%, 20% 46%, 0 25%); }
.product-card--fashion .product-card__visual i:nth-child(2) { right: 14%; bottom: 72px; width: 58px; height: 76px; background: var(--yellow); transform: rotate(8deg); }
.product-card--fashion .product-card__visual i:nth-child(3) { top: 25px; right: 24%; width: 36px; height: 36px; border-radius: 50%; background: var(--lime); }

.product-card--bags .product-card__visual { background: #84e6cf; }
.product-card--bags .product-card__visual i:nth-child(1) { left: 22%; bottom: 60px; width: 132px; height: 122px; border-radius: 14px 14px 5px 5px; background: var(--purple); }
.product-card--bags .product-card__visual i:nth-child(1)::before { position: absolute; top: -42px; left: 30px; width: 62px; height: 50px; border: 12px solid var(--purple); border-bottom: 0; border-radius: 40px 40px 0 0; content: ""; }
.product-card--bags .product-card__visual i:nth-child(2) { right: 16%; bottom: 65px; width: 72px; height: 70px; background: var(--yellow); transform: rotate(8deg); }
.product-card--bags .product-card__visual i:nth-child(3) { top: 32px; right: 24%; width: 32px; height: 32px; border-radius: 50%; background: var(--coral); }

.product-card--gift .product-card__visual { background: #ffe073; }
.product-card--gift .product-card__visual i:nth-child(1) { left: 16%; bottom: 70px; width: 180px; height: 110px; border: 7px solid #fff; border-radius: 10px; background: var(--purple); transform: rotate(-7deg); }
.product-card--gift .product-card__visual i:nth-child(2) { right: 13%; bottom: 55px; width: 82px; height: 82px; background: var(--coral); transform: rotate(13deg); }
.product-card--gift .product-card__visual i:nth-child(3) { top: 28px; left: 28%; width: 40px; height: 40px; border-radius: 50%; background: var(--lime); }

.product-card--setup .product-card__visual { background: #aebcff; }
.product-card--setup .product-card__visual i:nth-child(1) { left: 27%; bottom: 64px; width: 140px; height: 130px; border: 22px solid var(--navy); border-bottom-width: 34px; border-radius: 80px 80px 35px 35px; box-shadow: none; }
.product-card--setup .product-card__visual i:nth-child(2) { left: 22%; bottom: 68px; width: 44px; height: 82px; border-radius: 18px; background: var(--coral); }
.product-card--setup .product-card__visual i:nth-child(3) { right: 22%; bottom: 68px; width: 44px; height: 82px; border-radius: 18px; background: var(--coral); }

.product-card__tag {
  margin: 0 0 7px !important;
  color: var(--blue);
  font-size: 9px !important;
  letter-spacing: .13em;
}

.product-card h3 {
  min-height: 58px;
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.35;
}

.product-card > p {
  margin: 0;
  font-size: 13px;
}

.mall-buttons--card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.mall-buttons--card .mall-button {
  min-width: 0;
  min-height: 44px;
  padding: 8px;
  font-size: 12px;
}

.gift-alert {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
  padding: 116px max(24px, calc((100vw - 1120px) / 2));
  background: var(--yellow);
}

.gift-alert__visual {
  position: relative;
  min-height: 430px;
  border: 5px solid var(--navy);
  border-radius: 24px;
  background: var(--purple);
  box-shadow: 13px 13px 0 var(--coral);
  overflow: hidden;
}

.gift-alert__visual::after {
  position: absolute;
  right: -10%;
  bottom: -60px;
  left: -10%;
  height: 180px;
  background: var(--grass);
  box-shadow: inset 0 -72px #a66d48;
  content: "";
  transform: rotate(-4deg);
}

.gift-card-shape {
  position: absolute;
  z-index: 2;
  top: 86px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 250px;
  height: 155px;
  border: 10px solid #fff;
  border-radius: 14px;
  background: var(--blue);
  box-shadow: 22px 24px 0 rgba(19, 33, 63, .18);
  transform: translateX(-50%) rotate(-7deg);
}

.gift-card-shape span {
  color: #fff;
  font-size: 80px;
  line-height: 1;
}

.gift-card-shape i {
  position: absolute;
  top: 18px;
  left: 20px;
  width: 25px;
  height: 25px;
  background: var(--lime);
  transform: rotate(16deg);
}

.gift-cube {
  position: absolute;
  z-index: 1;
  display: block;
  width: 78px;
  height: 78px;
  background: var(--coral);
  box-shadow: inset -16px -16px rgba(19, 33, 63, .12);
}

.gift-cube--one { top: 45px; left: 10%; transform: rotate(12deg); }
.gift-cube--two { right: 8%; bottom: 72px; background: var(--lime); transform: rotate(-8deg); }

.gift-alert__copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.15;
  letter-spacing: -.05em;
}

.gift-alert__copy > p:not(.section-title__tag) {
  margin: 26px 0;
  font-size: 17px;
}

.checklist-button {
  min-height: 54px;
  padding: 12px 26px;
  border: 3px solid var(--navy);
  border-radius: 9px;
  background: var(--paper);
  box-shadow: 6px 6px 0 var(--navy);
  font-weight: 900;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}

.checklist-button:hover {
  box-shadow: 3px 3px 0 var(--navy);
  transform: translate(3px, 3px);
}

.compare {
  padding: 142px 24px 132px;
  background: var(--sky);
}

.arc-word--compare {
  top: 52px;
  transform: translateX(-50%) rotate(5deg);
}

.compare__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(980px, 100%);
  margin: 62px auto 0;
}

.compare-card {
  padding: 38px;
  border: 4px solid var(--navy);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 11px 11px 0 rgba(19, 33, 63, .13);
}

.compare-card__mark {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background: var(--rakuten);
  color: #fff;
  font-size: 40px;
}

.compare-card--amazon .compare-card__mark {
  background: #20252b;
  color: var(--amazon);
}

.compare-card h3 {
  margin: 24px 0 12px;
  font-size: 32px;
}

.compare-card ul {
  min-height: 150px;
  margin: 0 0 26px;
  padding-left: 1.4em;
}

.compare-card .mall-button {
  width: 100%;
}

.faq {
  padding: 126px 24px 136px;
  background: var(--cream);
}

.faq__list {
  width: min(900px, 100%);
  margin: 56px auto 0;
}

.faq details {
  border-top: 3px solid var(--navy);
}

.faq details:last-child {
  border-bottom: 3px solid var(--navy);
}

.faq summary {
  position: relative;
  padding: 24px 66px 24px 8px;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

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

.faq summary::before,
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 24px;
  height: 3px;
  background: var(--navy);
  content: "";
}

.faq summary::after {
  transform: rotate(90deg);
  transition: transform .18s ease;
}

.faq details[open] summary::after {
  transform: rotate(0);
}

.faq details p {
  margin: 0;
  padding: 0 64px 26px 8px;
  color: var(--navy-soft);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .7fr);
  gap: clamp(38px, 7vw, 90px);
  align-items: center;
  padding: 110px max(24px, calc((100vw - 1080px) / 2));
  background: var(--lime);
}

.final-cta__world {
  position: relative;
  min-height: 330px;
  border: 5px solid var(--navy);
  border-radius: 22px;
  background: var(--sky);
  box-shadow: 12px 12px 0 var(--navy);
  overflow: hidden;
}

.final-cta__world::after {
  position: absolute;
  right: -10%;
  bottom: -30px;
  left: -10%;
  height: 140px;
  background: var(--grass);
  box-shadow: inset 0 -60px #a56f47;
  content: "";
  transform: rotate(3deg);
}

.final-cta__world i {
  position: absolute;
  z-index: 1;
  bottom: 82px;
  display: block;
  width: 74px;
  height: 130px;
  background: var(--coral);
  box-shadow: inset -14px -14px rgba(19, 33, 63, .12);
}

.final-cta__world i:nth-child(1) { left: 11%; }
.final-cta__world i:nth-child(2) { left: 32%; height: 195px; background: var(--purple); }
.final-cta__world i:nth-child(3) { right: 25%; height: 105px; background: var(--yellow); }
.final-cta__world i:nth-child(4) { right: 7%; height: 170px; background: var(--blue); }

.final-cta .mall-buttons {
  margin-top: 28px;
}

.footer {
  display: grid;
  gap: 17px;
  justify-items: center;
  padding: 68px 24px 112px;
  background: var(--navy);
  color: #fff;
  text-align: center;
}

.footer__logo {
  font-size: 30px;
  font-weight: 900;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  justify-content: center;
  font-size: 11px;
}

.footer p {
  width: min(780px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  line-height: 1.7;
}

.footer__copyright {
  margin-top: 10px !important;
  letter-spacing: .1em;
}

.mobile-buybar {
  display: none;
}

.modal {
  width: min(590px, calc(100% - 34px));
  padding: 38px;
  border: 4px solid var(--navy);
  border-radius: 18px;
  background: var(--paper);
  color: var(--navy);
  box-shadow: 12px 12px 0 var(--lime);
}

.modal::backdrop {
  background: rgba(19, 33, 63, .62);
}

.modal h2 {
  margin: 0 0 16px;
  font-size: 34px;
}

.modal ul {
  margin: 0;
  padding-left: 1.4em;
}

.modal li {
  margin: 9px 0;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}

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

@keyframes blockJump {
  from { transform: translateY(0) rotate(-3deg); }
  to { transform: translateY(-14px) rotate(4deg); }
}

@keyframes avatarFloat {
  from { transform: translateY(-6px) rotate(2deg); }
  to { transform: translateY(8px) rotate(5deg); }
}

@keyframes coinFloat {
  from { transform: translateY(-6px) rotateY(0); }
  to { transform: translateY(8px) rotateY(35deg); }
}

@keyframes ctaSheen {
  0%, 70% { left: -40%; }
  100% { left: 135%; }
}

@media (max-width: 1060px) {
  .site-nav {
    display: none;
  }

  .hero__copy {
    width: 52vw;
  }

  .hero__scene {
    width: 54%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .affiliate-strip {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    height: auto;
    min-height: 980px;
  }

  .hero__copy {
    width: 100%;
    padding: 138px 26px 0;
  }

  .hero__lead {
    width: min(520px, 80%);
  }

  .hero__scene {
    top: auto;
    bottom: 22px;
    width: 100%;
    height: 480px;
  }

  .island--main {
    right: 11%;
    width: 72%;
  }

  .hero__scroll {
    display: none;
  }

  .story__grid,
  .category-layout,
  .gift-alert,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .guide__cards {
    grid-template-columns: 1fr;
  }

  .guide__cards article {
    min-height: 0;
  }

  .category-rail {
    grid-row: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-copy {
    grid-row: 3;
  }

  .compare__grid {
    grid-template-columns: 1fr;
  }

  .compare-card ul {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  body {
    padding-bottom: 68px;
  }

  main > section {
    scroll-margin-top: 92px;
  }

  .affiliate-strip {
    min-height: 40px;
    padding: 6px 12px;
    font-size: 9px;
  }

  .site-header {
    top: 40px;
    height: 72px;
    padding: 0 18px;
  }

  .site-logo {
    min-width: 0;
  }

  .site-logo__mark {
    width: 35px;
    height: 35px;
  }

  .site-logo__mark::after {
    inset: 9px;
  }

  .site-logo strong {
    font-size: 15px;
  }

  .site-logo small {
    font-size: 7px;
  }

  .menu-button {
    top: 50px;
    right: 14px;
    width: 50px;
    height: 50px;
  }

  .store-bubble {
    display: none;
  }

  .drawer {
    padding: 92px 25px 30px;
  }

  .drawer a {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .drawer a span {
    font-size: 26px;
  }

  .hero {
    min-height: 920px;
  }

  .hero__copy {
    padding: 132px 18px 0;
  }

  .hero h1 {
    font-size: 65px;
  }

  .hero__lead {
    width: 100%;
    font-size: 15px;
  }

  .hero__note {
    max-width: 92%;
  }

  .mall-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mall-button {
    width: 100%;
    min-width: 0;
  }

  .hero__scene {
    bottom: 18px;
    height: 410px;
  }

  .island--main {
    right: 5%;
    bottom: 27%;
    width: 88%;
    height: 160px;
  }

  .block-avatar {
    right: 31%;
    bottom: 132px;
    transform: scale(.78);
    transform-origin: bottom;
  }

  .tree {
    bottom: 102px;
    transform: scale(.75);
    transform-origin: bottom;
  }

  .tree--two {
    transform: scale(.55);
  }

  .coin {
    bottom: 130px;
  }

  .coin--two {
    bottom: 178px;
  }

  .news {
    grid-template-columns: 1fr;
    padding: 30px 18px 60px;
  }

  .news__arrow {
    display: none;
  }

  .news__pill {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .news__pill strong {
    width: fit-content;
  }

  .story,
  .guide,
  .categories,
  .lineup,
  .compare,
  .faq {
    padding-right: 18px;
    padding-left: 18px;
  }

  .story {
    padding-bottom: 118px;
  }

  .story-world {
    min-height: 320px;
  }

  .story-world__tower {
    transform: scale(.72);
    transform-origin: bottom;
  }

  .story-world__bridge {
    right: 22%;
    bottom: 150px;
    width: 170px;
  }

  .story__copy {
    font-size: 17px;
  }

  .guide,
  .compare {
    padding-top: 122px;
  }

  .guide::before,
  .lineup::before {
    top: -175px;
    height: 265px;
  }

  .arc-word {
    top: 52px;
    font-size: 58px;
  }

  .section-title h2 {
    font-size: 48px;
  }

  .categories {
    padding-top: 98px;
    border-radius: 48px 48px 0 0;
  }

  .category-stage {
    min-height: 350px;
  }

  .category-object--a {
    left: 12%;
    transform: scale(.78) rotate(-8deg);
  }

  .category-object--b {
    right: 9%;
    transform: scale(.78) rotate(7deg);
  }

  .category-rail {
    gap: 6px;
  }

  .category-rail button {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 7px 3px;
    font-size: 7px;
  }

  .category-copy h3 {
    font-size: 34px;
  }

  .lineup {
    padding-top: 126px;
  }

  .lineup-world {
    min-height: 315px;
  }

  .lineup-world strong {
    top: 70px;
    font-size: 50px;
  }

  .lineup-world span {
    transform: scale(.7);
    transform-origin: bottom;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
  }

  .product-card h3 {
    min-height: 0;
  }

  .mall-buttons--card {
    grid-template-columns: 1fr 1fr;
  }

  .gift-alert,
  .final-cta {
    padding: 92px 18px;
  }

  .gift-alert__visual {
    min-height: 340px;
  }

  .gift-card-shape {
    width: 210px;
    height: 132px;
  }

  .gift-alert__copy h2,
  .final-cta h2 {
    font-size: 42px;
  }

  .compare-card {
    padding: 28px 22px;
  }

  .faq summary {
    padding-left: 2px;
    font-size: 16px;
  }

  .faq details p {
    padding-right: 6px;
    padding-left: 2px;
  }

  .final-cta__world {
    min-height: 290px;
  }

  .footer {
    padding-bottom: 72px;
  }

  .mobile-buybar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 68px;
    padding: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -8px 28px rgba(19, 33, 63, .18);
  }

  .mobile-buybar a {
    display: grid;
    place-items: center;
    border-radius: 8px 0 0 8px;
    background: var(--rakuten);
    color: #fff;
    font-size: 12px;
  }

  .mobile-buybar a:last-child {
    border-radius: 0 8px 8px 0;
    background: #20252b;
    color: #fff;
  }
}

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

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