/* ==========================================================
   Studio 03 Meinohama - Landing Page Styles
   Colors: #FFFFFF / #FCE4EC / #B78791
   ========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-white: #ffffff;
  --color-pink: #fce4ec;
  --color-pink-light: #fff4f7;
  --color-rose: #b78791;
  --color-rose-dark: #97676f;
  --color-text: #3a2a2e;
  --color-text-sub: #6b5a5e;
  --color-border: #ecd7dd;

  --font-jp: "Yomogi", "Klee One", "Zen Kurenaido", "Kiwi Maru", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-handwrite: "Yomogi", "Klee One", "Zen Kurenaido", "Kiwi Maru", cursive;
  --font-en: "Klee One", "Yomogi", "Kiwi Maru", cursive;

  --shadow-sm: 0 4px 12px rgba(183, 135, 145, 0.12);
  --shadow-md: 0 10px 30px rgba(183, 135, 145, 0.18);
  --shadow-lg: 0 20px 60px rgba(183, 135, 145, 0.22);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --header-h: 64px;
  --countdown-h: 48px;
  --sticky-h: calc(var(--header-h) + var(--countdown-h));

  --easing: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--sticky-h);
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}

body {
  font-family: var(--font-jp);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.95;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease, color 0.3s ease;
}

a:hover { opacity: 0.75; }

ul, ol { list-style: none; }

em { font-style: normal; color: var(--color-rose-dark); font-weight: 600; }

s { opacity: 0.55; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 820px; }

.sp-only { display: none; }

/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--easing), transform 1s var(--easing);
  will-change: opacity, transform;
}

.reveal.reveal--left { transform: translateX(-40px); }
.reveal.reveal--right { transform: translateX(40px); }

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

/* Prevent reveal transforms from creating horizontal overflow on mobile */
@media (max-width: 768px) {
  .reveal.reveal--left,
  .reveal.reveal--right {
    transform: translateY(40px);
  }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--color-pink-light);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__inner { text-align: center; }

.loader__logo {
  display: block;
  font-family: var(--font-jp);
  font-size: 32px;
  letter-spacing: 0.2em;
  color: var(--color-rose-dark);
  margin-bottom: 24px;
  font-weight: 500;
  animation: fadeInUp 0.9s var(--easing);
}

.loader__bar {
  display: block;
  width: 160px;
  height: 2px;
  background: rgba(183, 135, 145, 0.2);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}

.loader__bar-inner {
  display: block;
  width: 0;
  height: 100%;
  background: var(--color-rose);
  animation: loadBar 1.4s var(--easing) forwards;
}

@keyframes loadBar {
  0% { width: 0; }
  100% { width: 100%; }
}

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

/* ---------- Section Common ---------- */
.section {
  padding: 180px 0;
  position: relative;
  overflow-x: clip;
}

.section__head {
  text-align: center;
  margin-bottom: 124px;
}

.section__en {
  font-family: var(--font-jp);
  color: var(--color-rose);
  letter-spacing: 0.25em;
  font-size: 14px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 500;
}

.section__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
  line-height: 1.5;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-rose);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.4s var(--easing);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  font-family: var(--font-jp);
}

.btn__arrow {
  display: inline-block;
  transition: transform 0.4s var(--easing);
}

.btn--primary {
  background: var(--color-rose);
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-rose-dark);
  transform: translateX(-101%);
  transition: transform 0.5s var(--easing);
  z-index: 0;
}

.btn--primary > * { position: relative; z-index: 1; }

.btn--primary:hover {
  opacity: 1;
  box-shadow: var(--shadow-md);
}

.btn--primary:hover::before { transform: translateX(0); }
.btn--primary:hover .btn__arrow { transform: translateX(6px); }

.btn--ghost {
  background: transparent;
  color: var(--color-rose-dark);
  border-color: var(--color-rose);
}

.btn--ghost:hover {
  background: var(--color-rose);
  color: var(--color-white);
  opacity: 1;
  border-color: var(--color-rose);
}

.btn--lg {
  height: 64px;
  min-width: 300px;
  font-size: 16px;
}

/* ---------- CTA Button Animation ---------- */
@keyframes ctaFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 20px rgba(183, 135, 145, 0.35);
  }
  50% {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 16px 40px rgba(183, 135, 145, 0.55);
  }
}

@keyframes ctaPulseRing {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(1.22);
    opacity: 0;
  }
}

@keyframes ctaShine {
  0% { transform: translateX(-120%) skewX(-20deg); }
  60%, 100% { transform: translateX(220%) skewX(-20deg); }
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.btn--cta {
  animation: ctaFloat 2.2s ease-in-out infinite;
  position: relative;
}

.btn--cta::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--color-rose);
  pointer-events: none;
  animation: ctaPulseRing 2.2s ease-out infinite;
  z-index: -1;
}

.btn--cta:hover {
  animation-play-state: paused;
}

.btn--cta:hover::after {
  animation-play-state: paused;
}

/* Ripple span inside btn--cta */
.btn--cta .ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  animation: ripple 0.6s linear;
  pointer-events: none;
  z-index: 10;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  max-width: 100vw;
  overflow: hidden;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 24px rgba(183, 135, 145, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.header__logo-main {
  font-family: var(--font-jp);
  font-size: 20px;
  letter-spacing: 0.12em;
  color: var(--color-rose-dark);
  font-weight: 500;
}

.header__logo-sub {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-text-sub);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--color-rose);
  color: var(--color-white);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-family: var(--font-jp);
  min-width: 0;
  font-weight: 500;
  /* override ctaFloat for header - keep but smaller scale */
  animation: ctaFloat 2.5s ease-in-out infinite;
}

.header__cta:hover {
  background: var(--color-rose-dark);
  opacity: 1;
  animation-play-state: paused;
}

/* ---------- Countdown Bar ---------- */
.countdown-bar {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: var(--countdown-h);
  background: linear-gradient(135deg, var(--color-rose-dark) 0%, var(--color-rose) 60%, #c79aa3 100%);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 99;
  font-size: 14px;
  letter-spacing: 0.05em;
  font-family: var(--font-jp);
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  padding: 0 16px;
  max-width: 100vw;
}

.countdown-bar__icon {
  font-size: 18px;
  flex-shrink: 0;
}

.countdown-bar__text {
  flex-shrink: 0;
}

.countdown-bar__time {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}

.countdown-bar__limit {
  font-size: 13px;
  opacity: 0.92;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero {
  padding-top: calc(var(--sticky-h) + 110px);
  padding-bottom: 130px;
  background: linear-gradient(180deg, var(--color-pink) 0%, var(--color-pink-light) 60%, var(--color-white) 100%);
  position: relative;
  overflow: hidden;
}

.hero__bg-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.deco {
  position: absolute;
  border-radius: 50%;
  background: rgba(183, 135, 145, 0.12);
  animation: float 10s ease-in-out infinite;
}

.deco--1 {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -80px;
  background: rgba(183, 135, 145, 0.1);
}

.deco--2 {
  width: 200px;
  height: 200px;
  bottom: 80px;
  left: -60px;
  background: rgba(255, 255, 255, 0.5);
  animation-delay: -3s;
}

.deco--3 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 42%;
  background: rgba(183, 135, 145, 0.08);
  animation-delay: -6s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -20px); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.hero__content {
  min-width: 0;
}

.hero__sub {
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--color-rose);
  margin-bottom: 54px;
  font-weight: 400;
}

.hero__title {
  font-size: 44px;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-bottom: 58px;
  color: var(--color-text);
}

.hero__accent {
  color: var(--color-rose-dark);
  font-size: 1.3em;
  font-family: var(--font-jp);
  font-weight: 500;
  padding: 0 4px;
  display: inline-block;
  position: relative;
}

.hero__accent::after {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--color-pink);
  z-index: -1;
  border-radius: 4px;
}

.hero__mark {
  background: linear-gradient(transparent 70%, var(--color-pink) 70%);
  padding: 0 2px;
}

.hero__text {
  font-size: 16px;
  color: var(--color-text-sub);
  margin-bottom: 70px;
  line-height: 2.05;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 78px;
}

.hero__meta {
  display: flex;
  gap: 36px;
  padding-top: 62px;
  border-top: 1px solid rgba(183, 135, 145, 0.25);
}

.hero__meta li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.hero__meta-num {
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-rose-dark);
  line-height: 1;
  letter-spacing: 0.04em;
}

.hero__meta-label {
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: 0.15em;
}

.hero__image {
  position: relative;
  min-width: 0;
}

.hero__image-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 50% 50% 50% 50% / 58% 58% 42% 42%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--easing);
}

.hero__image:hover .hero__image-wrap img {
  transform: scale(1.06);
}

@keyframes heroFloat {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-1deg) translateY(-10px); }
}

.hero__image-badge {
  position: absolute;
  bottom: 0;
  left: 8px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-rose-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  font-family: var(--font-jp);
  letter-spacing: 0.15em;
  animation: spinSlow 20s linear infinite;
  z-index: 2;
}

.hero__image-badge span { font-size: 12px; }
.hero__image-badge strong { font-size: 22px; font-weight: 500; }

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Marquee */
.marquee {
  position: relative;
  margin-top: 110px;
  overflow: hidden;
  padding: 18px 0;
  background: var(--color-rose);
  transform: rotate(-1.5deg);
  color: var(--color-white);
  width: 110%;
  left: -5%;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  font-family: var(--font-jp);
  font-size: 18px;
  letter-spacing: 0.25em;
  animation: marqueeAnim 30s linear infinite;
}

.marquee__track span { padding: 0 12px; }

@keyframes marqueeAnim {
  0% { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ---------- Campaign Banner ---------- */
.cambanner {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--color-pink) 0%, #f9d2dd 100%);
  position: relative;
  overflow: hidden;
}

.cambanner--mid {
  background: var(--color-pink-light);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.cambanner--final {
  background: linear-gradient(135deg, var(--color-rose) 0%, #c79aa3 100%);
  color: var(--color-white);
}

.cambanner__inner {
  text-align: center;
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.cambanner__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  font-weight: 500;
  animation: pulse 2s ease-in-out infinite;
}

.cambanner--final .cambanner__badge {
  background: var(--color-white);
  color: var(--color-rose-dark);
}

.cambanner__badge .material-icons-outlined { font-size: 18px; }

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(183, 135, 145, 0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 0 10px rgba(183, 135, 145, 0); }
}

.cambanner__title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.95;
  margin-bottom: 62px;
  color: var(--color-text);
}

.cambanner--final .cambanner__title { color: var(--color-white); }

.cambanner__title em {
  font-size: 1.3em;
  color: var(--color-rose-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(transparent 70%, var(--color-white) 70%);
  padding: 0 6px;
}

.cambanner--final .cambanner__title em {
  color: var(--color-white);
  background: linear-gradient(transparent 70%, var(--color-rose-dark) 70%);
}

.cambanner .btn--primary { margin-bottom: 54px; }

.cambanner--final .btn--primary {
  background: var(--color-white);
  color: var(--color-rose-dark);
}

.cambanner--final .btn--primary::before { background: var(--color-pink); }
.cambanner--final .btn--primary:hover { color: var(--color-rose-dark); }

.cambanner__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 62px;
}

.cambanner--final .cambanner__notes { color: rgba(255, 255, 255, 0.92); }

.cambanner__deadline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: var(--color-white);
  border: 2px solid var(--color-rose);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.cambanner--final .cambanner__deadline { background: var(--color-white); }

.cambanner__deadline-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-rose-dark);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}

.cambanner__deadline-date {
  font-size: 16px;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.cambanner__deadline-date strong,
.cambanner__deadline-date .js-countdown {
  font-family: var(--font-jp);
  font-size: 22px;
  color: var(--color-rose-dark);
  font-weight: 500;
  margin: 0 4px;
  vertical-align: -2px;
}

/* ---------- Testimonials ---------- */
.testimonial { background: var(--color-pink-light); }

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

.testimonial__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 70px 62px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.testimonial__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.testimonial__photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 3px solid var(--color-pink);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.testimonial__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}

.testimonial__card:hover .testimonial__photo {
  transform: scale(1.08);
}

.testimonial__stars {
  color: #f4b942;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.testimonial__age {
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  background: var(--color-pink);
  padding: 3px 12px;
  border-radius: 999px;
}

.testimonial__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-rose-dark);
  margin-bottom: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.testimonial__text {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.9;
  text-align: left;
}

/* ---------- Voice ---------- */
.voice { background: var(--color-white); }

.voice__lead {
  text-align: center;
  margin-bottom: 86px;
}

.voice__en {
  font-family: var(--font-jp);
  color: var(--color-rose);
  letter-spacing: 0.25em;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.voice__title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.voice__title em {
  font-size: 1.15em;
  color: var(--color-rose-dark);
}

.voice__list {
  max-width: 720px;
  margin: 0 auto 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.voice__item {
  display: flex;
  min-width: 0;
}

.voice__item--right { justify-content: flex-end; }

.voice__balloon {
  position: relative;
  background: var(--color-pink);
  border-radius: 20px;
  padding: 18px 28px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  max-width: 80%;
  box-shadow: var(--shadow-sm);
}

.voice__balloon::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: -10px;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent var(--color-pink) transparent transparent;
}

.voice__item--right .voice__balloon::before {
  left: auto;
  right: -10px;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent var(--color-pink);
}

.voice__arrow {
  text-align: center;
  color: var(--color-rose);
  margin-bottom: 32px;
  line-height: 0.6;
}

.voice__arrow .material-icons-outlined {
  font-size: 40px;
  display: block;
  opacity: 0.4;
  animation: arrowDown 1.8s ease-in-out infinite;
}

.voice__arrow .material-icons-outlined:nth-child(2) { opacity: 0.6; animation-delay: 0.2s; }
.voice__arrow .material-icons-outlined:nth-child(3) { opacity: 0.9; animation-delay: 0.4s; }

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

.voice__answer {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

.voice__answer em {
  font-size: 1.15em;
  color: var(--color-rose-dark);
  background: linear-gradient(transparent 70%, var(--color-pink) 70%);
  padding: 0 4px;
}

/* ---------- Point ---------- */
.point { background: var(--color-pink-light); }

.point__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

.point__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 80px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.point__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.point__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.point__num {
  font-family: var(--font-jp);
  font-size: 52px;
  font-weight: 500;
  color: var(--color-rose);
  line-height: 1;
  letter-spacing: 0.02em;
}

.point__label {
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-rose);
  text-transform: lowercase;
}

.point__image {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.point__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}

.point__card:hover .point__image img { transform: scale(1.06); }

.point__title {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.point__text {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.9;
}

/* ---------- Service ---------- */
.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 68px;
}

.service__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 80px 66px;
  text-align: center;
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  position: relative;
  min-width: 0;
}

.service__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-rose);
}

.service__label {
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-rose);
  margin-bottom: 20px;
}

.service__label strong {
  font-size: 20px;
  font-weight: 500;
  margin-left: 4px;
}

.service__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-rose);
  margin-bottom: 16px;
}

.service__icons .material-icons-outlined { font-size: 28px; }

.service__time {
  color: var(--color-rose-dark);
  margin-bottom: 20px;
  font-family: var(--font-jp);
}

.service__time strong { font-size: 48px; font-weight: 500; letter-spacing: 0.02em; }
.service__time small { font-size: 14px; margin-left: 4px; }

.service__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service__title em {
  display: inline-block;
  margin-top: 4px;
  background: linear-gradient(transparent 70%, var(--color-pink) 70%);
  padding: 0 4px;
}

.service__text {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.9;
}

/* ---------- Campaign ---------- */
.campaign { background: var(--color-white); }

.campaign--again {
  background: var(--color-pink-light);
  padding-top: 110px;
  padding-bottom: 110px;
}

.campaign__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
}

.campaign__card {
  background: var(--color-white);
  border: 2px solid var(--color-rose);
  border-radius: var(--radius-lg);
  padding: 76px 70px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  min-width: 0;
}

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

.campaign__head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 999px;
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.campaign__head .material-icons-outlined { font-size: 16px; }
.campaign__head strong { font-size: 16px; font-weight: 700; }

.campaign__catch {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.campaign__price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.campaign__price-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-text-sub);
  margin-bottom: 4px;
}

.campaign__price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.campaign__old .campaign__price-value { color: var(--color-text-sub); }
.campaign__old .campaign__price-value strong {
  font-family: var(--font-jp);
  font-size: 28px;
  font-weight: 500;
  text-decoration: line-through;
  opacity: 0.6;
}

.campaign__new .campaign__price-value { color: var(--color-rose-dark); }
.campaign__new .campaign__price-value strong {
  font-family: var(--font-jp);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.campaign__price-value small { font-size: 12px; line-height: 1.3; }

.campaign__arrow {
  font-size: 32px !important;
  color: var(--color-rose);
}

.campaign__off {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--color-rose);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-md);
  animation: spinSlow 16s linear infinite;
}

.campaign__off strong {
  font-family: var(--font-jp);
  font-size: 30px;
  font-weight: 700;
}

.campaign__off span {
  font-size: 10px;
  line-height: 1.1;
  text-align: left;
  letter-spacing: 0.1em;
}

.campaign__gift {
  padding: 24px 0;
}

.campaign__gift .material-icons-outlined {
  font-size: 56px;
  color: var(--color-rose);
  margin-bottom: 12px;
}

.campaign__gift-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.campaign__gift-sub {
  font-size: 18px;
  letter-spacing: 0.06em;
}

.campaign__gift-sub em {
  font-size: 1.4em;
  color: var(--color-rose-dark);
  font-family: var(--font-jp);
  font-weight: 700;
  margin: 0 4px;
}

/* Campaign countdown inside card */
.campaign__countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  padding: 12px 16px;
  background: var(--color-pink-light);
  border-radius: var(--radius-md);
  font-size: 13px;
  color: var(--color-text-sub);
  letter-spacing: 0.04em;
  flex-wrap: wrap;
}

.campaign__countdown .material-icons-outlined {
  font-size: 18px;
  color: var(--color-rose);
}

.campaign__countdown .js-countdown {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-rose-dark);
  letter-spacing: 0.06em;
}

.campaign__more {
  text-align: center;
  margin-top: 56px;
}

.campaign__more-arrows {
  color: var(--color-rose);
  line-height: 0.6;
  margin-bottom: 16px;
}

.campaign__more-arrows .material-icons-outlined {
  font-size: 36px;
  display: block;
  opacity: 0.4;
  animation: arrowDown 1.8s ease-in-out infinite;
}

.campaign__more-arrows .material-icons-outlined:nth-child(2) { opacity: 0.6; animation-delay: 0.2s; }
.campaign__more-arrows .material-icons-outlined:nth-child(3) { opacity: 0.9; animation-delay: 0.4s; }

.campaign__more-text {
  font-family: var(--font-jp);
  color: var(--color-rose);
  letter-spacing: 0.2em;
  font-size: 13px;
  margin-bottom: 8px;
}

.campaign__more-lead {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.9;
}

/* ---------- Instructor ---------- */
.instructor__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 62px;
}

.instructor__card {
  text-align: center;
  transition: transform 0.5s var(--easing);
  min-width: 0;
}

.instructor__card:hover { transform: translateY(-6px); }

.instructor__image {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.instructor__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}

.instructor__card:hover .instructor__image img {
  transform: scale(1.08);
}

.instructor__name {
  font-family: var(--font-jp);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--color-rose-dark);
  margin-bottom: 4px;
}

.instructor__role {
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--color-text-sub);
}

/* ---------- Flow ---------- */
.flow { background: var(--color-pink-light); }

.flow__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 54px;
  max-width: 880px;
  margin: 0 auto;
}

.flow__item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 76px 80px;
  position: relative;
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
  min-width: 0;
}

.flow__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-rose);
}

.flow__head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}

.flow__en {
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--color-rose);
}

.flow__num {
  font-family: var(--font-jp);
  font-size: 32px;
  font-weight: 500;
  color: var(--color-rose-dark);
  line-height: 1;
}

.flow__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.flow__limited { margin-bottom: 16px; }

.flow__limited-pill {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  animation: pulse 2s ease-in-out infinite;
}

.flow__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-pink);
  color: var(--color-rose-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.flow__icon .material-icons-outlined { font-size: 28px; }

.flow__text {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 16px;
}

.flow__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-bottom: 16px;
  font-family: var(--font-jp);
}

.flow__btn:hover {
  background: var(--color-rose-dark);
  opacity: 1;
  animation-play-state: paused;
}

.flow__btn .material-icons-outlined { font-size: 18px; }

.flow__notes {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.9;
}

/* ---------- Access ---------- */
.access__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 88px;
  align-items: start;
  min-width: 0;
}

.access__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 0;
}

.access__map img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s var(--easing);
}

.access__map:hover img { transform: scale(1.04); }

.access__info {
  min-width: 0;
}

.access__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  min-width: 0;
}

.access__row:first-child { border-top: 1px solid var(--color-border); }

.access__row dt {
  font-size: 14px;
  color: var(--color-rose-dark);
  letter-spacing: 0.08em;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.access__row dt .material-icons-outlined {
  font-size: 20px;
  color: var(--color-rose);
}

.access__row dd {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.8;
  min-width: 0;
}

.access__row dd a {
  color: var(--color-rose-dark);
  font-family: var(--font-jp);
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* ---------- Price ---------- */
.price { background: var(--color-pink-light); }

.price__subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 62px;
  margin-top: 78px;
  color: var(--color-text);
}

.price__subtitle:first-of-type { margin-top: 0; }

.price__subtitle::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: var(--color-rose);
  margin: 12px auto 0;
}

.price__fee {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 58px;
  margin-bottom: 78px;
}

.price__fee-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 66px 54px;
  text-align: center;
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing);
  min-width: 0;
}

.price__fee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.price__fee-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.price__fee-old {
  font-size: 14px;
  color: var(--color-text-sub);
  text-decoration: line-through;
  opacity: 0.7;
  margin-bottom: 8px;
}

.price__fee-old strong { font-family: var(--font-jp); font-size: 22px; font-weight: 500; }

.price__fee-arrow {
  font-size: 22px !important;
  color: var(--color-rose);
  margin-bottom: 4px;
}

.price__fee-new {
  font-size: 14px;
  color: var(--color-rose-dark);
}

.price__fee-new strong {
  font-family: var(--font-jp);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price__fee-new--lg strong { font-size: 28px; }

.price__fee-note {
  font-size: 12px;
  color: var(--color-text-sub);
  margin-top: 8px;
  line-height: 1.7;
}

.price__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 62px;
  align-items: stretch;
  margin-bottom: 50px;
}

.price__card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 80px 62px;
  text-align: center;
  position: relative;
  transition: transform 0.5s var(--easing), box-shadow 0.5s var(--easing);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

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

.price__card--recommend {
  border: 2px solid var(--color-rose);
  background: linear-gradient(180deg, var(--color-pink) 0%, var(--color-white) 40%);
}

.price__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-rose);
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.15em;
  padding: 6px 20px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.price__name {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.price__regular {
  font-size: 14px;
  color: var(--color-text-sub);
  margin-bottom: 8px;
}

.price__regular strong { font-family: var(--font-jp); font-size: 18px; font-weight: 500; color: var(--color-text); }

.price__regular-note {
  font-size: 12px;
  color: var(--color-text-sub);
  opacity: 0.85;
}

.price__off-label {
  display: inline-block;
  padding: 4px 14px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin: 12px 0 12px;
}

.price__value {
  color: var(--color-rose-dark);
  margin-bottom: 8px;
  line-height: 1.1;
}

.price__value--sub { opacity: 0.95; }

.price__num {
  font-family: var(--font-jp);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price__num--sm { font-size: 34px; }

.price__unit {
  font-size: 13px;
  margin-left: 4px;
  color: var(--color-text);
}

.price__plus {
  font-size: 24px;
  color: var(--color-rose);
  margin: 8px 0;
  font-weight: 500;
}

.price__off-sub {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 4px;
}

.price__off-catch {
  font-size: 15px;
  color: var(--color-rose-dark);
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.price__caution {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-top: 16px;
  line-height: 2;
}

.price__caution li { padding-left: 0; }

.price__pair {
  text-align: center;
  margin: 64px 0 32px;
  position: relative;
}

.price__pair-head {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px 48px;
  background: var(--color-white);
  border: 2px dashed var(--color-rose);
  border-radius: var(--radius-lg);
}

.price__pair-head .material-icons-outlined {
  font-size: 32px;
  color: var(--color-rose);
}

.price__pair-catch {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--color-text-sub);
}

.price__pair-bold {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-rose-dark);
}

/* ---------- Entry Form (hidden) ---------- */
.entry { background: var(--color-white); }

.entry__lead {
  margin-top: 24px;
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.9;
}

.form {
  background: var(--color-pink-light);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
}

.form__row { margin-bottom: 28px; }

.form__row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form__row--check {
  text-align: center;
  margin-bottom: 32px;
}

.form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.form__required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  font-weight: 500;
  vertical-align: 1px;
}

.form__input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-jp);
  font-size: 15px;
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form__input:focus {
  outline: none;
  border-color: var(--color-rose);
  box-shadow: 0 0 0 4px rgba(183, 135, 145, 0.12);
}

.form__textarea {
  height: auto;
  padding: 16px 18px;
  line-height: 1.8;
  resize: vertical;
  min-height: 140px;
}

select.form__input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b78791'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 40px;
}

.form__checks,
.form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form__check,
.form__radio {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form__check:hover,
.form__radio:hover {
  border-color: var(--color-rose);
  color: var(--color-rose-dark);
}

.form__check input,
.form__radio input {
  accent-color: var(--color-rose);
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.form__check--agree {
  font-size: 14px;
  padding: 16px 28px;
  background: transparent;
  border: none;
}

.form__check--agree em {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  background: var(--color-rose);
  color: var(--color-white);
  border-radius: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.form__submit {
  text-align: center;
  margin-top: 16px;
}

.form__notice {
  margin-top: 20px;
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.8;
}

/* ---------- Footer ---------- */
.footer {
  background: #3a2a2e;
  color: #e8d5d9;
  padding: 64px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
}

.footer__brand {
  min-width: 0;
}

.footer__logo {
  font-family: var(--font-jp);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--color-white);
  margin-bottom: 8px;
  font-weight: 500;
}

.footer__logo span {
  font-family: var(--font-jp);
  font-size: 13px;
  margin-left: 8px;
  opacity: 0.8;
  letter-spacing: 0.1em;
}

.footer__copy {
  font-family: var(--font-jp);
  font-size: 12px;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-bottom: 16px;
}

.footer__address {
  font-size: 13px;
  line-height: 1.9;
  opacity: 0.85;
}

.footer__address a {
  color: var(--color-pink);
  font-family: var(--font-jp);
  letter-spacing: 0.08em;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  max-width: 360px;
  justify-content: flex-end;
}

.footer__nav a {
  font-family: var(--font-jp);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.footer__small {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.08em;
}

/* ---------- Page Top ---------- */
.pagetop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-rose);
  color: var(--color-white);
  border: none;
  font-family: var(--font-jp);
  font-size: 11px;
  letter-spacing: 0.15em;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s var(--easing);
  z-index: 90;
}

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

.pagetop:hover {
  background: var(--color-rose-dark);
  transform: translateY(-4px);
}

/* ==========================================================
   Thanks Page
   ========================================================== */
.thanks-body { background: var(--color-pink-light); }

.thanks {
  min-height: 100vh;
  padding: calc(var(--sticky-h) + 80px) 0 80px;
  position: relative;
  overflow: hidden;
}

.thanks__deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.thanks__inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.thanks__icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--color-rose);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: popIn 0.8s var(--easing) backwards;
  box-shadow: var(--shadow-md);
}

.thanks__icon .material-icons-outlined { font-size: 56px; }

@keyframes popIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.thanks__en {
  font-family: var(--font-jp);
  color: var(--color-rose);
  letter-spacing: 0.3em;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 400;
  animation: fadeInUp 0.8s 0.3s var(--easing) backwards;
}

.thanks__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s 0.4s var(--easing) backwards;
}

.thanks__text {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s 0.5s var(--easing) backwards;
}

.thanks__text em {
  background: linear-gradient(transparent 70%, var(--color-pink) 70%);
  padding: 0 4px;
}

.thanks__card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  animation: fadeInUp 0.8s 0.6s var(--easing) backwards;
}

.thanks__card-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--color-rose-dark);
  margin-bottom: 12px;
  font-size: 15px;
}

.thanks__card-label .material-icons-outlined { font-size: 20px; }

.thanks__card-text {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 16px;
}

.thanks__card-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--color-pink-light);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
}

.thanks__card-tel .material-icons-outlined { color: var(--color-rose); }
.thanks__card-tel a {
  font-family: var(--font-jp);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-rose-dark);
  letter-spacing: 0.05em;
}

.thanks__card-time {
  font-size: 12px;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
}

.thanks__promise {
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.7s var(--easing) backwards;
}

.thanks__promise ul {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: var(--color-text-sub);
}

/* ==========================================================
   Responsive
   ========================================================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero__title { font-size: 36px; }
  .section { padding: 156px 0; }
  .section__head { margin-bottom: 104px; }

  .point__list { gap: 62px; }
  .point__card { padding: 66px; }

  .point__list,
  .instructor__list,
  .service__list,
  .price__list,
  .price__fee,
  .campaign__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructor__list { gap: 50px; }

  .testimonial__list { gap: 54px; }
  .testimonial__card { padding: 58px 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 56px;
    --countdown-h: 44px;
    --sticky-h: calc(var(--header-h) + var(--countdown-h));
  }

  body { font-size: 15px; }

  .sp-only { display: inline; }

  .section { padding: 132px 0; overflow-x: clip; }
  .section__head { margin-bottom: 82px; }
  .section__title { font-size: 22px; }

  /* Countdown bar on mobile */
  .countdown-bar {
    font-size: 11px;
    gap: 4px;
    padding: 0 10px;
  }
  .countdown-bar__time { font-size: 13px; padding: 2px 6px; }
  .countdown-bar__limit { font-size: 11px; }
  .countdown-bar__text { display: none; }

  /* Hero */
  .hero {
    padding-top: calc(var(--sticky-h) + 70px);
    padding-bottom: 102px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 70px;
    text-align: center;
  }

  .hero__title {
    font-size: 26px;
    line-height: 1.6;
  }

  .hero__text { font-size: 15px; }
  .hero__btns { justify-content: center; flex-direction: column; align-items: center; }
  .hero__meta { justify-content: center; gap: 24px; }
  .hero__meta-num { font-size: 28px; }

  .btn {
    min-width: 200px;
    height: 52px;
    font-size: 14px;
  }

  .btn--lg {
    height: 56px;
    min-width: 260px;
  }

  .hero__image-wrap {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__image-badge {
    left: 8px;
    width: 80px;
    height: 80px;
  }

  .hero__image-badge span { font-size: 10px; }
  .hero__image-badge strong { font-size: 16px; }

  .deco--1 { width: 220px; height: 220px; top: -60px; right: -40px; }
  .deco--2 { width: 120px; height: 120px; }
  .deco--3 { width: 70px; height: 70px; }

  .marquee { font-size: 14px; margin-top: 56px; }

  /* Campaign Banner */
  .cambanner { padding: 90px 0; }
  .cambanner__title { font-size: 20px; }
  .cambanner__deadline-date strong,
  .cambanner__deadline-date .js-countdown { font-size: 18px; }

  /* Testimonials */
  .testimonial__list { grid-template-columns: 1fr; gap: 54px; }
  .testimonial__card { padding: 58px 40px; }

  /* Voice */
  .voice__title { font-size: 20px; }
  .voice__answer { font-size: 17px; }
  .voice__balloon { font-size: 14px; padding: 20px 28px; max-width: 88%; }

  /* Point */
  .point__list { grid-template-columns: 1fr; gap: 50px; }
  .point__card { padding: 58px 54px; }
  .point__title { font-size: 18px; }
  .point__num { font-size: 40px; }

  /* Service */
  .service__list { grid-template-columns: 1fr; gap: 50px; }
  .service__card { padding: 66px 54px; }

  /* Campaign */
  .campaign__list { grid-template-columns: 1fr; gap: 70px; }
  .campaign__card { padding: 66px 54px; }
  .campaign__catch { font-size: 18px; }
  .campaign__off {
    width: 68px;
    height: 68px;
    top: -14px;
    right: -10px;
  }
  .campaign__off strong { font-size: 24px; }
  .campaign__price { flex-direction: column; gap: 8px; }
  .campaign__arrow { transform: rotate(90deg); }
  .campaign__new .campaign__price-value strong { font-size: 36px; }

  /* Instructor */
  .instructor__list { grid-template-columns: repeat(2, 1fr); gap: 46px; }
  .instructor__name { font-size: 18px; }

  /* Flow */
  .flow__item { padding: 58px 54px; }
  .flow__title { font-size: 17px; }
  .flow__num { font-size: 26px; }

  /* Access */
  .access__body {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .access__row {
    grid-template-columns: 100px 1fr;
    padding: 14px 0;
    font-size: 14px;
  }

  .access__row dd a { font-size: 18px; }

  /* Price */
  .price__subtitle { font-size: 18px; }
  .price__fee { grid-template-columns: 1fr; gap: 46px; }
  .price__list { grid-template-columns: 1fr; gap: 62px; }
  .price__card { padding: 62px 54px; }
  .price__num { font-size: 36px; }
  .price__pair-bold { font-size: 22px; }
  .price__pair-head { padding: 50px 58px; }

  /* Form */
  .form { padding: 36px 24px; }
  .form__row--2col { grid-template-columns: 1fr; gap: 20px; }
  .form__checks, .form__radios { gap: 8px; }
  .form__check, .form__radio { padding: 10px 16px; font-size: 13px; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer__nav {
    justify-content: center;
    max-width: none;
  }

  .pagetop {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 16px;
    font-size: 10px;
  }

  /* Thanks */
  .thanks__title { font-size: 22px; }
  .thanks__text { font-size: 15px; }
  .thanks__card { padding: 24px 20px; }
  .thanks__card-tel a { font-size: 20px; }
}

/* Small Mobile */
@media (max-width: 420px) {
  .container { padding: 0 16px; }

  .hero__title { font-size: 22px; }
  .section__title { font-size: 20px; }
  .cambanner__title { font-size: 18px; }

  .hero__btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { width: 100%; min-width: 0; }

  .cambanner__deadline { padding: 12px 14px; gap: 8px; flex-wrap: wrap; justify-content: center; }
  .cambanner__deadline-date strong,
  .cambanner__deadline-date .js-countdown { font-size: 16px; }

  .countdown-bar__limit { display: none; }
  .countdown-bar__icon { display: none; }

  /* Tighter spacing on very small screens */
  .point__card,
  .service__card,
  .campaign__card,
  .flow__item,
  .price__card,
  .testimonial__card,
  .price__fee-card { padding: 48px 28px; }

  .campaign__off {
    width: 60px;
    height: 60px;
    top: -10px;
    right: -6px;
  }
  .campaign__off strong { font-size: 20px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .btn--cta {
    animation: none !important;
  }
}