:root {
  --pink: #f48ead;
  --pink-dark: #df668c;
  --pink-pale: #fff0f5;
  --mint: #83d8c1;
  --mint-pale: #e9fbf6;
  --yellow: #f3cf65;
  --yellow-pale: #fff9df;
  --lavender: #b9a2e8;
  --lavender-pale: #f2edff;
  --ink: #53464d;
  --ink-light: #85767d;
  --white: #fff;
  --border: #f0dce4;
  --shadow: 0 18px 45px rgba(139, 92, 112, .12);
  --round: "Kosugi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --display: "Cherry Bomb One", "Kosugi Maru", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdfd;
  font-family: var(--round);
  line-height: 1.8;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-decoration {
  position: fixed;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(5px);
  opacity: .36;
  pointer-events: none;
}

.decoration-one {
  top: 40%;
  left: -220px;
  background: var(--mint-pale);
}

.decoration-two {
  right: -210px;
  bottom: 8%;
  background: var(--pink-pale);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(244, 142, 173, .2);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 82px;
  margin: auto;
}

.site-logo {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  color: var(--pink-dark);
  line-height: 1;
  text-align: center;
}

.logo-crown {
  position: absolute;
  top: -14px;
  left: 50%;
  color: var(--yellow);
  font-size: 18px;
  transform: translateX(-50%);
}

.logo-main {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: .03em;
  text-shadow: 2px 2px 0 var(--pink-pale);
}

.logo-sub {
  margin-top: 5px;
  color: var(--ink-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .26em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
  margin-left: auto;
}

.global-nav a {
  position: relative;
  padding: 7px 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-reserve {
  margin-left: 28px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 5px 0 var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.header-reserve:hover {
  box-shadow: 0 2px 0 var(--pink-dark);
  transform: translateY(3px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100svh - 82px);
  padding: 70px max(6vw, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 8% 15%, rgba(244, 142, 173, .16) 0 5px, transparent 6px),
    linear-gradient(135deg, #fff 0%, #fff9fb 50%, #f7fffc 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 38px;
  background:
    radial-gradient(circle at 20px -4px, transparent 23px, #fff 24px) 0 0 / 40px 40px repeat-x;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: 590px;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 15px;
  border: 1px dashed var(--pink);
  border-radius: 999px;
  color: var(--pink-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
}

.hero h1 {
  margin: 0;
  color: #4f4449;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 70px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: .04em;
}

.hero h1 span {
  color: var(--pink);
  text-shadow: 4px 4px 0 #ffe0eb;
}

.hero-text {
  margin: 30px 0 34px;
  color: var(--ink-light);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  padding: 12px 24px;
  border: 2px solid var(--pink);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--pink);
  box-shadow: 0 8px 18px rgba(223, 102, 140, .26);
}

.button-white {
  color: var(--pink-dark);
  background: #fff;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 570px;
}

.maid-portrait {
  position: relative;
  z-index: 2;
  width: min(590px, 46vw);
  aspect-ratio: 3 / 2;
  padding: 18px;
  border: 9px solid #fff;
  border-radius: 42px;
  background: var(--pink-pale);
  box-shadow: var(--shadow), 0 0 0 2px var(--border);
  transform: rotate(2deg);
}

.portrait-placeholder {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 22%, rgba(255,255,255,.92) 0 3px, transparent 4px) 0 0 / 24px 24px,
    linear-gradient(160deg, #ffe1eb, #f8bed0);
}

.portrait-placeholder.cast-group-photo {
  background-color: #f9dce5;
  background-image: url("assets/casts/allcast.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.maid-head {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 190px;
  height: 210px;
  transform: translateX(-50%);
}

.maid-hair {
  position: absolute;
  inset: 0;
  border-radius: 48% 48% 42% 42%;
  background: #68545c;
}

.maid-face {
  position: absolute;
  top: 32px;
  left: 30px;
  width: 130px;
  height: 145px;
  border-radius: 48% 48% 46% 46%;
  background: #fff4ec;
}

.eye {
  position: absolute;
  top: 67px;
  width: 12px;
  height: 16px;
  border-radius: 50%;
  background: #57474e;
}

.eye-left { left: 34px; }
.eye-right { right: 34px; }

.mouth {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  width: 21px;
  height: 10px;
  margin: auto;
  border-bottom: 3px solid var(--pink-dark);
  border-radius: 50%;
}

.maid-headdress {
  position: absolute;
  top: -21px;
  left: 50%;
  width: 122px;
  padding: 7px;
  border-radius: 50% 50% 12px 12px;
  color: var(--pink);
  background: #fff;
  font-size: 25px;
  text-align: center;
  transform: translateX(-50%);
}

.maid-body {
  position: absolute;
  top: 55%;
  left: 50%;
  width: 250px;
  height: 245px;
  border-radius: 48% 48% 0 0;
  background: #57474e;
  transform: translateX(-50%);
}

.maid-apron {
  position: absolute;
  top: 55px;
  left: 50%;
  width: 130px;
  height: 190px;
  border-radius: 55px 55px 0 0;
  background: #fff;
  transform: translateX(-50%);
}

.maid-collar {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  color: var(--pink);
  font-size: 27px;
  text-align: center;
}

.portrait-label {
  position: absolute;
  top: 22px;
  left: -45px;
  z-index: 4;
  padding: 10px 26px;
  border-radius: 8px;
  color: #fff;
  background: var(--pink);
  font-family: var(--display);
  font-size: 23px;
  transform: rotate(-10deg);
}

.portrait-note {
  position: absolute;
  right: -35px;
  bottom: 45px;
  z-index: 3;
  color: var(--pink-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-align: center;
  transform: rotate(8deg);
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
}

.circle-mint {
  top: 5%;
  right: 3%;
  width: 180px;
  height: 180px;
  background: var(--mint-pale);
}

.circle-yellow {
  bottom: 8%;
  left: 7%;
  width: 120px;
  height: 120px;
  background: var(--yellow-pale);
}

.speech-bubble {
  position: absolute;
  top: 10%;
  right: -1%;
  z-index: 3;
  padding: 14px 20px;
  border: 2px solid var(--pink);
  border-radius: 22px 22px 22px 4px;
  color: var(--pink-dark);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  transform: rotate(5deg);
}

.hero-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-confetti span {
  position: absolute;
  color: var(--pink);
  font-size: 25px;
  opacity: .55;
}

.hero-confetti span:nth-child(1) { top: 16%; left: 4%; }
.hero-confetti span:nth-child(2) { top: 25%; right: 3%; color: var(--yellow); }
.hero-confetti span:nth-child(3) { bottom: 16%; left: 42%; color: var(--mint); }
.hero-confetti span:nth-child(4) { right: 42%; bottom: 9%; color: var(--lavender); }
.hero-confetti span:nth-child(5) { top: 7%; left: 47%; color: var(--pink); }

.scroll-guide {
  position: absolute;
  bottom: 55px;
  left: 50%;
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--pink-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--pink), transparent);
}

.section {
  position: relative;
  padding: 110px max(24px, calc((100vw - 1120px) / 2));
}

.section-heading {
  margin-bottom: 52px;
  text-align: center;
}

.section-heading p {
  margin: 9px 0 0;
  color: var(--ink-light);
  font-size: 12px;
  letter-spacing: .1em;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.15;
}

.heading-icon {
  display: inline-grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 42% 48%;
  font-weight: 700;
  transform: rotate(-6deg);
}

.icon-pink { color: var(--pink); background: var(--pink-pale); }
.icon-yellow { color: #dda92f; background: var(--yellow-pale); }
.icon-mint { color: #49ad92; background: var(--mint-pale); }
.icon-lavender { color: #8f72cc; background: var(--lavender-pale); }

.information-section {
  background: #fff;
}

.slider-shell {
  position: relative;
  width: min(960px, 100%);
  margin: auto;
}

.info-slider {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 34px;
  box-shadow: var(--shadow), 0 0 0 1px var(--border);
}

.info-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  align-items: center;
  padding: 48px 9%;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8%);
  transition: opacity .45s ease, transform .45s ease;
}

.info-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.slide-pink { background: linear-gradient(135deg, #fff1f5, #ffd9e6); }
.slide-mint { background: linear-gradient(135deg, #ecfff9, #c9f4e7); }
.slide-lavender { background: linear-gradient(135deg, #f5f0ff, #dfd3fa); }

.slide-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--pink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
}

.slide-mint .slide-tag { background: #50b79c; }
.slide-lavender .slide-tag { background: #9676d7; }

.slide-date {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
}

.slide-copy h3 {
  margin: 8px 0 14px;
  color: var(--pink-dark);
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 400;
  line-height: 1.2;
}

.slide-mint .slide-copy h3 { color: #3b9f86; }
.slide-lavender .slide-copy h3 { color: #8060c2; }

.slide-copy > p:last-child {
  margin: 0;
  font-size: 13px;
}

.slide-art {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.slide-art-moon {
  position: relative;
  font-size: 130px;
}

.moon {
  color: #fff7c7;
  filter: drop-shadow(8px 10px 0 rgba(244, 142, 173, .18));
}

.star {
  position: absolute;
  color: #fff;
  font-size: 35px;
}

.star-a { top: 5px; right: 12px; }
.star-b { bottom: 15px; left: 0; }

.soda-glass {
  position: relative;
  width: 110px;
  height: 170px;
  border: 9px solid #fff;
  border-top: 0;
  border-radius: 5px 5px 38px 38px;
  background: linear-gradient(transparent 15%, #72d7bd 16%);
  transform: rotate(6deg);
}

.soda-glass::before {
  position: absolute;
  right: -22px;
  bottom: 25px;
  width: 32px;
  height: 62px;
  border: 8px solid #fff;
  border-left: 0;
  border-radius: 0 30px 30px 0;
  content: "";
}

.soda-glass::after {
  position: absolute;
  top: -48px;
  left: 48px;
  width: 7px;
  height: 90px;
  border-radius: 99px;
  background: #fff;
  content: "";
  transform: rotate(12deg);
}

.slide-art-ribbon {
  color: #fff;
  font-size: 150px;
  text-shadow: 8px 10px 0 rgba(128, 96, 194, .12);
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--pink-dark);
  background: #fff;
  box-shadow: 0 8px 20px rgba(111, 78, 91, .15);
  font-size: 32px;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-prev { left: -24px; }
.slider-next { right: -24px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #e7dbe0;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slider-dot.is-active {
  width: 28px;
  background: var(--pink);
}

.cast-section {
  background: var(--pink-pale);
}

.cast-section::before,
.schedule-section::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(244, 142, 173, .17) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  content: "";
  pointer-events: none;
}

.cast-grid {
  position: relative;
  display: grid;
  grid-auto-columns: calc((100% - 66px) / 4);
  grid-auto-flow: column;
  grid-template-columns: none;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 3px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--pink) rgba(255, 255, 255, .65);
  scrollbar-width: thin;
}

.cast-grid::-webkit-scrollbar {
  height: 8px;
}

.cast-grid::-webkit-scrollbar-track {
  border-radius: 99px;
  background: rgba(255, 255, 255, .65);
}

.cast-grid::-webkit-scrollbar-thumb {
  border-radius: 99px;
  background: var(--pink);
}

.cast-card {
  min-width: 0;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 140px 140px 24px 24px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(150, 91, 112, .11);
  transition: transform .25s ease;
  scroll-snap-align: start;
}

.cast-card:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.cast-photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: .82;
  border-radius: 130px 130px 16px 16px;
  overflow: hidden;
}

.cast-photo.has-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cast-photo.has-image .cast-symbol,
.cast-photo.has-image .photo-caption {
  display: none;
}

.cast-photo::after {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 100px;
  height: 100px;
  border: 14px solid rgba(255,255,255,.5);
  border-radius: 50%;
  content: "";
}

.cast-load-note {
  position: relative;
  margin: 25px auto 0;
  color: var(--ink-light);
  font-size: 10px;
  text-align: center;
}

.cast-photo-pink { background: linear-gradient(145deg, #ffd9e5, #f6acc3); }
.cast-photo-mint { background: linear-gradient(145deg, #d8f8ef, #92dbc8); }
.cast-photo-lavender { background: linear-gradient(145deg, #e9e0ff, #bca5ea); }
.cast-photo-yellow { background: linear-gradient(145deg, #fff5c8, #f4d879); }

.cast-symbol {
  color: rgba(255,255,255,.83);
  font-size: clamp(70px, 9vw, 115px);
  text-shadow: 8px 8px 0 rgba(96, 72, 82, .06);
}

.photo-caption {
  position: absolute;
  bottom: 14px;
  left: 18px;
  color: rgba(83, 70, 77, .55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.cast-body {
  padding: 22px 18px 18px;
  text-align: center;
}

.cast-role {
  margin: 0;
  color: var(--pink-dark);
  font-size: 10px;
}

.cast-body h3 {
  margin: 2px 0 8px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
}

.cast-body h3 span {
  display: block;
  color: var(--ink-light);
  font-family: var(--round);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cast-body > p:not(.cast-role) {
  min-height: 48px;
  margin: 0;
  color: var(--ink-light);
  font-size: 11px;
}

.cast-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-top: 14px;
}

.cast-tags span {
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--pink-pale);
  font-size: 9px;
}

.text-link {
  position: relative;
  display: flex;
  width: fit-content;
  margin: 45px auto 0;
  padding-bottom: 5px;
  border-bottom: 2px dotted var(--pink);
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  margin-left: 12px;
}

.schedule-section {
  background: #fff;
}

.schedule-section::before {
  background-image: radial-gradient(rgba(131, 216, 193, .16) 1.5px, transparent 1.5px);
}

.schedule-box {
  position: relative;
  overflow: hidden;
  border: 1px solid #dff1ec;
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.day-tabs-wrap {
  position: relative;
}

.day-tabs {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid #e8f1ee;
  background: #f8fffd;
}

.schedule-swipe-hint {
  display: none;
}

.day-tab {
  padding: 15px 5px;
  border: 0;
  border-right: 1px solid #e8f1ee;
  background: transparent;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s, background .2s;
}

.day-tab:last-child {
  border-right: 0;
}

.day-tab span {
  display: block;
  color: var(--ink-light);
  font-size: 10px;
  font-weight: 400;
}

.day-tab.is-active {
  color: #fff;
  background: var(--mint);
}

.day-tab.is-active span {
  color: #fff;
}

.day-tab.weekend { color: #518fc2; }
.day-tab.holiday { color: var(--pink-dark); }

.schedule-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  min-height: 200px;
  padding: 34px;
}

.shift-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fffdfd;
  animation: fadeUp .35s ease both;
}

.shift-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: var(--pink);
  font-family: var(--display);
  font-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.shift-avatar.has-image {
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.7);
}

.shift-card:nth-child(2) .shift-avatar { background: var(--mint); }
.shift-card:nth-child(3) .shift-avatar { background: var(--lavender); }
.shift-card:nth-child(4) .shift-avatar { background: var(--yellow); }

.shift-info strong {
  display: block;
  font-size: 15px;
}

.shift-info span {
  color: var(--ink-light);
  font-size: 11px;
}

.shift-info small {
  display: block;
  color: var(--pink-dark);
  font-size: 9px;
}

.schedule-empty {
  grid-column: 1 / -1;
  align-self: center;
  margin: auto;
  padding: 45px 20px;
  color: var(--ink-light);
  font-size: 12px;
  text-align: center;
}

.schedule-note {
  margin: 0;
  padding: 14px 30px;
  color: var(--ink-light);
  background: #f8fffd;
  font-size: 10px;
  text-align: center;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.system-section {
  background: linear-gradient(180deg, var(--lavender-pale), #faf7ff);
}

.system-intro {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  margin: 0 auto 38px;
  padding: 20px 40px;
  border: 2px dashed var(--lavender);
  border-radius: 22px;
  background: #fff;
  transform: rotate(-1deg);
}

.system-intro span,
.system-intro small {
  font-size: 12px;
}

.system-intro strong {
  font-size: 25px;
}

.system-intro .price {
  color: #8f72cc;
  font-family: var(--display);
  font-size: 41px;
  font-weight: 400;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  position: relative;
  padding: 38px 28px 30px;
  border: 1px solid #e8def9;
  border-radius: 28px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 13px 30px rgba(117, 91, 166, .09);
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--lavender);
  transform: translateY(-10px);
}

.popular-label {
  position: absolute;
  top: -13px;
  left: 50%;
  padding: 3px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--lavender);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  transform: translateX(-50%);
}

.price-icon {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  margin: 0 auto 12px;
  border-radius: 50%;
  color: #8f72cc;
  background: var(--lavender-pale);
  font-size: 24px;
}

.price-card h3 {
  margin: 0;
  font-size: 17px;
}

.price-value {
  margin: 10px 0;
  color: #8f72cc;
}

.price-value strong {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
}

.price-card > p:last-child {
  margin: 0;
  color: var(--ink-light);
  font-size: 11px;
}

.payment-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.payment-note strong {
  margin-right: 10px;
  font-size: 12px;
}

.payment-note span {
  padding: 4px 12px;
  border: 1px solid #ded3f2;
  border-radius: 6px;
  background: #fff;
  font-size: 10px;
}

.shop-section {
  background: #fff;
}

.shop-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.shop-visual {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(#eaf9ff 0 45%, #e7ddd5 46%);
}

.shop-visual::before {
  position: absolute;
  right: 8%;
  bottom: 8%;
  left: 8%;
  height: 64%;
  border-radius: 10px 10px 0 0;
  background: #fff8f8;
  box-shadow: inset 0 20px 0 var(--pink);
  content: "";
}

.shop-sign {
  position: absolute;
  z-index: 3;
  top: 31%;
  left: 50%;
  width: 230px;
  padding: 10px;
  border: 4px solid #fff;
  border-radius: 12px;
  color: var(--pink-dark);
  background: var(--pink-pale);
  box-shadow: 0 5px 0 rgba(83,70,77,.1);
  font-family: var(--display);
  font-size: 25px;
  text-align: center;
  transform: translateX(-50%);
}

.shop-window {
  position: absolute;
  z-index: 2;
  right: 17%;
  bottom: 8%;
  display: grid;
  place-items: center;
  width: 33%;
  height: 36%;
  border: 7px solid #fff;
  background: #c9eff1;
}

.shop-window span {
  padding: 5px 12px;
  border-radius: 7px;
  color: #fff;
  background: var(--pink);
  font-size: 11px;
}

.shop-door {
  position: absolute;
  z-index: 2;
  bottom: 8%;
  left: 17%;
  width: 24%;
  height: 43%;
  border: 7px solid #fff;
  border-radius: 40px 40px 0 0;
  background: #bda8b0;
}

.shop-door::after {
  position: absolute;
  top: 52%;
  right: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.shop-visual > p {
  position: absolute;
  bottom: 0;
  left: 15px;
  color: rgba(83,70,77,.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .16em;
}

.shop-details {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  padding: 45px 50px;
}

.shop-details div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}

.shop-details div:last-child {
  border-bottom: 0;
}

.shop-details dt {
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 700;
}

.shop-details dd {
  margin: 0;
  font-size: 13px;
}

.access-section {
  background: var(--yellow-pale);
}

.access-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
}

.map-placeholder {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 28px;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.8) 49% 52%, transparent 53%),
    linear-gradient(#e8f3df, #e8f3df);
  box-shadow: var(--shadow);
}

.map-road {
  position: absolute;
  height: 52px;
  background: #fff;
  border-top: 2px dashed #ded7c4;
  border-bottom: 2px dashed #ded7c4;
}

.road-one {
  top: 45%;
  left: -10%;
  width: 120%;
  transform: rotate(-12deg);
}

.road-two {
  top: 10%;
  left: 15%;
  width: 100%;
  transform: rotate(60deg);
}

.road-three {
  bottom: 2%;
  left: -15%;
  width: 75%;
  transform: rotate(32deg);
}

.map-pin {
  position: absolute;
  top: 35%;
  left: 56%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 5px solid #fff;
  border-radius: 50% 50% 50% 5px;
  color: #fff;
  background: var(--pink);
  box-shadow: 0 7px 15px rgba(120, 86, 98, .2);
  font-size: 25px;
  transform: rotate(-45deg);
}

.map-pin small {
  position: absolute;
  top: 75px;
  width: 120px;
  color: var(--pink-dark);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  transform: rotate(45deg);
}

.map-pin::first-line {
  transform: rotate(45deg);
}

.map-station,
.map-label {
  position: absolute;
  z-index: 2;
  padding: 4px 9px;
  border-radius: 5px;
  background: rgba(255,255,255,.9);
  font-size: 9px;
}

.map-station { right: 7%; bottom: 9%; color: #5083b6; font-weight: 700; }
.label-a { top: 20%; left: 12%; }
.label-b { right: 13%; top: 18%; }

.access-copy .address {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
}

.access-copy > p:not(.address) {
  margin-bottom: 28px;
  color: var(--ink-light);
  font-size: 13px;
}

.site-footer {
  position: relative;
  padding: 85px max(24px, calc((100vw - 1120px) / 2)) 25px;
  color: #fff;
  background: #65535a;
}

.footer-ribbon {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 100px;
  height: 40px;
  background: var(--pink);
  clip-path: polygon(0 0, 40% 0, 50% 25%, 60% 0, 100% 0, 75% 50%, 100% 100%, 60% 100%, 50% 75%, 40% 100%, 0 100%, 25% 50%);
  transform: translateX(-50%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.footer-logo {
  display: inline-grid;
  color: #fff;
}

.footer-logo .logo-crown {
  color: var(--yellow);
}

.footer-brand > p {
  margin: 20px 0;
  color: #d9cbd0;
  font-size: 11px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #8e7881;
  border-radius: 50%;
  font-size: 14px;
  transition: color .2s, background .2s, transform .2s;
}

.social-links a:hover {
  color: var(--pink-dark);
  background: #fff;
  transform: translateY(-3px);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 16px 42px;
}

.footer-nav a {
  color: #eee4e8;
  font-size: 11px;
}

.footer-nav a:hover {
  color: var(--pink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #79666e;
  color: #bcaab1;
  font-size: 9px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

@media (max-width: 980px) {
  .global-nav {
    gap: 14px;
  }

  .global-nav a {
    font-size: 10px;
  }

  .header-reserve {
    margin-left: 18px;
  }

  .hero {
    grid-template-columns: 1fr .85fr;
  }

  .cast-grid {
    grid-auto-columns: calc((100% - 22px) / 2);
    max-width: none;
  }

  .schedule-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .header-inner {
    width: calc(100% - 30px);
    min-height: 70px;
  }

  .logo-main {
    font-size: 23px;
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
    width: 42px;
    height: 42px;
    margin-left: auto;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--pink-pale);
    cursor: pointer;
  }

  .menu-button > span:not(.sr-only) {
    position: absolute;
    left: 10px;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: var(--pink-dark);
    transform-origin: center;
    transition: top .25s, transform .25s, opacity .2s;
  }

  .menu-button > span:nth-child(1) { top: 13px; }
  .menu-button > span:nth-child(2) { top: 20px; }
  .menu-button > span:nth-child(3) { top: 27px; }

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

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

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

  .global-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: grid;
    align-content: center;
    gap: 12px;
    margin: 0;
    padding: 90px 28px 35px;
    background: #fff8fb;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity .25s, transform .25s;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .global-nav a {
    width: min(100%, 340px);
    margin: 0 auto;
    padding: 10px 20px;
    border: 1px solid rgba(244, 142, 173, .28);
    border-radius: 999px;
    color: var(--pink-dark);
    background: #fff;
    box-shadow: 0 7px 18px rgba(139, 92, 112, .08);
    font-family: var(--display);
    font-size: 24px;
    text-align: center;
  }

  .global-nav a::after {
    display: none;
  }

  .header-reserve {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 80px 24px 105px;
    text-align: center;
  }

  .hero-copy {
    margin: auto;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 65px);
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 510px;
    margin-top: 30px;
  }

  .maid-portrait {
    width: min(590px, 92vw);
  }

  .speech-bubble {
    right: 2%;
  }

  .scroll-guide {
    display: none;
  }

  .section {
    padding: 85px 20px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .info-slider {
    min-height: 480px;
  }

  .info-slide {
    grid-template-columns: 1fr;
    align-content: center;
    padding: 35px 10%;
    text-align: center;
  }

  .slide-art {
    min-height: 155px;
  }

  .slide-art-moon {
    font-size: 90px;
  }

  .soda-glass {
    width: 80px;
    height: 120px;
  }

  .slide-art-ribbon {
    font-size: 100px;
  }

  .slider-prev { left: -10px; }
  .slider-next { right: -10px; }

  .schedule-box {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .day-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    border: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .schedule-swipe-hint {
    position: absolute;
    top: 50%;
    right: -2px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 2px;
    height: 58px;
    padding: 0 8px 0 26px;
    border: 0;
    color: var(--pink-dark);
    background: linear-gradient(90deg, rgba(255,255,255,0), #fff 38%, #fff);
    opacity: 1;
    transform: translateY(-58%);
    transition: opacity .2s, visibility .2s;
  }

  .schedule-swipe-hint span {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .08em;
    writing-mode: vertical-rl;
  }

  .schedule-swipe-hint strong {
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    animation: swipeGuide 1.2s ease-in-out infinite;
  }

  .schedule-swipe-hint.is-hidden {
    visibility: hidden;
    opacity: 0;
  }

  .day-tab {
    flex: 0 0 66px;
    border: 1px solid #dcefe9;
    border-radius: 14px;
    background: #fff;
  }

  .schedule-content {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 20px 0;
  }

  .schedule-note {
    border-radius: 12px;
  }

  .system-intro {
    flex-wrap: wrap;
    gap: 5px 13px;
    padding: 18px 25px;
  }

  .system-intro .price {
    font-size: 36px;
  }

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

  .price-card.featured {
    transform: none;
  }

  .shop-card,
  .access-grid {
    grid-template-columns: 1fr;
  }

  .shop-visual,
  .map-placeholder {
    min-height: 330px;
  }

  .shop-details {
    padding: 30px 24px;
  }

  .access-grid {
    gap: 32px;
  }

  .access-copy {
    text-align: center;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    width: 100%;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-nav {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-bottom div {
    justify-content: center;
  }
}

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

  .hero-kicker {
    font-size: 10px;
  }

  .hero h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }

  .hero-text {
    margin: 22px 0 28px;
    font-size: 12px;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 425px;
  }

  .maid-portrait {
    width: min(450px, 92vw);
  }

  .maid-head {
    width: 155px;
    height: 175px;
  }

  .maid-face {
    left: 25px;
    width: 105px;
    height: 120px;
  }

  .eye {
    top: 55px;
  }

  .eye-left { left: 27px; }
  .eye-right { right: 27px; }

  .maid-body {
    width: 205px;
    height: 210px;
  }

  .maid-apron {
    width: 105px;
  }

  .portrait-label {
    left: -25px;
    font-size: 18px;
  }

  .speech-bubble {
    top: 8%;
    right: -5px;
    padding: 9px 13px;
    font-size: 11px;
  }

  .cast-grid {
    grid-auto-columns: min(78vw, 310px);
    max-width: none;
  }

  .shop-details div {
    grid-template-columns: 80px 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

@keyframes swipeGuide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

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

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