:root {
  --gold: #ec4899;
  --gold-light: #f472b6;
  --gold-dark: #be185d;
  --gold-bright: #f9a8d4;
  --pink: #ec4899;
  --pink-light: #f472b6;
  --pink-pale: #fdf2f8;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, .heading-font {
  font-family: 'Zen Maru Gothic', sans-serif;
}

@keyframes float-up {
  0%, 100% { opacity: 0; }
  0% { transform: translateY(100vh); }
  10% { opacity: 0.7; }
  85% { opacity: 0.3; }
  95% { opacity: 0; }
  100% { transform: translateY(-10vh); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236, 72, 153, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(236, 72, 153, 0); }
}

@keyframes border-glow {
  0%, 100% { border-color: rgba(236, 72, 153, 0.6); }
  50% { border-color: rgba(249, 168, 212, 1); }
}

@keyframes line-extend {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes char-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes loading-line {
  0% { width: 0; opacity: 1; }
  100% { width: 100%; opacity: 1; }
}

@keyframes mv-float-in {
  0% { opacity: 0; transform: scale(1.03) translateY(20px); filter: blur(6px); }
  100% { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

@keyframes serif-img-fade-in-left {
  0% { opacity: 0; transform: translateY(16px) scale(0.95) rotate(-1deg); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.02) rotate(-1deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(-1deg); }
}

@keyframes serif-img-fade-in {
  0% { opacity: 0; transform: translateY(16px) scale(0.95) rotate(2deg); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.02) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(2deg); }
}

@keyframes serif-fade-in {
  0% { opacity: 0; transform: translateY(16px) scale(0.95); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes voice-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.particle-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gold-particle {
  position: absolute;
  bottom: 0;
  width: 6px;
  height: 6px;
  background: rgba(236, 72, 153, 0.4);
  border-radius: 50%;
  animation: float-up linear infinite;
  opacity: 0;
}

.gold-particle:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; width: 4px; height: 4px; }
.gold-particle:nth-child(2) { left: 25%; animation-duration: 12s; animation-delay: 2s; width: 6px; height: 6px; }
.gold-particle:nth-child(3) { left: 40%; animation-duration: 9s; animation-delay: 4s; width: 3px; height: 3px; }
.gold-particle:nth-child(4) { left: 55%; animation-duration: 11s; animation-delay: 1s; width: 5px; height: 5px; }
.gold-particle:nth-child(5) { left: 70%; animation-duration: 10s; animation-delay: 3s; width: 4px; height: 4px; }
.gold-particle:nth-child(6) { left: 85%; animation-duration: 7s; animation-delay: 5s; width: 7px; height: 7px; }
.gold-particle:nth-child(7) { left: 15%; animation-duration: 13s; animation-delay: 6s; width: 3px; height: 3px; }
.gold-particle:nth-child(8) { left: 60%; animation-duration: 9s; animation-delay: 2.5s; width: 5px; height: 5px; }
.gold-particle:nth-child(9) { left: 30%; animation-duration: 11s; animation-delay: 7s; width: 4px; height: 4px; }
.gold-particle:nth-child(10) { left: 75%; animation-duration: 8s; animation-delay: 1.5s; width: 6px; height: 6px; }

.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-bright) 40%, var(--gold) 60%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

.gold-text {
  color: var(--gold);
}

.gold-border {
  border-color: var(--gold);
}

.gold-separator {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 20%, var(--gold-bright) 50%, var(--gold-light) 80%, transparent 100%);
}

.gold-separator-thick {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 20%, var(--gold-bright) 50%, var(--gold-light) 80%, transparent 100%);
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright), var(--gold-dark));
}

.section-title-left::after {
  left: 0;
  transform: translateX(0);
}

.section-heading {
  position: relative;
  display: inline-block;
}

.section-heading__shadow {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: clamp(56px, 12vw, 100px);
  font-weight: 900;
  color: rgba(236, 72, 153, 0.06);
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.section-heading__main {
  display: block;
  font-size: clamp(56px, 12vw, 100px);
  font-weight: 900;
  color: rgba(236, 72, 153, 0.10);
  letter-spacing: 0.08em;
  line-height: 1;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.section-heading__label {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(15px, 2.5vw, 20px);
  font-weight: 900;
  color: var(--pink);
  letter-spacing: 0.25em;
  white-space: nowrap;
  margin: 0;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.section-heading__label--bright {
  color: var(--gold-bright);
}

.section-heading--cast .section-heading__shadow {
  color: rgba(236, 72, 153, 0.04);
}

.placeholder-img-gold {
  background: linear-gradient(135deg, #1a0a10 0%, #2d0a1e 30%, #3d0f2a 60%, #2d0a1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  overflow: hidden;
}

.placeholder-img-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(236,72,153,0.1) 0%, transparent 50%, rgba(236,72,153,0.1) 100%);
}

.placeholder-img-pink {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 40%, #f48fb1 70%, #f8bbd0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2185b;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  overflow: hidden;
}

.shop-btn-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
}

.shop-btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.shop-btn-gold:hover::before {
  transform: translateX(0);
}

.shop-btn-gold:hover {
  color: #fff;
  border-color: var(--gold-bright);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
  transform: translateY(-3px);
}

.shop-btn-gold span {
  position: relative;
  z-index: 1;
}

.shop-btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  background-size: 200% auto;
  border: none;
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  padding: 18px 48px;
  letter-spacing: 0.15em;
  transition: all 0.3s ease;
  animation: shimmer 3s linear infinite;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.shop-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(190, 24, 93, 0.6);
}

.cast-frame {
  position: relative;
  display: inline-block;
}

.cast-frame::before,
.cast-frame::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--gold);
  border-style: solid;
}

.cast-frame::before {
  top: -8px;
  left: -8px;
  border-width: 2px 0 0 2px;
}

.cast-frame::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 2px 2px 0;
}

.hero-title-decoration {
  position: relative;
}

.hero-title-decoration::before,
.hero-title-decoration::after {
  content: '—';
  color: var(--gold);
  margin: 0 12px;
  opacity: 0.8;
}

nav a {
  position: relative;
  transition: color 0.3s ease;
}

nav a.header-nav::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

nav a.header-nav:hover::after {
  width: 100%;
}

.concept-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 180px);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(236, 72, 153, 0.15);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.spec-table tr {
  border-bottom: 1px solid rgba(236, 72, 153, 0.2);
}

.spec-table td:first-child {
  color: var(--gold);
  font-weight: 500;
  width: 120px;
}

.spec-table td {
  padding: 12px 0;
  color: #555;
}

.spec-table td.spec-table__label {
  color: var(--pink);
  font-weight: 500;
  width: 100px;
}

.footer-banner {
  display: block;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.footer-banner:hover {
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
  transform: translateY(-3px);
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav-link:hover {
  color: #fbbf24;
}

.footer-nav-link--purchase {
  color: #fbbf24;
  font-weight: 700;
}

.footer-nav-link--purchase:hover {
  color: #fde68a;
}

.char-glow {
  background: radial-gradient(ellipse at center, rgba(236,72,153,0.2) 0%, transparent 70%);
}

.char-float {
  animation: char-float 4s ease-in-out infinite;
}

.gold-diamond {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 8px;
}

.gold-diamond-sm {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold-light);
  transform: rotate(45deg);
  margin: 0 6px;
}

.elegant-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(253,242,248,0.9) 100%);
  border: 1px solid rgba(236, 72, 153, 0.25);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.elegant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.spec-bg {
  background: linear-gradient(135deg, #1a0a10 0%, #2d0a1e 50%, #1a0a10 100%);
}

.bg-gradient-section {
  background: linear-gradient(180deg, #fff 0%, #fdf2f8 30%, #fff8fc 60%, #fff 100%);
}

.bg-gradient-reverse {
  background: linear-gradient(180deg, #fff 0%, #fff8fc 40%, #fdf2f8 70%, #fff 100%);
}

.age-modal__bg {
  background: rgba(0, 0, 0, 1);
}

.age-modal__box {
  border: 1px solid rgba(236, 72, 153, 0.5);
  background: rgba(15, 3, 10, 0.95);
  text-align: center;
}

.age-modal__corner {
  position: absolute;
  width: 32px;
  height: 32px;
}

.age-modal__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.age-modal__corner--tr {
  top: 0;
  right: 0;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.age-modal__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.age-modal__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.age-modal__chara {
  margin-bottom: 20px;
}

.age-modal__chara img {
  width: 120px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 0 20px rgba(236, 72, 153, 0.3));
}

.age-modal__subtitle {
  color: var(--gold-light);
}

.age-modal__desc {
  color: rgba(255, 255, 255, 0.5);
}

.age-modal__note {
  color: rgba(255, 255, 255, 0.4);
}

.age-modal__btn-no {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.4);
  transition: border-color 0.3s ease, color 0.3s ease;
}

.age-modal__btn-no:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
}

.header {
  background: rgba(253, 242, 248, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(236, 72, 153, 0.15);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.header__logo {
  height: 60px;
  width: auto;
  transition: filter 0.4s ease;
}

.header__hamburger {
  color: #9d174d;
  transition: color 0.4s ease;
}

.header__hamburger svg {
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
}

.header__adv-dec-dot-sm {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(236, 72, 153, 0.25);
}

.header__adv-dec-line-l {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3));
}

.header__adv-dec-diamond-sm {
  width: 4px;
  height: 4px;
  background: rgba(236, 72, 153, 0.4);
  transform: rotate(45deg);
}

.header__adv-dec-diamond-md {
  width: 6px;
  height: 6px;
  background: rgba(236, 72, 153, 0.5);
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(236, 72, 153, 0.2);
}

.header__adv-dec-line-r {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(236, 72, 153, 0.3), transparent);
}

.adv-menu-item {
  transition: all 0.3s ease;
}

.adv-label {
  font-size: 15px;
  letter-spacing: 0.3em;
  color: #9d174d;
  font-family: 'Zen Maru Gothic', sans-serif;
  text-shadow: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.adv-purchase-text {
  color: #ec4899;
  font-weight: 700;
}

.adv-sep {
  width: 4px;
  height: 4px;
  background: rgba(236, 72, 153, 0.3);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 3, 7, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sp-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.sp-menu__close:hover {
  color: rgba(255, 255, 255, 0.9);
}

.sp-menu__deco-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent);
}

.sp-menu__deco-line--top {
  margin-bottom: 48px;
}

.sp-menu__deco-line--bottom {
  margin-top: 48px;
}

.sp-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.sp-menu__sep {
  width: 1px;
  height: 16px;
  background: rgba(236, 72, 153, 0.2);
}

.sp-menu-link {
  display: block;
  padding: 20px 48px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sp-menu-link--purchase {
  color: var(--pink);
}

.sp-menu-link:hover {
  color: var(--pink);
}

#hero * {
  animation-play-state: paused;
}

#hero.hero--active * {
  animation-play-state: running;
}

.hero__mv-img {
  animation: mv-float-in 1.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__serif-left {
  position: absolute;
  top: 15%;
  left: 4%;
  z-index: 10;
  pointer-events: none;
  text-align: left;
}

.hero__serif-right {
  position: absolute;
  bottom: 3%;
  right: 2%;
  z-index: 10;
  pointer-events: none;
  text-align: right;
  animation: serif-fade-in 0.8s ease-out 2.4s both;
}

.hero__serif-text--lg {
  font-family: 'Yusei Magic', sans-serif;
  font-size: clamp(20px, 3.5vw, 36px);
  color: #fff;
  margin: 0;
  letter-spacing: 0.05em;
  paint-order: stroke fill;
  -webkit-text-stroke: 2.5px #ec4899;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.12);
  animation: serif-fade-in 0.8s ease-out 1.2s both;
  transform: rotate(-1deg);
}

.hero__serif-text--md {
  font-family: 'Yusei Magic', sans-serif;
  font-size: clamp(16px, 2.8vw, 28px);
  color: #fff;
  margin: 6px 0 0;
  letter-spacing: 0.03em;
  paint-order: stroke fill;
  -webkit-text-stroke: 2px #ec4899;
  text-shadow: 2px 3px 0 rgba(0, 0, 0, 0.1);
  animation: serif-fade-in 0.8s ease-out 1.6s both;
  transform: rotate(0.5deg);
}

.hero__serif-text--xl {
  font-family: 'Yusei Magic', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  margin: 4px 0 0;
  letter-spacing: 0.08em;
  paint-order: stroke fill;
  -webkit-text-stroke: 3.5px #ec4899;
  text-shadow: 3px 4px 0 rgba(0, 0, 0, 0.15);
  animation: serif-fade-in 0.8s ease-out 2s both;
  transform: rotate(-0.5deg);
}

.hero__serif-img--left {
  height: clamp(250px, 50vh, 500px);
  width: auto;
  animation: serif-img-fade-in-left 0.8s ease-out 1.2s both;
}

.hero__serif-img--right {
  width: clamp(250px, 40vw, 400px);
  height: auto;
  animation: serif-img-fade-in 0.8s ease-out 2.4s both;
}

.purchase {
  padding: 80px 0;
  background: #ec4899;
}

.purchase__title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.purchase__date {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

.purchase__store-note {
  display: inline-block;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.45), rgba(168, 85, 247, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 14px 36px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}

@media (max-width: 639px) {
  .purchase__store-note {
    font-size: 20px;
    padding: 14px 28px;
    text-align: center;
    border-radius: 16px;
  }
}

.purchase__shop-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  gap: 16px;
  justify-content: center;
}

@media (max-width: 639px) {
  .purchase__shop-list {
    grid-template-columns: minmax(0, 220px);
  }
}

.purchase__shop-btn {
  flex: 1;
  min-width: 170px;
  max-width: 220px;
  padding: 18px 20px;
  background: #fff;
  color: #ec4899;
  border-radius: 0;
  text-decoration: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: all 0.3s ease;
  text-align: center;
}

.voice__thumbnail {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.voice__title-sub {
  color: var(--pink);
}

.voice__title-main {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 900;
  color: #1a0010;
  margin-bottom: 8px;
  line-height: 1.5;
}

.voice__title-catch {
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.voice__description {
  font-size: 14px;
  color: #555;
  line-height: 2.2;
  text-align: center;
}

.voice__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  background: var(--pink);
  color: #fff;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid var(--pink);
  transition: all 0.3s ease;
}

.voice__btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

.voice-marquee {
  display: flex;
  gap: 16px;
  animation: voice-scroll 60s linear infinite;
  width: max-content;
}

.voice-marquee:hover {
  animation-play-state: paused;
}

.voice-marquee img {
  height: 400px;
  width: auto;
  border-radius: 8px;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.voice-marquee img:hover {
  opacity: 0.85;
}

.voice__marquee-wrap {
  margin-top: 48px;
  overflow: hidden;
  width: 100%;
  position: relative;
}

.connector {
  padding: 120px 20px 120px;
  margin: -1px 0;
  clip-path: polygon(0 60px, 100% 0, 100% calc(100% - 60px), 0 100%);
  background: #ec4899;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.06) 10px, rgba(255,255,255,0.06) 11px);
}

.connector__lead {
  font-size: clamp(16px, 3vw, 22px);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.connector__title {
  font-size: clamp(24px, 5vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 24px;
}

.connector__accent {
  color: #fde68a;
}

.product {
  padding: 80px 0 100px;
  overflow: hidden;
  overflow-x: clip;
}

.product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.product__grid:last-child {
  margin-bottom: 0;
}

.product-text__label {
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.4em;
  margin-bottom: 20px;
}

.product-text__title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-text__title--sp {
  margin-bottom: 0;
}

.product-text__divider {
  width: 40px;
  height: 2px;
  background: var(--pink);
  margin-bottom: 24px;
}

.product-text__body {
  font-size: 15px;
  color: #555;
  line-height: 2.4;
}

.product-text__body + .product-text__body {
  margin-top: 16px;
}

.product-text__note {
  font-size: 12px;
  color: #999;
  line-height: 1.8;
  margin-top: 24px;
}

.product-image__wrap {
  position: relative;
}

.product-border-deco {
  position: absolute;
  border: 2px solid rgba(236, 72, 153, 0.2);
}

.product-border-deco--right {
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
}

.product-border-deco--left {
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
}

.product-image__img {
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.concept {
  padding: 100px 0 120px;
  background: #fff;
}

.concept__bg-radial {
  background: radial-gradient(ellipse at 50% 30%, rgba(236,72,153,0.04) 0%, transparent 60%);
}

.concept__statement {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

.concept__accent {
  color: var(--pink);
}

.concept__divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  margin: 0 auto 48px;
}

.concept-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.concept-pillar__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border: 2px solid rgba(236, 72, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-pillar__num {
  font-size: 24px;
  color: var(--pink);
  opacity: 0.7;
}

.concept-pillar__title {
  font-size: 16px;
  font-weight: 900;
  color: #1a1a1a;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.concept-pillar__body {
  font-size: 13px;
  color: #666;
  line-height: 2.0;
}

.cast {
  padding: 100px 0 120px;
  background: linear-gradient(180deg, #1a0a10 0%, #2d0a1e 40%, #1a0a10 100%);
  overflow: hidden;
}

.cast__bg-radial {
  background: radial-gradient(ellipse at 30% 50%, rgba(236,72,153,0.08) 0%, transparent 60%);
}

.cast-pc {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  align-items: center;
}

.cast-pc__img-wrap {
  position: relative;
}

.cast-pc__glow {
  position: absolute;
  inset: -20%;
  filter: blur(40px);
  z-index: 0;
}

.cast-pc__img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.3));
}

.cast-pc__credit {
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: rgba(249, 168, 212, 0.4);
  letter-spacing: 0.2em;
  margin-top: 12px;
  text-align: center;
  max-width: 600px;
}

.cast-pc__text {
  padding-left: 32px;
}

.cast-pc__label {
  font-size: 11px;
  color: var(--gold-bright);
  letter-spacing: 0.4em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.cast-pc__name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.cast-pc__cv {
  font-size: 13px;
  color: var(--gold-bright);
  letter-spacing: 0.2em;
  opacity: 0.8;
}

.cast-pc__divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-bright), transparent);
  margin: 24px 0;
}

.cast-pc__quote {
  font-size: 14px;
  color: rgba(249, 168, 212, 0.7);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.cast-pc__spec {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.15em;
  margin-bottom: 20px;
}

.cast-pc__body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2.2;
}

.cast-sp {
  display: none;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cast-sp__img-wrap {
  position: relative;
  margin-bottom: -40px;
  z-index: 1;
}

.cast-sp__glow {
  position: absolute;
  inset: -25%;
  filter: blur(40px);
  z-index: 0;
}

.cast-sp__img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(236, 72, 153, 0.3));
}

.cast-sp__credit {
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: rgba(249, 168, 212, 0.4);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.cast-sp__card {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 500px;
  padding: 36px 28px;
  background: rgba(26, 10, 16, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(236, 72, 153, 0.15);
  text-align: center;
}

.cast-sp__name {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.cast-sp__cv {
  font-size: 12px;
  color: rgba(249, 168, 212, 0.6);
  letter-spacing: 0.3em;
  margin-bottom: 16px;
}

.cast-sp__divider {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.5), transparent);
  margin: 0 auto 16px;
}

.cast-sp__quote {
  font-size: 13px;
  color: rgba(249, 168, 212, 0.6);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.cast-sp__spec {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cast-sp__body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2.2;
  text-align: left;
}

.voice-actress {
  padding: 100px 0 120px;
  background: #fff;
}

.voice-actress__bg-radial {
  background: radial-gradient(ellipse at 70% 50%, rgba(236,72,153,0.05) 0%, transparent 60%);
}

.voice-actress-pc__text {
  padding-right: 48px;
}

.voice-actress-pc__label {
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.4em;
  margin-bottom: 16px;
  opacity: 0.5;
}

.voice-actress-pc__name {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 8px;
}

.voice-actress__info-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.voice-actress__info-row--center {
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
}

.voice-actress__info-row--center .voice-actress__social {
  position: absolute;
  left: calc(50% + 80px);
}

@media (max-width: 340px) {
  .voice-actress__info-row--center {
    flex-direction: column;
  }

  .voice-actress__info-row--center .voice-actress__social {
    position: static;
    justify-content: center;
    margin-top: 8px;
  }
}

.voice-actress__info-text .voice-actress-pc__name,
.voice-actress__info-text .voice-actress-sp__name {
  margin-bottom: 4px;
}

.voice-actress__info-text .voice-actress-pc__role,
.voice-actress__info-text .voice-actress-sp__role {
  margin-bottom: 0;
}

.voice-actress__info-row--center .voice-actress__info-text {
  text-align: center;
}

.voice-actress__social {
  display: flex;
  align-items: center;
  gap: 10px;
}


.voice-actress__social-link {
  color: var(--pink);
  opacity: 0.6;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
}

.voice-actress__social-link:hover {
  opacity: 1;
}

.voice-actress-pc__role {
  font-size: 13px;
  color: var(--pink);
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-bottom: 40px;
}

.voice-actress-pc__comment-wrap {
  border-left: 3px solid rgba(236, 72, 153, 0.3);
  padding-left: 24px;
  position: relative;
}

.voice-actress-pc__quote-mark {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(236, 72, 153, 0.2);
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 12px;
}

.voice-actress-pc__quote-mark--close {
  position: static;
  text-align: right;
  margin-top: 4px;
  display: block;
}

.voice-actress-pc__comment {
  font-size: clamp(13px, 1.4vw, 15px);
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.05em;
  padding-top: 8px;
}

.voice-actress-pc__img-wrap {
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.voice-actress-pc__img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.08));
}

.voice-actress-pc__credit {
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.2em;
  margin-top: 12px;
}

.voice-actress-sp__img-wrap {
  position: relative;
  margin-bottom: -40px;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.voice-actress-sp__img-inner {
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}

.voice-actress-sp__img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.08));
}

.voice-actress-sp__credit {
  position: relative;
  z-index: 3;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.voice-actress-sp__card {
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(236, 72, 153, 0.2);
  padding: 32px 24px 28px;
  position: relative;
  z-index: 2;
}

.voice-actress-sp__label {
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  opacity: 0.5;
  text-align: center;
}

.voice-actress-sp__name {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 4px;
  text-align: center;
}

.voice-actress-sp__role {
  font-size: 12px;
  color: var(--pink);
  letter-spacing: 0.2em;
  opacity: 0.8;
  margin-bottom: 24px;
  text-align: center;
}

.voice-actress-sp__comment-wrap {
  border-left: 3px solid rgba(236, 72, 153, 0.3);
  padding-left: 20px;
  position: relative;
}

.voice-actress-sp__quote-mark {
  font-size: clamp(16px, 4vw, 20px);
  color: rgba(236, 72, 153, 0.2);
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 8px;
}

.voice-actress-sp__quote-mark--close {
  position: static;
  text-align: right;
  margin-top: 4px;
  display: block;
}

.voice-actress-sp__comment {
  font-size: clamp(13px, 3.5vw, 15px);
  color: #555;
  line-height: 1.9;
  letter-spacing: 0.03em;
  padding-top: 8px;
}

.footer {
  background: #0a0a0a;
}

.footer__logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  margin: 0 auto 16px;
}

.footer__separator {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(251,191,36,0.3) 30%, rgba(251,191,36,0.3) 70%, transparent 100%);
  margin-bottom: 32px;
}

.footer__separator--thin {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.footer__notice {
  color: rgba(255, 255, 255, 0.25);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
}

.sticky-cta__pc {
  background: rgba(13, 3, 8, 0.95);
  border: 1px solid rgba(236, 72, 153, 0.5);
  padding: 16px 12px;
  border-right: none;
}

.sticky-cta__pc-link {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--gold);
  font-family: 'Zen Maru Gothic', sans-serif;
}

.sticky-cta__sp {
  background: rgba(13, 3, 8, 0.97);
  border-top: 1px solid rgba(236, 72, 153, 0.4);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  cursor: pointer;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 60px rgba(236, 72, 153, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  z-index: 10000;
}

.lightbox-close:hover {
  opacity: 1;
}

@media (max-width: 900px) {
  .concept-pillars {
    grid-template-columns: 1fr !important;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 768px) {
  .hero__serif-text--lg,
  .hero__serif-text--md,
  .hero__serif-text--xl {
  }


  .hero-tagline {
    font-size: clamp(28px, 8vw, 48px);
  }

  .cast-pc {
    display: none !important;
  }

  .cast-sp {
    display: flex !important;
  }

  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    margin-bottom: 60px !important;
  }

  .voice-marquee img {
    height: 240px !important;
  }

  .voice-marquee {
    gap: 10px !important;
  }

  .product-grid .product-text {
    order: 2 !important;
  }

  .product-grid .product-image {
    order: 1 !important;
  }

  .product-grid .product-heading {
    order: 0 !important;
    display: block !important;
  }

  .product-grid .product-heading-pc {
    display: none !important;
  }

  .product-image .product-border-deco {
    display: none !important;
  }

  #hero {
    padding-top: 72px;
  }

  .hero__serif-left {
    top: 15% !important;
    left: 2% !important;
  }

  .hero__serif-img--left {
    height: clamp(150px, 30vh, 250px) !important;
  }

  .hero__serif-text--lg {
    -webkit-text-stroke-width: 1.5px !important;
  }

  .hero__serif-text--md,
  .hero__serif-text--xl {
    -webkit-text-stroke-width: 1px !important;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .hero__serif-img--left {
    height: clamp(250px, 45vh, 450px) !important;
  }

  .hero__serif-img--right {
    width: clamp(250px, 38vw, 380px) !important;
  }
}

@media (min-width: 1921px) {
  #hero {
    max-height: 100vh;
    overflow: hidden;
  }

  .hero__mv-img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center top;
  }
}


.age-yes__btn {
  text-align: center;
  justify-content: center;
}

.header__adv-dec-row {
  width: 100%;
}

.voice__section {
  overflow: hidden;
}

.voice__thumbnail-wrap {
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.voice__title-area {
  margin-bottom: 32px;
}

.voice__desc-wrap {
  max-width: 700px;
  margin: 0 auto 40px;
}

.voice__embed-wrap {
  max-width: 740px;
  margin: 0 auto 40px;
}

.voice__embed-iframe {
  display: block;
}

.voice__link-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.connector__accent--lg {
  font-size: 1.2em;
}

.product__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.product__heading-wrap {
  text-align: center;
  margin-bottom: clamp(32px, 6vw, 56px);
}

.product-heading--hidden {
  display: none;
}

.product__grid--last {
  margin-bottom: 0;
}

.spec-table--full {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  font-size: 14px;
}

.purchase__inner--pt {
  padding-top: 20px;
}

.concept__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.concept__heading-wrap {
  margin-bottom: clamp(48px, 8vw, 80px);
}

.concept__statement-wrap {
  text-align: center;
  margin-bottom: 64px;
}

.concept-pillar__item {
  text-align: center;
}

.cast__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.cast__heading-wrap {
  margin-bottom: 64px;
  padding-top: 20px;
  overflow: hidden;
}

.section-heading--full {
  max-width: 100%;
}

.voice-actress__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.voice-actress__heading-wrap {
  margin-bottom: clamp(32px, 6vw, 56px);
}

.cast-pc--voice-actress {
  grid-template-columns: 45% 55%;
}

.voice-actress-pc__img-col {
  position: relative;
  text-align: center;
}

.footer-banner__img {
  display: block;
  width: 300px;
  max-width: 100%;
  height: auto;
}

.sticky-cta__wrap {
  z-index: 100;
}

.sticky-cta__pc-pos {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== レビューセクション ===== */

.review {
  background: linear-gradient(180deg, #fff 0%, #fdf2f8 25%, #fff8fc 60%, #fce7f5 85%, #fdf2f8 100%);
  padding: clamp(64px, 10vw, 120px) 0;
}

.review__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.review__heading-wrap {
  margin-bottom: clamp(48px, 8vw, 80px);
}

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

.review-card {
  border-radius: 22px;
  padding: 36px 26px 30px;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.review-card:nth-of-type(odd) {
  transform: rotate(-0.7deg);
}

.review-card:nth-of-type(even) {
  transform: rotate(0.7deg);
}

.review-card:hover {
  transform: translateY(-6px) rotate(0deg);
  box-shadow: 0 14px 36px rgba(236, 72, 153, 0.28);
  z-index: 2;
}

.review-card__quote {
  position: absolute;
  top: -4px;
  left: 14px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 92px;
  font-weight: 900;
  color: rgba(236, 72, 153, 0.14);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.review-card__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.88rem;
  line-height: 1.9;
  color: #444;
  margin: 0;
  white-space: pre-line;
  position: relative;
  z-index: 1;
}

/* グリッド行1〜2間の水平区切り装飾 */
.review__row-separator {
  grid-column: 1 / -1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 20%, var(--gold-bright) 50%, var(--gold-light) 80%, transparent 100%);
  margin: 4px 0;
}

/* タブレット: 2カラム */
@media (max-width: 900px) {
  .review__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* SP: 1カラム */
@media (max-width: 600px) {
  .review__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review__row-separator {
    display: none;
  }

  .review-card {
    padding: 32px 22px 24px;
  }

  .review-card:nth-of-type(odd),
  .review-card:nth-of-type(even) {
    transform: none;
  }

  .review-card__quote {
    font-size: 72px;
  }
}

/* ---- もっと見る: 段階表示クラス ---- */

/* PC・SP とも非表示 */
.review-card--hidden {
  display: none;
}

/* PC では表示のまま / SP で非表示 */
@media (min-width: 768px) {
  .review-card--hidden-mobile {
    /* 表示のまま */
  }
}

@media (max-width: 767px) {
  .review-card--hidden-mobile {
    display: none;
  }
}

/* 展開アニメーション初期状態 */
.review-card--reveal {
  display: block; /* hidden を上書き */
  opacity: 0;
  transform: translateY(20px) rotate(0deg);
  animation: reviewReveal 0.6s ease-out both;
}

@keyframes reviewReveal {
  from {
    opacity: 0;
    transform: translateY(20px) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* separator の reveal */
.review__row-separator.review-card--reveal {
  display: block;
  animation: separatorReveal 0.6s ease-out both;
  transform: none;
}

@keyframes separatorReveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- もっと見るボタン ---- */
.review__more-wrap {
  text-align: center;
  margin-top: 48px;
}

.review__more-btn {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-bright, #c9a84c);
  background: rgba(255, 245, 250, 0.85);
  border: 1.5px solid var(--gold-light, #e8c87a);
  border-radius: 50px;
  padding: 14px 48px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 2px 12px rgba(236, 72, 153, 0.12);
}

.review__more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.22);
  background: rgba(255, 248, 252, 0.95);
}
