:root {
  --green: #c9a45f;
  --green-dark: #8f6b2f;
  --pink: #8f4d5f;
  --pink-soft: #fbf3f2;
  --ink: #231f20;
  --text: #4f4742;
  --muted: #8b8178;
  --line: #e5d9cc;
  --paper: #fffdf8;
  --wash: #f8f3eb;
  --yellow: #d9b66f;
  --charcoal: #181719;
  --rose: #8f4d5f;
  --champagne: #ead8b7;
  --shadow: 0 14px 36px rgba(31, 25, 21, 0.14);
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(24, 23, 25, 0.06), transparent 34%),
    linear-gradient(90deg, rgba(201, 164, 95, 0.13), transparent 30%, transparent 70%, rgba(143, 77, 95, 0.10)),
    #f5efe7;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.phone-shell {
  position: relative;
  width: min(100vw, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(143, 107, 47, 0.16), 0 22px 50px rgba(31, 25, 21, 0.12);
}

.app-header {
  position: fixed;
  top: calc(env(safe-area-inset-top) + 10px);
  right: max(10px, calc((100vw - 430px) / 2 + 10px));
  z-index: 45;
  display: flex;
  justify-content: flex-end;
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.phone-shell.cast-immersive .app-header {
  position: fixed;
  left: auto;
  width: auto;
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.phone-shell.cast-immersive.is-video-header-visible .app-header {
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.phone-shell.is-header-scrolled .app-header {
  opacity: 0.88;
}

.header-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto;
  border: 0;
  border-radius: 50%;
  color: #fff7e9;
  background: rgba(92, 89, 86, 0.50);
  box-shadow: 0 8px 22px rgba(31, 25, 21, 0.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
  pointer-events: auto;
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.phone-shell.is-header-scrolled .header-icon {
  background: rgba(92, 89, 86, 0.36);
  box-shadow: 0 6px 16px rgba(31, 25, 21, 0.16);
}

.header-icon:active {
  transform: scale(0.96);
}

.header-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

.header-icon:first-child {
  color: #f4e2c1;
}

.logo-link {
  display: none;
}

.header-logo {
  display: none;
}

.header-spacer {
  display: none;
}

.top-switch {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: center;
}

.top-switch.has-daily {
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.top-pill {
  display: grid;
  place-items: center;
  min-height: 32px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.top-pill span {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.top-pill strong {
  font-size: 0.95rem;
  line-height: 1.1;
}

.top-pill.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--charcoal) 0%, #43352a 56%, var(--green-dark) 100%);
  box-shadow: 0 6px 15px rgba(143, 107, 47, 0.24);
}

#app {
  min-height: 100vh;
  padding-bottom: calc(112px + env(safe-area-inset-bottom));
  outline: none;
}

.phone-shell.cast-immersive #app {
  min-height: 100vh;
}

.page {
  padding: 12px 8px 24px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 25px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
}

.breadcrumb span:first-child {
  color: var(--muted);
  font-weight: 600;
}

.hero-banner {
  position: relative;
  display: block;
  height: 96px;
  margin: 9px 0 14px;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background:
    radial-gradient(circle at 86% 28%, rgba(234, 216, 183, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(24, 23, 25, 0.96), rgba(95, 67, 48, 0.72)),
    var(--charcoal);
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 26%, rgba(234, 216, 183, 0.24));
}

.hero-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: 72%;
  height: 100%;
  padding: 12px 14px;
}

.hero-banner small {
  width: fit-content;
  padding: 3px 7px;
  color: var(--charcoal);
  background: rgba(234, 216, 183, 0.90);
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 800;
}

.hero-banner strong {
  margin-top: 6px;
  font-size: 2rem;
  line-height: 1.18;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}

.hero-video-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 9px 0 14px;
  overflow: hidden;
  border: 1px solid rgba(163, 121, 69, 0.20);
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: 0 8px 22px rgba(31, 25, 21, 0.08);
}

.hero-video-banner video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.cast-list-page {
  padding-top: 0;
}

.cast-video-hero {
  --cast-video-height: min(62svh, 520px);
  --cast-video-scale: 1.08;
  --cast-video-shadow: 0.24;
  position: relative;
  width: auto;
  height: var(--cast-video-height);
  margin: 0 -8px 14px;
  overflow: hidden;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: var(--charcoal);
  box-shadow: 0 16px 32px rgba(31, 25, 21, var(--cast-video-shadow));
  animation: castHeroReveal 920ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition: border-radius 180ms ease, box-shadow 180ms ease;
}

.cast-video-hero.is-image-hero {
  margin-top: 0;
}

.cast-video-hero::before {
  content: none;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: -60%;
  width: 46%;
  background: linear-gradient(110deg, transparent, rgba(234, 216, 183, 0.30), transparent);
  opacity: 0;
  transform: skewX(-13deg);
  animation: castHeroLight 1300ms ease 420ms both;
  pointer-events: none;
}

.cast-video-hero::after {
  content: none;
  position: absolute;
  z-index: 1;
  inset: 0;
  background: none;
  pointer-events: none;
}

.cast-video-hero video,
.cast-video-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(var(--cast-video-scale));
  filter: none;
  animation: castVideoSettle 1500ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.cast-video-hero .hero-video-logo {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(82%, 360px);
  height: auto;
  opacity: 0.50;
  object-fit: contain;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 18px rgba(234, 216, 183, 0.26));
  animation: heroLogoReveal 1100ms ease 260ms both;
  pointer-events: none;
}

.cast-video-hero.is-compact .hero-video-logo {
  opacity: 0.22;
}

.cast-video-hero.is-image-hero img {
  object-fit: contain;
  object-position: center;
  background: #070403;
  transform: none;
  animation: castHeroImageReveal 820ms ease both;
}

.cast-video-hero.is-compact {
  border: 1px solid rgba(163, 121, 69, 0.20);
}

@keyframes castHeroReveal {
  0% {
    opacity: 0;
    clip-path: inset(7% 0 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes castVideoSettle {
  0% {
    opacity: 1;
    transform: scale(1.18);
    filter: none;
  }
  100% {
    opacity: 1;
    transform: scale(var(--cast-video-scale));
    filter: none;
  }
}

@keyframes castHeroImageReveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes castHeroLight {
  0% {
    left: -60%;
    opacity: 0;
  }
  28% {
    opacity: 0.58;
  }
  100% {
    left: 112%;
    opacity: 0;
  }
}

@keyframes heroLogoReveal {
  0% {
    opacity: 0;
    transform: translate(-50%, -46%) scale(0.96);
  }
  100% {
    opacity: 0.50;
    transform: translate(-50%, -50%) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .phone-shell.cast-immersive .app-header,
  .cast-video-hero,
  .cast-video-hero::before,
  .cast-video-hero video,
  .cast-video-hero img,
  .coupon-track {
    animation: none;
    transition: none;
  }
}

.search-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin: 0 0 18px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 253, 248, 0.94);
}

.search-card svg {
  width: 22px;
  color: var(--green-dark);
}

.search-card input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  color: var(--ink);
  font-size: 1.4rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}

.section-head h2 {
  margin: 0;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1.3;
}

.section-head a,
.section-head button {
  border: 0;
  color: var(--green-dark);
  background: transparent;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

.avatar-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 78px;
  gap: 5px;
  margin: 0 -8px 20px;
  padding: 0 8px 1px;
  overflow-x: auto;
  scrollbar-width: none;
}

.avatar-rail::-webkit-scrollbar {
  display: none;
}

.avatar-card {
  display: block;
  min-width: 0;
  text-align: center;
}

.avatar-photo {
  position: relative;
  display: block;
  width: 78px;
  height: 78px;
  overflow: hidden;
  border-radius: 50%;
  background: #ddd center / cover;
  background-position: center 35%;
  background-size: cover;
}

.avatar-photo.is-empty,
.cast-image.is-empty,
.detail-hero.is-empty,
.gallery-photo.is-empty,
.diary-photo.is-empty {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(234, 216, 183, 0.30), rgba(255, 253, 248, 0.94)),
    var(--wash);
}

.no-photo-text,
.detail-no-photo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(35, 31, 32, 0.48);
  font-weight: 900;
  letter-spacing: 0;
}

.avatar-photo .no-photo-text {
  max-width: 54px;
  font-size: 0.9rem;
  line-height: 1.1;
  text-align: center;
}

.avatar-photo.is-empty::after,
.cast-image.is-empty::after {
  display: none;
}

.avatar-photo::after {
  content: "";
  position: absolute;
  inset: 68% 0 0;
  background: rgba(0, 0, 0, 0.52);
}

.avatar-area {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  z-index: 1;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.avatar-name {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 -8px 14px;
  padding: 0 8px;
  scrollbar-width: none;
}

.filter-strip::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--charcoal), var(--green-dark));
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px 10px;
}

.cast-card {
  min-width: 0;
  color: var(--text);
}

.cast-image {
  position: relative;
  display: block;
  aspect-ratio: 175 / 236;
  overflow: hidden;
  background: #ddd center / cover;
  background-position: center 35%;
  background-size: cover;
}

.cast-image .no-photo-text {
  font-size: 1.7rem;
}

.cast-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.74), transparent);
}

.area-label,
.status-label,
.rank-label {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  color: #fff;
  background: rgba(24, 23, 25, 0.62);
  font-size: 1.1rem;
  font-weight: 800;
}

.area-label {
  left: 0;
  bottom: 0;
}

.status-label {
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--rose), #5f3140);
}

.rank-label {
  top: 0;
  left: 0;
  background: linear-gradient(135deg, var(--charcoal), #3c3128);
}

.cast-meta {
  display: block;
  padding-top: 7px;
}

.name-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  min-width: 0;
}

.name-row strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.name-row span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
}

.spec {
  overflow: hidden;
  margin: 1px 0 5px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.rating svg {
  width: 13px;
  height: 13px;
  color: var(--yellow);
  fill: var(--yellow);
}

.fee {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

.fee small {
  color: var(--muted);
  font-size: 1rem;
}

.detail-hero {
  position: relative;
  min-height: 62vh;
  margin: -12px -8px 0;
  overflow: hidden;
  background: #222 center top / cover;
}

.detail-no-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  font-size: 2.4rem;
}

.detail-hero::after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(to top, rgba(15, 14, 15, 0.92), rgba(15, 14, 15, 0.18), transparent);
}

.detail-back {
  position: absolute;
  top: 12px;
  left: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 23, 25, 0.52);
  backdrop-filter: blur(10px);
}

.detail-info {
  position: absolute;
  right: 14px;
  bottom: 20px;
  left: 14px;
  z-index: 1;
  color: #fff;
}

.detail-info h1 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 5px;
  font-size: 3rem;
  line-height: 1.1;
}

.detail-info h1 span {
  font-size: 1.4rem;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 12px 0 0;
}

.detail-tags span {
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 13px;
  color: #5d4421;
  background: #fff3d6;
  border: 1px solid rgba(151, 109, 43, 0.42);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72) inset, 0 3px 10px rgba(75, 52, 24, 0.08);
  font-size: 1.1rem;
  font-weight: 800;
}

.detail-body {
  padding: 12px 0 24px;
}

.detail-section {
  margin-top: 14px;
}

.detail-section:first-child {
  margin-top: 0;
}

.detail-back-inline {
  position: sticky;
  top: 10px;
  left: 10px;
  z-index: 15;
  margin: 0 0 -46px 4px;
}

.detail-photo-section {
  overflow: hidden;
  margin-right: -8px;
  margin-left: -8px;
}

.detail-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding: 0 8px 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.detail-slider::-webkit-scrollbar {
  display: none;
}

.detail-slide {
  position: relative;
  display: block;
  min-height: 440px;
  border-radius: 8px;
  background: #222 center 35% / cover;
  scroll-snap-align: center;
  box-shadow: 0 10px 28px rgba(31, 25, 21, 0.14);
}

.detail-slide.is-empty {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2b2725, #5f5145);
}

.detail-slide .detail-no-photo {
  position: static;
}

.detail-profile-head {
  padding: 14px 16px 4px;
}

.detail-profile-head h1 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 2.8rem;
  line-height: 1.1;
}

.detail-profile-head h1 span {
  color: var(--muted);
  font-size: 1.35rem;
}

.detail-profile-head p {
  margin: 0;
  color: var(--text);
  font-size: 1.3rem;
  font-weight: 800;
}

.panel {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 22px rgba(31, 25, 21, 0.06);
}

.panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.6rem;
}

.panel p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.8;
}

.panel .panel-note {
  margin: -4px 0 12px;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.7;
}

.profile-intro {
  margin-top: 14px !important;
}

.profile-comment-block,
.profile-qa-block {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(163, 121, 69, 0.22);
}

.profile-comment-block h3,
.profile-qa-block h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.25rem;
}

.profile-comment-block p {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1.8;
}

.profile-comment-block.is-manager {
  padding: 12px;
  border: 1px solid rgba(163, 121, 69, 0.24);
  border-radius: 8px;
  background: rgba(234, 216, 183, 0.16);
}

.profile-qa-list {
  display: grid;
  gap: 8px;
}

.profile-qa-list div {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.profile-qa-list small {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.5;
}

.profile-qa-list strong {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.5;
}

.diary-placeholder {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px;
  border: 1px dashed rgba(163, 121, 69, 0.38);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(234, 216, 183, 0.18);
  font-size: 1.25rem;
  font-weight: 900;
}

.diary-placeholder svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.detail-reserve-panel {
  padding: 2px 0;
}

.detail-reserve-button {
  min-height: 52px;
  font-size: 1.45rem;
}

.detail-other-grid {
  margin-top: 10px;
}

.gallery-panel {
  padding-right: 0;
}

.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 130px;
  gap: 10px;
  overflow-x: auto;
  padding: 0 14px 2px 0;
  scrollbar-width: none;
}

.gallery-rail::-webkit-scrollbar {
  display: none;
}

.gallery-photo {
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: #ddd center 35% / cover;
}

.video-panel {
  padding: 14px;
}

.video-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  aspect-ratio: 16 / 9;
}

.video-frame iframe,
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.sns-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sns-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: linear-gradient(180deg, #fffdf8, var(--wash));
  font-size: 1.25rem;
  font-weight: 900;
}

.sns-links svg {
  width: 17px;
  height: 17px;
}

.x-timeline {
  min-height: 120px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
}

.x-post-list {
  display: grid;
  gap: 9px;
  padding: 10px;
}

.x-post-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf8, var(--wash));
}

.x-post-card img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  object-fit: cover;
}

.x-post-card span {
  min-width: 0;
}

.x-post-card.no-media span {
  grid-column: 1 / -1;
}

.x-post-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.x-post-card time {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
}

.x-post-empty {
  display: block;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  background: var(--wash);
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
}

.timeline {
  display: grid;
  gap: 10px;
}

.time-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.time-row:last-child {
  border-bottom: 0;
}

.time-row strong {
  color: var(--green-dark);
  font-size: 1.25rem;
}

.time-row span {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 800;
}

.time-row em {
  color: var(--muted);
  font-size: 1.15rem;
  font-style: normal;
  font-weight: 800;
}

.reserve-bar {
  position: fixed;
  right: max(8px, calc((100vw - 430px) / 2 + 8px));
  bottom: calc(70px + env(safe-area-inset-bottom));
  left: max(8px, calc((100vw - 430px) / 2 + 8px));
  z-index: 28;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  max-width: 414px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.reserve-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #5f3140);
  font-size: 1.3rem;
  font-weight: 900;
}

.reserve-bar a:first-child {
  color: var(--charcoal);
  background: linear-gradient(180deg, #fffdf8, var(--champagne));
}

.plain-page {
  padding: 18px 14px 30px;
}

.page-title {
  margin: 6px 0 16px;
  color: var(--ink);
  font-size: 2.2rem;
  line-height: 1.25;
}

.lead {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1.8;
}

.form-note {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(163, 121, 69, 0.32);
  border-radius: 8px;
  color: var(--text);
  background: rgba(234, 216, 183, 0.18);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.7;
}

.step-list,
.price-list,
.notice-list,
.play-guide-list,
.form-grid,
.diary-grid {
  display: grid;
  gap: 10px;
}

.system-page {
  padding-top: 18px;
}

.system-hero {
  margin: 8px 0 14px;
  padding: 18px 16px;
  border: 1px solid rgba(163, 121, 69, 0.32);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(35, 31, 32, 0.96), rgba(83, 54, 40, 0.96) 54%, rgba(82, 52, 62, 0.94)),
    var(--charcoal);
  box-shadow: 0 14px 30px rgba(31, 25, 21, 0.16);
}

.system-hero span {
  color: var(--champagne);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.system-hero .page-title {
  margin: 5px 0 8px;
  color: #fff;
}

.system-hero p,
.system-summary p {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 750;
  line-height: 1.75;
}

.system-hero p {
  color: rgba(255, 253, 248, 0.84);
}

.system-summary {
  display: grid;
  gap: 5px;
  margin-bottom: 18px;
  padding: 13px 14px;
  border: 1px solid rgba(201, 164, 95, 0.36);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
}

.system-summary b {
  color: var(--ink);
  font-size: 1.35rem;
}

.system-summary p {
  color: var(--text);
}

.system-section h2 {
  display: flex;
  align-items: center;
  gap: 8px;
}

.system-section h2::before {
  content: "";
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--green), var(--rose));
}

.step-item,
.price-item,
.notice-item,
.play-guide-item,
.form-box,
.schedule-card,
.blog-card,
.diary-card {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 8px 22px rgba(31, 25, 21, 0.05);
}

.step-item b,
.price-item b,
.notice-item b,
.play-guide-item b,
.schedule-card b,
.blog-card b {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.35;
}

.step-item p,
.price-item p,
.notice-item p,
.play-guide-item p,
.schedule-card p,
.blog-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.7;
}

.price-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
}

.price-item strong {
  color: var(--rose);
  font-size: 1.6rem;
}

.course-grid {
  display: grid;
  gap: 12px;
}

.course-card {
  overflow: hidden;
  border: 1px solid rgba(163, 121, 69, 0.24);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 10px 28px rgba(31, 25, 21, 0.06);
}

.course-head {
  padding: 15px;
  color: #fff;
  background: linear-gradient(135deg, #2b211c, #6c4a30 58%, #8f4d5f);
}

.course-head b {
  display: block;
  font-size: 1.6rem;
  line-height: 1.35;
}

.course-head p {
  margin: 7px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.6;
}

.course-service-list {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(248, 243, 235, 0.72);
}

.course-service-list p {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid rgba(163, 121, 69, 0.20);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
}

.course-service-list span {
  display: inline-flex;
  width: fit-content;
  padding: 3px 7px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--rose), #b87955);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.course-service-list em {
  color: var(--text);
  font-size: 1.16rem;
  font-style: normal;
  font-weight: 750;
  line-height: 1.65;
}

.course-price-list {
  display: grid;
}

.course-price-row {
  display: grid;
  grid-template-columns: 78px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 11px 13px;
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.98);
}

.course-price-row:nth-child(even) {
  background: rgba(248, 243, 235, 0.82);
}

.course-price-row span {
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
}

.course-price-row strong {
  color: var(--rose);
  font-size: 1.75rem;
  text-align: right;
}

.course-price-row small {
  min-width: 70px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: right;
}

.option-price-list .price-item {
  align-items: start;
}

.option-price-list .price-item strong {
  white-space: nowrap;
}

.notice-item {
  border-color: rgba(142, 54, 64, 0.18);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(249, 241, 226, 0.88));
}

.notice-item b {
  color: var(--rose);
}

.code-embed-area {
  display: grid;
  justify-items: center;
  width: 100%;
  margin-top: 14px;
  padding: 12px 0 2px;
  overflow: hidden;
}

.code-embed-area iframe {
  display: block;
  max-width: 100%;
  background: rgba(255, 253, 248, 0.94);
}

.play-guide-list {
  grid-template-columns: 1fr;
}

.play-guide-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 3px 10px;
  align-items: start;
}

.play-guide-item span {
  display: grid;
  grid-row: span 2;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(163, 121, 69, 0.28);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--charcoal), var(--green-dark));
  font-size: 1.05rem;
  font-weight: 900;
}

.flow-section {
  margin-top: 22px;
  scroll-margin-top: 66px;
}

.flow-section h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.8rem;
}

.diary-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 14px;
}

.diary-card {
  display: grid;
  gap: 9px;
  padding: 8px;
}

.diary-photo {
  display: block;
  aspect-ratio: 1 / 1.18;
  overflow: hidden;
  border-radius: 6px;
  background: #ddd center / cover;
}

.diary-photo .no-photo-text {
  font-size: 1.4rem;
}

.diary-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.diary-meta b {
  display: -webkit-box;
  overflow: hidden;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.diary-meta small {
  overflow: hidden;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.diary-source-link {
  margin-top: 6px;
}

.form-box label {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.form-group-label {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.reservation-member-strip {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  margin: 12px 0 14px;
  padding: 11px 12px;
  border: 1px solid rgba(163, 121, 69, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.94);
}

.reservation-member-strip > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
}

.reservation-member-strip svg {
  width: 18px;
  height: 18px;
}

.reservation-member-strip small,
.reserve-selected-cast small {
  display: block;
  color: var(--muted);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.25;
}

.reservation-member-strip strong,
.reserve-selected-cast strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1.25;
}

.reserve-cast-picker {
  display: grid;
  gap: 9px;
  margin-bottom: 12px;
}

.reserve-selected-cast > span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 86px;
  overflow: hidden;
  border-radius: 8px;
  color: rgba(31, 25, 21, 0.48);
  background-color: rgba(234, 216, 183, 0.38);
  background-position: center 35%;
  background-size: cover;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.reserve-login-panel {
  display: grid;
  gap: 12px;
}

.reserve-login-panel h2 {
  margin-bottom: 0;
}

.reserve-selected-cast {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 106px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
}

.reserve-selected-cast em {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 1.18rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.reserve-login-actions {
  display: grid;
  gap: 8px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid rgba(163, 121, 69, 0.42);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
  font-size: 1.3rem;
  font-weight: 900;
  text-decoration: none;
}

.secondary-btn svg {
  width: 18px;
  height: 18px;
}

.recruit-line-btn {
  margin: 4px 0 16px;
}

.form-box input,
.form-box textarea,
.form-box select {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
  outline-color: var(--green);
}

.form-box textarea {
  min-height: 96px;
  resize: vertical;
}

.option-fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.option-fieldset legend {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.option-check-list {
  display: grid;
  gap: 8px;
}

.form-box .option-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  cursor: pointer;
}

.form-box .option-check[hidden] {
  display: none;
}

.form-box .option-check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
  accent-color: var(--rose);
}

.option-check span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  min-width: 0;
}

.option-check b {
  color: var(--ink);
  font-size: 1.25rem;
}

.option-check small {
  color: var(--rose);
  font-size: 1.15rem;
  font-weight: 900;
  white-space: nowrap;
}

.option-check em {
  grid-column: 1 / -1;
  color: var(--text);
  font-size: 1.12rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.reservation-course-services {
  display: grid;
  gap: 8px;
  margin: -3px 0 12px;
  padding: 12px;
  border: 1px solid rgba(163, 121, 69, 0.28);
  border-radius: 8px;
  background: #fffaf0;
}

.reservation-course-services[hidden] {
  display: none;
}

.reservation-course-services > b {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.35;
}

.course-service-list.is-compact {
  gap: 6px;
}

.course-service-list.is-compact p {
  padding: 8px 9px;
  border-color: rgba(163, 121, 69, 0.18);
  background: rgba(255, 253, 248, 0.96);
}

.course-service-list.is-compact span {
  color: #fff;
  background: rgba(183, 58, 95, 0.82);
}

.course-service-list.is-compact em {
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 850;
}

.reservation-quote {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  padding: 13px 14px;
  border: 1px solid rgba(163, 121, 69, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(234, 216, 183, 0.28));
}

.reservation-quote span {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 900;
}

.reservation-quote strong {
  color: var(--rose);
  font-size: 2rem;
  line-height: 1.2;
}

.reservation-quote small {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.55;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--charcoal), var(--green-dark));
  font-weight: 900;
  cursor: pointer;
}

.mini-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mini-tabs a {
  display: grid;
  place-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 900;
}

.mini-tabs a.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--charcoal), var(--green-dark));
}

.bottom-nav {
  position: fixed;
  right: max(0px, calc((100vw - 430px) / 2));
  bottom: 0;
  left: max(0px, calc((100vw - 430px) / 2));
  z-index: 32;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 430px;
  height: calc(65px + env(safe-area-inset-bottom));
  margin: 0 auto;
  padding: 7px 0 env(safe-area-inset-bottom);
  border-top: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(16px);
}

.business-hours-strip {
  position: fixed;
  right: max(0px, calc((100vw - 430px) / 2));
  bottom: calc(65px + env(safe-area-inset-bottom));
  left: max(0px, calc((100vw - 430px) / 2));
  z-index: 31;
  display: flex;
  justify-content: center;
  gap: 18px;
  max-width: 430px;
  min-height: 27px;
  margin: 0 auto;
  padding: 6px 12px;
  color: rgba(255, 249, 235, 0.92);
  background: rgba(43, 37, 32, 0.62);
  border-top: 1px solid rgba(234, 216, 183, 0.22);
  border-bottom: 1px solid rgba(234, 216, 183, 0.12);
  box-shadow: 0 -8px 18px rgba(31, 25, 21, 0.12);
  backdrop-filter: blur(14px);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  white-space: nowrap;
}

.business-hours-strip span {
  min-width: 0;
}

@media (max-width: 380px) {
  .business-hours-strip {
    gap: 10px;
    padding-inline: 8px;
    font-size: 0.98rem;
  }
}

.bottom-nav a {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.bottom-nav svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8;
}

.bottom-nav a.active {
  color: var(--green-dark);
}

.desktop-contact-footer {
  display: none;
}

@media (min-width: 760px) {
  .desktop-contact-footer {
    display: block;
    padding: 10px 14px calc(112px + env(safe-area-inset-bottom));
    color: rgba(79, 71, 66, 0.58);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: center;
  }
}

.float-action {
  position: fixed;
  right: max(12px, calc((100vw - 430px) / 2 + 12px));
  bottom: calc(82px + env(safe-area-inset-bottom));
  z-index: 26;
  display: grid;
  place-items: center;
  width: 65px;
  height: 65px;
  border: 5px solid rgba(201, 164, 95, 0.38);
  border-radius: 50%;
  color: var(--charcoal);
  background: linear-gradient(180deg, #fffdf8, var(--champagne));
  box-shadow: var(--shadow);
  cursor: pointer;
}

.float-action svg {
  width: 30px;
  height: 30px;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  background: rgba(0, 0, 0, 0.36);
}

.drawer.open {
  display: block;
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: max(0px, calc((100vw - 430px) / 2));
  width: min(86vw, 330px);
  height: 100%;
  padding: 22px 20px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.drawer-logo {
  display: block;
  width: min(286px, 88%);
  height: auto;
  margin: 18px auto 22px;
  border-radius: 0;
  filter: drop-shadow(0 2px 2px rgba(75, 54, 15, 0.28)) drop-shadow(0 0 8px rgba(199, 145, 16, 0.20));
  object-fit: contain;
}

.drawer-panel a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 800;
}

.drawer-banner-links {
  display: grid;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.drawer-banner-links a {
  display: block;
  min-height: 0;
  border: 0;
  line-height: 0;
}

.drawer-banner-links img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(31, 25, 21, 0.14);
}

.drawer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--wash);
  cursor: pointer;
}

.coupon-modal {
  position: fixed;
  inset: 0;
  left: 50%;
  z-index: 70;
  display: none;
  place-items: center;
  width: min(100vw, 430px);
  padding: 16px;
  transform: translateX(-50%);
}

.coupon-modal.open {
  display: grid;
}

.coupon-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(20, 16, 13, 0.62);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.coupon-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 386px);
  max-height: min(88dvh, 730px);
  padding: 12px;
  border: 1px solid rgba(234, 216, 183, 0.32);
  border-radius: 12px;
  background: rgba(20, 16, 13, 0.80);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.40);
  backdrop-filter: blur(16px);
  animation: couponModalIn 260ms ease both;
}

.coupon-viewport {
  overflow: hidden;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
}

.coupon-track {
  display: flex;
  transition: transform 260ms ease;
}

.coupon-slide {
  display: grid;
  flex: 0 0 100%;
  place-items: center;
  margin: 0;
}

.coupon-slide img {
  display: block;
  width: 100%;
  max-height: min(76dvh, 660px);
  object-fit: contain;
}

.coupon-close {
  position: absolute;
  top: -12px;
  right: -8px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234, 216, 183, 0.34);
  border-radius: 50%;
  color: #fff7e9;
  background: rgba(43, 37, 32, 0.82);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
  cursor: pointer;
}

.coupon-close svg,
.coupon-nav svg {
  width: 21px;
  height: 21px;
}

.coupon-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 48px;
  border: 1px solid rgba(234, 216, 183, 0.26);
  color: #fff7e9;
  background: rgba(43, 37, 32, 0.52);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
}

.coupon-prev {
  left: 16px;
  border-radius: 0 18px 18px 0;
}

.coupon-next {
  right: 16px;
  border-radius: 18px 0 0 18px;
}

.coupon-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 12px 0 2px;
}

.coupon-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 249, 235, 0.36);
  cursor: pointer;
}

.coupon-dots button.active {
  width: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), #f6d79b);
}

body.coupon-open {
  overflow: hidden;
}

@keyframes couponModalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.age-gate {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 80;
  display: grid;
  place-items: start center;
  width: min(100vw, 430px);
  padding: 18px 20px;
  overflow-y: auto;
  background: var(--charcoal);
  isolation: isolate;
  transform: translateX(-50%);
}

.age-gate::before {
  content: none;
}

.age-bg-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  pointer-events: none;
}

.age-gate.hide {
  display: none;
}

.age-gate-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  grid-template-rows: minmax(calc(100vh - 36px), auto) auto;
  gap: 18px;
  width: 100%;
  min-height: calc(100vh - 36px);
  padding: 0;
}

.age-card {
  position: relative;
  align-self: center;
  width: min(calc(100vw - 32px), 380px);
  margin: 0 auto;
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 253, 248, 0.90);
  border: 1px solid rgba(234, 216, 183, 0.80);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.age-card img {
  width: min(150px, 56%);
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 2px 2px rgba(75, 54, 15, 0.28)) drop-shadow(0 0 8px rgba(199, 145, 16, 0.20));
  object-fit: contain;
}

.age-card h1 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: clamp(1.36rem, 4vw, 1.8rem);
  line-height: 1.35;
  white-space: nowrap;
}

.age-card p {
  margin: 7px 0;
  font-size: 1.3rem;
  line-height: 1.6;
}

.age-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.age-actions button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.age-actions button:last-child {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--charcoal), var(--green-dark));
}

.age-recruit-banners {
  display: grid;
  gap: 6px;
  justify-items: center;
  width: 100%;
  padding-bottom: 0;
}

.age-recruit-banners p {
  width: 100%;
  margin: 0;
  padding-bottom: 3px;
  text-align: center;
}

.age-recruit-banners a {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
}

.age-recruit-banners img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(31, 25, 21, 0.22);
}

.age-official-banners {
  display: grid;
  gap: 8px;
  justify-items: center;
  width: 100%;
  padding: 0 12px max(22px, env(safe-area-inset-bottom));
}

.official-link-banner {
  display: block;
  width: min(100%, 400px);
  line-height: 0;
}

.official-link-banner img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 10px 26px rgba(31, 25, 21, 0.20);
}

.official-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 400px);
  min-height: 68px;
  padding: 8px 14px;
  color: #2b211b;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(204, 174, 120, 0.70);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(31, 25, 21, 0.16);
  font-size: 1.25rem;
  font-weight: 900;
}

.official-logo-card img {
  display: block;
  max-width: 132px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.official-logo-card span {
  line-height: 1.35;
}

.empty {
  padding: 28px 12px;
  color: var(--muted);
  text-align: center;
  font-size: 1.3rem;
}

@media (min-width: 720px) {
  .phone-shell {
    min-height: 860px;
  }
}
