:root {
  --yellow: #ffd21f;
  --yellow-deep: #f7bd13;
  --cream: #fff8e8;
  --paper: #fffdf5;
  --brown: #8e4f37;
  --brown-dark: #592d20;
  --muted: #c8945d;
  --blue: #2da9de;
  --green: #86b35d;
  --pink: #f08ca3;
  --shadow: 0 16px 40px rgba(89, 45, 32, .18);
  font-family: "Trebuchet MS", "Yu Gothic", "Hiragino Maru Gothic ProN", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown);
  background: var(--cream);
  line-height: 1.85;
  letter-spacing: 0;
}

body.is-locked {
  overflow: hidden;
}

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

button {
  font: inherit;
  color: inherit;
}

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

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

img {
  display: block;
  max-width: 100%;
}

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

.splash {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--yellow);
  transition: opacity .22s ease, visibility .22s ease;
}

.splash img {
  width: min(260px, 52vw);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: left center;
  border-radius: 50%;
  clip-path: circle(43% at 42% 54%);
  animation: splashFloat 1.2s ease-in-out infinite alternate;
}

.splash p {
  position: absolute;
  top: calc(50% + 146px);
  margin: 0;
  font-weight: 900;
}

.splash p span {
  display: inline-block;
  animation: letterPop 1s ease-in-out infinite;
}

.splash p span:nth-child(2) { animation-delay: .05s; }
.splash p span:nth-child(3) { animation-delay: .1s; }
.splash p span:nth-child(4) { animation-delay: .15s; }
.splash p span:nth-child(5) { animation-delay: .2s; }
.splash p span:nth-child(6) { animation-delay: .25s; }
.splash p span:nth-child(7) { animation-delay: .3s; }

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 32px 40px 0;
  pointer-events: none;
}

.site-logo,
.site-nav,
.menu-button,
.store-bubble {
  pointer-events: auto;
}

.site-logo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip-path: inset(50%);
}

.site-nav {
  position: fixed;
  top: 39px;
  right: 124px;
  display: flex;
  gap: clamp(20px, 2.5vw, 38px);
  align-items: center;
  margin: 0;
  font-size: 13px;
  font-weight: 900;
}

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

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

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

.menu-button {
  position: fixed;
  top: 26px;
  right: 40px;
  z-index: 70;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 3px auto;
  border-radius: 99px;
  background: var(--cream);
  transition: transform .25s ease, opacity .25s ease;
}

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

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

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

.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 60;
  width: min(460px, 100vw);
  padding: 92px 42px 42px;
  background: var(--yellow);
  box-shadow: -20px 0 60px rgba(89, 45, 32, .18);
  transform: translateX(105%);
  transition: transform .35s ease;
}

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

.drawer__close {
  border: 0;
  border-bottom: 2px solid currentColor;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.drawer a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(89, 45, 32, .25);
  font-weight: 900;
}

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

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

.drawer__mascot {
  position: absolute;
  right: 38px;
  bottom: 34px;
  width: 122px;
  height: 86px;
  border-radius: 58% 46% 52% 47%;
  background: #ffbb2f;
}

.drawer__mascot span,
.drawer__mascot::before,
.drawer__mascot::after {
  position: absolute;
  content: "";
}

.drawer__mascot span {
  right: -20px;
  top: -14px;
  width: 52px;
  height: 84px;
  border-radius: 60% 70% 20% 70%;
  background: #ffbb2f;
  transform: rotate(26deg);
}

.drawer__mascot::before {
  left: 36px;
  top: 34px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brown-dark);
  box-shadow: 28px 0 var(--brown-dark), 14px 15px 0 -1px var(--brown-dark);
}

.drawer__mascot::after {
  left: 20px;
  top: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2da9de;
  box-shadow: 20px 2px 0 #2da9de;
}

.store-bubble {
  position: fixed;
  right: 38px;
  bottom: 38px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  padding: 20px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  box-shadow: var(--shadow);
}

.store-bubble span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.store-bubble strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.hero {
  position: relative;
  min-height: 680px;
  height: 100vh;
  overflow: hidden;
  background: #fff0b9;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero__copy {
  position: absolute;
  top: 34px;
  left: 40px;
  color: var(--brown);
}

.hero__brand {
  margin: 0;
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: .95;
  text-transform: uppercase;
}

.hero__kana {
  display: block;
  margin: 14px 0 0;
  font-weight: 900;
  text-transform: none;
}

.news {
  display: grid;
  grid-template-columns: 44px minmax(0, 805px) 44px;
  gap: 28px;
  justify-content: center;
  align-items: center;
  padding: 72px 24px 58px;
}

.news__arrow {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(142, 79, 55, .18);
  color: var(--brown);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.news__arrow--next {
  background: var(--brown);
  color: var(--cream);
}

.news__pill {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 26px;
  align-items: center;
  min-height: 64px;
  padding: 18px 40px;
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(89, 45, 32, .05);
  font-weight: 900;
}

.news__pill strong {
  padding-right: 26px;
  border-right: 2px solid currentColor;
}

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

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

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

.section-title {
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .95;
  letter-spacing: 0;
}

.section-title p {
  margin: 8px 0 0;
  font-weight: 900;
  line-height: 1.4;
}

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

.story {
  padding: 54px 24px 130px;
  background: var(--cream);
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .78fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
  width: min(924px, 100%);
  margin: 48px auto 0;
}

.story__grid img {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

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

.about,
.quality,
.shop {
  position: relative;
  overflow: hidden;
  background: var(--yellow);
}

.about {
  padding: 168px 24px 120px;
}

.about::before,
.lineup::before {
  position: absolute;
  top: -250px;
  left: 50%;
  width: 155vw;
  height: 520px;
  border-radius: 0 0 50% 50%;
  background: var(--cream);
  content: "";
  transform: translateX(-50%);
}

.arc-word {
  position: absolute;
  top: 94px;
  left: 50%;
  width: 1420px;
  color: rgba(142, 79, 55, .14);
  font-size: clamp(70px, 9vw, 132px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-50%) rotate(6deg);
}

.about .section-title,
.about__stage,
.about__copy,
.quality .section-title,
.quality__lead,
.quality__cards,
.shop .section-title,
.shop__layout,
.shop-list,
.lineup .section-title,
.lineup__hero,
.product-grid {
  position: relative;
  z-index: 1;
}

.about__stage {
  width: min(920px, 100%);
  margin: 54px auto 0;
  padding: 8px;
  border: 8px solid var(--brown);
  border-radius: 16px;
  background: var(--yellow-deep);
}

.about__stage img {
  width: 100%;
  max-height: 420px;
  border-radius: 7px;
  object-fit: cover;
}

.about__copy {
  width: min(720px, 100%);
  margin: 52px auto 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

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

.arc-word--quality {
  top: 82px;
  transform: translateX(-50%) rotate(10deg);
}

.quality__lead {
  width: min(680px, 100%);
  margin: 44px auto 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
}

.quality__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  width: min(1040px, 100%);
  margin: 54px auto 0;
}

.quality__cards article {
  min-height: 250px;
  padding: 32px 28px;
  border: 4px solid var(--brown);
  border-radius: 28px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.quality__cards span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  font-weight: 900;
}

.quality__cards h3 {
  margin: 22px 0 8px;
  font-size: 24px;
  line-height: 1.3;
}

.quality__cards p {
  margin: 0;
  font-weight: 800;
}

.flavor {
  margin-top: -1px;
  padding: 110px 24px 126px;
  border-radius: 90px 90px 0 0;
  background: var(--cream);
}

.flavor__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr) 74px;
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  width: min(1030px, 100%);
  margin: 58px auto 0;
}

.flavor__image {
  width: 100%;
  min-height: 330px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.flavor__copy h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.2;
}

.flavor__eyebrow,
.flavor__en {
  margin: 0 0 8px;
  font-weight: 900;
}

.flavor__en {
  color: var(--muted);
}

.flavor__copy p {
  font-weight: 900;
}

.flavor__name,
.flavor__en,
.flavor__description,
.character-card__name {
  transition: opacity .18s ease, transform .18s ease;
}

.flavor__copy.is-changing .flavor__name,
.flavor__copy.is-changing .flavor__en,
.flavor__copy.is-changing .flavor__description,
.flavor__copy.is-changing .character-card__name {
  opacity: 0;
  transform: translateY(8px);
}

.pill-button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  min-width: 260px;
  height: 44px;
  padding: 0 22px 0 30px;
  border: 2px solid var(--brown);
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.pill-button i {
  position: relative;
  width: 16px;
  height: 16px;
}

.pill-button i::before,
.pill-button i::after {
  position: absolute;
  inset: 7px 2px auto;
  height: 2px;
  background: currentColor;
  content: "";
}

.pill-button i::after {
  transform: rotate(90deg);
}

.character-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(310px, 100%);
  min-height: 92px;
  margin-top: 22px;
  padding: 14px 16px 14px 22px;
  border: 0;
  border-radius: 999px;
  background: #fff1ca;
  box-shadow: inset 0 0 0 2px rgba(142, 79, 55, .2);
  text-align: left;
  cursor: pointer;
}

.character-card small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.character-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.2;
}

.mini-mascot {
  position: relative;
  display: block;
  width: 70px;
  height: 54px;
  border-radius: 58% 42% 48% 52%;
  background: var(--yellow);
  box-shadow: inset -8px -7px 0 rgba(89, 45, 32, .09);
}

.mini-mascot::before,
.mini-mascot::after {
  position: absolute;
  content: "";
}

.mini-mascot::before {
  left: 20px;
  top: 22px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brown-dark);
  box-shadow: 22px 0 var(--brown-dark), 11px 13px 0 -1px var(--brown-dark);
}

.mini-mascot::after {
  right: -14px;
  top: -14px;
  width: 30px;
  height: 52px;
  border-radius: 60% 70% 24% 70%;
  background: var(--yellow);
  transform: rotate(26deg);
  box-shadow: -42px 3px 0 -18px #2da9de, -25px 1px 0 -18px #2da9de;
}

.flavor__rail {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.flavor__rail button {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(142, 79, 55, .16);
  cursor: pointer;
}

.flavor__rail button:nth-child(1) { background: var(--yellow); }
.flavor__rail button:nth-child(2) { background: #cfe4ba; }
.flavor__rail button:nth-child(3) { background: #67625d; }
.flavor__rail button:nth-child(4) { background: #f5c9d0; }
.flavor__rail button.is-active {
  outline: 4px solid var(--brown);
}

.flavor__rail button {
  transition: transform .18s ease, outline-color .18s ease;
}

.flavor__rail button:hover,
.flavor__rail button.is-active {
  transform: translateY(-3px) scale(1.06);
}

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

.lineup::before {
  top: -310px;
  background: var(--yellow);
}

.arc-word--lineup {
  top: 74px;
  color: rgba(142, 79, 55, .12);
  transform: translateX(-50%) rotate(7deg);
}

.lineup__hero {
  width: min(1060px, 100%);
  max-height: 520px;
  margin: 58px auto 0;
  border-radius: 26px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  width: min(1080px, 100%);
  margin: 34px auto 0;
}

.product-card {
  padding: 22px;
  border: 3px solid rgba(142, 79, 55, .22);
  border-radius: 16px;
  background: var(--paper);
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 188px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: #ffe585;
  overflow: hidden;
}

.product-card__visual::before,
.product-card__visual::after {
  display: block;
  content: "";
}

.product-card__visual::before {
  width: 78px;
  height: 104px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff1ca 0 54%, #2da9de 54% 65%, #ffca22 65%);
  box-shadow: 0 10px 22px rgba(89, 45, 32, .16);
}

.product-card__visual::after {
  position: absolute;
  bottom: 22px;
  width: 86px;
  height: 42px;
  border-radius: 52% 48% 42% 58%;
  background: #d99343;
  box-shadow: inset -12px -8px 0 rgba(89, 45, 32, .18);
}

.product-card__visual--box::before {
  width: 126px;
  height: 92px;
}

.product-card__visual--gift::before {
  width: 148px;
  height: 96px;
  background: linear-gradient(130deg, #fff1ca 0 45%, #ffca22 45% 72%, #8e4f37 72%);
}

.product-card__visual--stickers::before {
  width: 118px;
  height: 86px;
  border-radius: 14px;
  background: radial-gradient(circle at 28% 34%, #ffca22 0 16%, transparent 17%),
    radial-gradient(circle at 70% 58%, #86b35d 0 15%, transparent 16%),
    radial-gradient(circle at 46% 70%, #f08ca3 0 13%, transparent 14%),
    #fff7d8;
}

.product-card h3 {
  min-height: 58px;
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.45;
}

.product-card p {
  min-height: 54px;
  margin: 0;
  font-weight: 800;
}

.product-card button {
  min-width: 130px;
  height: 40px;
  margin-top: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
}

.sticker {
  padding: 116px 24px;
  background: var(--yellow);
}

.sticker__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.sticker__inner img {
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.section-kicker {
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .12em;
}

.sticker h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
}

.sticker p {
  font-weight: 900;
}

.goods {
  padding: 118px 24px 132px;
  background: var(--cream);
}

.goods__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .64fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
  width: min(1100px, 100%);
  margin: 58px auto 0;
}

.goods__layout img {
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.goods__cards {
  display: grid;
  gap: 16px;
}

.goods__cards article {
  padding: 24px 26px;
  border: 3px solid rgba(142, 79, 55, .24);
  border-radius: 16px;
  background: var(--paper);
}

.goods__cards h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.goods__cards p {
  margin: 0;
  font-weight: 800;
}

.shop {
  padding: 142px 24px 128px;
}

.arc-word--shop {
  top: 58px;
  color: rgba(142, 79, 55, .14);
  transform: translateX(-50%) rotate(-7deg);
}

.shop__layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(44px, 7vw, 80px);
  align-items: center;
  width: min(980px, 100%);
  margin: 60px auto 0;
}

.shop-map {
  position: relative;
  min-height: 360px;
  border: 6px solid var(--cream);
  border-radius: 20px;
  background: #e0b328;
  overflow: hidden;
}

.map-block {
  position: absolute;
  display: block;
  border-radius: 8px;
  background: rgba(255, 248, 232, .56);
}

.map-block--a {
  left: 42px;
  top: 44px;
  width: 220px;
  height: 120px;
}

.map-block--b {
  right: 28px;
  top: 62px;
  width: 160px;
  height: 210px;
}

.map-block--c {
  left: 68px;
  bottom: 46px;
  width: 260px;
  height: 88px;
}

.map-pin {
  position: absolute;
  right: 78px;
  bottom: 72px;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 5px solid var(--brown);
  border-radius: 50%;
  background: var(--pink);
  color: var(--paper);
  font-size: 21px;
  font-weight: 900;
}

.shop__info h3 {
  margin: 10px 0 18px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.7;
}

.shop__zip,
.shop__info p {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}

.brown-button {
  display: grid;
  place-items: center;
  width: min(250px, 100%);
  height: 46px;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  font-weight: 900;
  cursor: pointer;
}

.shop-list {
  width: min(720px, 100%);
  margin: 54px auto 0;
  padding: 0;
  list-style: none;
}

.shop-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(89, 45, 32, .45);
  font-weight: 900;
}

.sns {
  overflow: hidden;
  padding: 0 24px 110px;
  background: var(--cream);
}

.sns__band {
  width: calc(100% + 48px);
  max-width: none;
  height: 164px;
  margin: 0 -24px 82px;
  object-fit: cover;
  object-position: center;
}

.sns__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 16px;
  width: min(820px, 100%);
  margin: 54px auto 0;
}

.sns__grid a {
  display: grid;
  place-items: center;
  min-height: 114px;
  border-radius: 16px;
  background: var(--paper);
  color: #111;
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(89, 45, 32, .08);
}

.follow {
  margin: 42px 0 0;
  text-align: center;
  font-size: 30px;
  font-weight: 900;
}

.footer {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 60px 24px 72px;
  background: var(--brown-dark);
  color: var(--cream);
  text-align: center;
}

.footer > a {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.1;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.footer p {
  margin: 0;
  opacity: .72;
  font-size: 12px;
}

.modal {
  width: min(560px, calc(100% - 36px));
  padding: 36px;
  border: 0;
  border-radius: 22px;
  background: var(--cream);
  color: var(--brown);
  box-shadow: var(--shadow);
}

.modal::backdrop {
  background: rgba(89, 45, 32, .35);
}

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

.modal p {
  margin: 0;
  font-weight: 800;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.modal--character {
  text-align: center;
}

.modal-character-art {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--yellow);
}

.modal-character-art .mini-mascot {
  transform: scale(1.45);
}

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

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

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

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.8%, 1%, 0); }
}

@keyframes letterPop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

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

  .story__grid,
  .flavor__layout,
  .sticker__inner,
  .goods__layout,
  .shop__layout {
    grid-template-columns: 1fr;
  }

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

  .flavor__rail {
    grid-template-columns: repeat(4, auto);
    justify-content: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 22px 18px 0;
  }

  .site-logo {
    font-size: 30px;
  }

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

  .store-bubble {
    right: 12px;
    bottom: 14px;
    width: 96px;
    height: 96px;
    padding: 14px;
  }

  .store-bubble span {
    font-size: 9px;
  }

  .store-bubble strong {
    font-size: 10px;
  }

  .hero {
    min-height: 700px;
    height: 92vh;
  }

  .hero img {
    object-position: 55% center;
  }

  .hero__copy {
    top: 24px;
    left: 18px;
  }

  .hero__brand {
    font-size: 37px;
  }

  .news {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 48px 18px;
  }

  .news__arrow {
    display: none;
  }

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

  .news__pill strong {
    padding: 0;
    border: 0;
  }

  .story,
  .goods,
  .sns {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about,
  .quality,
  .lineup,
  .shop,
  .sticker,
  .flavor {
    padding-right: 18px;
    padding-left: 18px;
  }

  .about,
  .quality,
  .shop {
    padding-top: 118px;
  }

  .flavor {
    border-radius: 48px 48px 0 0;
  }

  .about::before,
  .lineup::before {
    top: -160px;
    height: 300px;
  }

  .arc-word {
    top: 48px;
    font-size: 56px;
  }

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

  .story__copy,
  .about__copy,
  .quality__lead {
    font-size: 17px;
    line-height: 1.9;
  }

  .about__stage {
    border-width: 5px;
  }

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

  .quality__cards article {
    min-height: 0;
  }

  .flavor__layout {
    gap: 26px;
  }

  .flavor__image {
    min-height: 240px;
  }

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

  .character-card {
    width: 100%;
  }

  .lineup__hero {
    max-height: 360px;
  }

  .shop-map {
    min-height: 280px;
  }

  .sns__grid a {
    min-height: 92px;
  }

  .drawer {
    padding: 86px 26px 34px;
  }

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

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

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