/* ==========================================================
   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: #757575;
  --color-text-sub: #6b5a5e;
  --color-border: #ecd7dd;

  --font-jp: "Noto Sans JP", 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: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.95;
  font-size: 16px;
  font-weight: 600;
  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; }

.pink{ 
   font-weight: 600;
   color: var(--color-rose-dark);
   background: linear-gradient(transparent 70%, var(--color-pink) 70%);
   font-size: 18px;
 }

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

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


.sp-only { display: none; }

@media (max-width: 767px) {
  .pc-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: 0px;
  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: 600;
  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: 600;
  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;
  height: auto;
}

.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;*/
  flex-direction: column;
  /*margin: 0 auto;*/
  padding: 0px;
}

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

.header__logo-sub {
  font-size: 8px;
  /*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: 600;
  /* 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: 16px;
  letter-spacing: 0.05em;
  font-family: var(--font-jp);
  font-weight: 600;
  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: 600;
  letter-spacing: 0.08em;
  /*background: rgba(255, 255, 255, 0.2);*/
  color: gray;
  background: white;
  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: 100px;
  padding-bottom: 130px;
  /*background: linear-gradient(180deg, var(--color-pink) 0%, var(--color-pink-light) 60%, var(--color-white) 100%);*/
  background: white;
  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-image-top{
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.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: 600;
}

.hero__title {
  font-size: 44px;
  font-weight: 600;
  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: 600;
  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%); }
}

/* ============================
   Googleクチコミ
============================ */
.google-reviews { 
   background: var(--pink-lighter);  
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: center;
   padding-bottom: 120px;
}
.google-card {
  background: var(--white); border-radius: 18px; max-width: 540px;
  margin: 0 auto; padding: 28px 24px; box-shadow: var(--shadow);
  text-align: center;
}
.google-header {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 16px;
}
.google-logo {
  width: 28px; height: 28px;
  background: conic-gradient(from 0deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px; font-family: Arial;
}
.google-logo::after { content: "G"; }
.google-title { font-weight: 700; font-size: 15px; }
.google-score {
  font-family: "Noto Serif JP", serif;
  font-size: 54px; font-weight: 900; color: var(--text); line-height: 1;
  margin: 6px 0;
}
.google-stars { color: #fbbc05; font-size: 22px; letter-spacing: 3px; margin: 8px 0; }
.google-count { font-size: 13px; color: var(--text-sub); margin-bottom: 18px; }
.google-reviews-list {
  display: grid; gap: 30px; text-align: left; margin-top: 16px;
  border-top: 1px solid var(--pink-light); padding-top: 16px;
}
.google-review {
  background: #fafafa; border-radius: 10px; padding: 12px 14px;
  font-size: 12px; line-height: 1.7;
}
.google-review .reviewer { font-weight: 700; font-size: 11px; color: var(--text-sub); margin-bottom: 4px; }


/*=====グーグル口コミ評価紹介===*/
/*.google-review{
   padding-top: 120px;
   padding-bottom: 120px;
   padding-right: 0px;
   padding-left: 0px;
   background-color: white;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.google-review-image01{
  max-width: 500px;
  height: auto;
}
*/

/* ---------- Campaign Banner ---------- */
.cambanner {
  /*padding: 110px 0;*/
  padding-top: 110px;
  padding-bottom: 0px;
  padding-right: 0px;
  padding-left: 0px;
  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: 600;
  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);
  margin-bottom: 62px;
}

.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;
}

.cambanner__image{
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}


/* ---------- 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: bold;
  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: 600;
  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;
}

/* ---------- Point: Circle Chart (Card 03) ---------- */
.point__chart {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 50%, #fff4f7 0%, #ffffff 70%);
  border-radius: 50%;
  box-shadow: 0 6px 24px rgba(183, 135, 145, 0.12);
}

.circle-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}

.circle-chart__track {
  fill: none;
  stroke: #fff4f7;
  stroke-width: 12;
}

.circle-chart__progress {
  fill: none;
  stroke: #b78791;
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.8s var(--easing);
  filter: drop-shadow(0 2px 6px rgba(183, 135, 145, 0.35));
}

.point__chart.is-animated .circle-chart__progress {
  stroke-dashoffset: 9.8;
}

.circle-chart__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}

.circle-chart__num {
  font-family: var(--font-jp);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-rose-dark);
  line-height: 1;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: baseline;
}

.circle-chart__num small {
  font-size: 22px;
  margin-left: 2px;
  font-weight: 600;
}

.circle-chart__caption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--color-rose);
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ---------- Point: Trainer Slideshow (Card 05) ---------- */
.point__slideshow {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  background: white;
  /*background: #fff4f7;*/
  /*border: 1px solid #f9d2dd;*/
}

.point__slideshow::before,
.point__slideshow::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 36px;
  z-index: 2;
  pointer-events: none;
}

.point__slideshow::before {
  left: 0;
  /*background: linear-gradient(to right, #fff4f7, transparent);*/
}

.point__slideshow::after {
  right: 0;
  /*background: linear-gradient(to left, #fff4f7, transparent);*/
}

.trainer-slideshow__track {
  display: flex;
  height: 100%;
  width: max-content;
  animation: trainerSlide 18s linear infinite;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trainer-slideshow__slide {
  flex: 0 0 auto;
  width: 100px;
  height: 100%;
  padding: 12px 8px;
}

.trainer-slideshow__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(183, 135, 145, 0.18);
  background: #ffffff;
}

@keyframes trainerSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .trainer-slideshow__track { animation: none; }
}

/* ---------- Hero: Typing Animation ---------- */
.hero__title--typing {
  position: relative;
  min-height: 1.75em;
}

.hero__title--typing::after {
  content: "|";
  display: inline-block;
  margin-left: 4px;
  color: var(--color-rose);
  font-weight: 400;
  animation: typingCaret 0.9s steps(2) infinite;
  vertical-align: baseline;
}

.hero__title--typing.is-typed::after {
  animation: typingCaret 1.1s steps(2) infinite;
  opacity: 0.5;
}

@keyframes typingCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title--typing::after { animation: none; opacity: 0; }
}

/* ---------- 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: 1fr;
  gap: 56px;
  align-items: start;
  min-width: 0;
  max-width: 880px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.access__gmap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: var(--color-border);
}

.access__gmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
  /*background: var(--color-border);*/
  background-color: none;
}

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

.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;
  align-items: center;
}

.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;
  width: fit-content;
}

.access__row dd a {
  color: var(--color-rose-dark);
  font-family: var(--font-jp);
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
}

.access__tel {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(183, 135, 145, 0.08);
  border: 1.5px solid var(--color-rose);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.3s var(--easing), transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
  box-shadow: 0 4px 12px rgba(183, 135, 145, 0.18);
}

.access__tel:hover,
.access__tel:focus-visible {
  background: rgba(183, 135, 145, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(183, 135, 145, 0.28);
  outline: none;
}

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

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

.access__tel-hint {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--color-rose);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- 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; }
}

/*===LPフォームcss==*/
.lp-form-wrap {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 62px 30px;
  color:#757575;
  align-items: center;
}

.lp-form {
  width: 100%;
  max-width: 500px;
  background: white;
  padding: 0px;
  border-radius: 12px;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.lp-label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  width: 100%;
}

.lp-input {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.lp-time-options {
  display: none;
  margin-top: 10px;
}

.lp-time-button {
  display: inline-block;
  margin: 5px;
  padding: 10px 15px;
  border: 1px solid #06C755;
  border-radius: 6px;
  background: white;
  color: #06C755;
  font-weight: bold;
  cursor: pointer;
}

.lp-time-button.selected {
  background: #06C755;
  color: white;
}

.lp-checkbox {
  margin-top: 20px;
}

.lp-submit-btn {
  margin-top: 20px;
  width: 100%;
  background: #06C755;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
}

.lp-required {
  color: red;
  font-size: 0.85rem;
  margin-left: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --header-h: 70px;
    --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: 16px;
    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: 120px;
    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-top: 0px;
     padding-bottom: 0px;
     padding-right: 0px;
     padding-left: 0px;
   }
  .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; margin-bottom: 62px;}
  .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; }
  .point__chart { width: 180px; height: 180px; }
  .circle-chart__num { font-size: 40px; }
  .circle-chart__num small { font-size: 18px; }
  .circle-chart__caption { font-size: 12px; }
  .trainer-slideshow__slide { width: 100px; }

  /* 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: 40px;
  }

  .access__gmap { aspect-ratio: 4 / 3; }

  .access__map { gap: 6px; }

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

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

  .access__tel {
    padding: 8px 16px;
    gap: 8px;
    flex-wrap: wrap;
  }

  .access__tel-num { font-size: 18px; }
  .access__tel-hint { font-size: 11px; padding: 2px 8px; }
  .access__tel-icon.material-icons-outlined { 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: 425px) {

.header__logo-main {
    font-size: 10px;
}
  .container { 
    padding: 0 30px;  
    /*padding-bottom: 62px;*/
  }


  .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; }

/*=====グーグル口コミ評価紹介===*/
/*.google-review{
   padding-top: 30px;
   padding-bottom: 30px;
   padding-right: 30px;
   padding-left: 30px;
   background-color: white;
}*/

.google-review-image01{
  max-width: 90%;
  height: auto;
}

  .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; }
  .voice__answer{ margin-bottom: 62px;}

}


/* 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;
  }
}

/* ============================================================
   ★★★ 追加: Point Card 06 - レッスン数ビジュアル ★★★
   ============================================================ */
.point__lesson-stats {
  background: linear-gradient(180deg, #fff8fa 0%, #ffffff 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 24px 22px;
  margin-bottom: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lesson-stats__row {
  margin-bottom: 18px;
}

.lesson-stats__row:last-of-type {
  margin-bottom: 0;
}

.lesson-stats__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.lesson-stats__label {
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-rose);
  letter-spacing: 0.14em;
  background: var(--color-pink-light);
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.lesson-stats__num {
  font-family: var(--font-jp);
  font-size: 38px;
  font-weight: 700;
  color: var(--color-rose-dark);
  line-height: 1;
  letter-spacing: 0.02em;
  font-feature-settings: "tnum";
  min-width: 1.8em;
  display: inline-block;
}

.lesson-stats__unit {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-sub);
  letter-spacing: 0.08em;
}

.lesson-stats__bar {
  position: relative;
  height: 10px;
  background: #fff0f4;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(183, 135, 145, 0.12);
}

.lesson-stats__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #e7b9c2 0%, #b78791 100%);
  border-radius: 999px;
  transition: width 1.6s var(--easing);
  box-shadow: 0 1px 4px rgba(183, 135, 145, 0.35);
}

.lesson-stats__day {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--color-border);
}

.lesson-stats__day-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-sub);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.lesson-stats__day-num {
  font-family: var(--font-jp);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-rose-dark);
  margin: 0 4px;
  vertical-align: -3px;
  display: inline-block;
  min-width: 1.2em;
}

.lesson-stats__day-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0;
  margin: 0;
}

.lesson-stats__day-item {
  border-radius: var(--radius-sm);
  padding: 12px 6px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
}

.lesson-stats__day-item--morning {
  border-color: #f7d6c5;
  background: linear-gradient(180deg, #fff7f0, #ffffff);
}
.lesson-stats__day-item--noon {
  border-color: #f5d8a3;
  background: linear-gradient(180deg, #fff7e6, #ffffff);
}
.lesson-stats__day-item--night {
  border-color: #cbbde0;
  background: linear-gradient(180deg, #f1ecfa, #ffffff);
}

.lesson-stats__day-time {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-rose-dark);
  letter-spacing: 0.1em;
}

.lesson-stats__day-dots {
  display: inline-flex;
  gap: 5px;
}

.lesson-stats__day-dots i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-rose);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.5s var(--easing), transform 0.5s var(--easing);
}

.point__lesson-stats.is-counted .lesson-stats__day-dots i { opacity: 1; transform: scale(1); }
.point__lesson-stats.is-counted .lesson-stats__day-dots i:nth-child(2) { transition-delay: 0.18s; }
.point__lesson-stats.is-counted .lesson-stats__day-item--noon .lesson-stats__day-dots i { transition-delay: 0.25s; }
.point__lesson-stats.is-counted .lesson-stats__day-item--noon .lesson-stats__day-dots i:nth-child(2) { transition-delay: 0.43s; }
.point__lesson-stats.is-counted .lesson-stats__day-item--night .lesson-stats__day-dots i { transition-delay: 0.5s; }
.point__lesson-stats.is-counted .lesson-stats__day-item--night .lesson-stats__day-dots i:nth-child(2) { transition-delay: 0.68s; }

.lesson-stats__day-count {
  font-size: 11px;
  color: var(--color-text-sub);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .point__lesson-stats { padding: 22px 18px 20px; margin-bottom: 24px; }
  .lesson-stats__num { font-size: 34px; }
  .lesson-stats__day-num { font-size: 26px; }
  .lesson-stats__day-list { gap: 8px; }
  .lesson-stats__day-item { padding: 10px 4px 8px; gap: 5px; }
  .lesson-stats__day-time { font-size: 13px; }
  .lesson-stats__day-count { font-size: 10px; letter-spacing: 0; }
  .lesson-stats__day-dots i { width: 7px; height: 7px; }
}

@media (max-width: 420px) {
  .lesson-stats__num { font-size: 30px; }
  .lesson-stats__label { font-size: 11px; padding: 3px 10px; }
  .lesson-stats__unit { font-size: 12px; }
}

/* ============================================================
   ★★★ 変更: Hero h1 - 半透明ホワイト波紋 + 一文字浮き上がり
   （旧: hero__title--typing は使用しない）
   ============================================================ */
.hero__title--ripple {
  position: relative;
  min-height: 1.75em;
}

.hero__title--ripple .hero__char {
  display: inline-block;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: heroCharRise 0.95s var(--easing) forwards;
  animation-delay: var(--char-delay, 0s);
  z-index: 1;
}

.hero__title--ripple .hero__char::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 55%;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  animation: heroCharRipple 1.5s var(--easing) forwards;
  animation-delay: var(--char-delay, 0s);
  z-index: -1;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
}

@keyframes heroCharRise {
  0%   { opacity: 0; transform: translateY(40px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes heroCharRipple {
  0%   { transform: translate(-50%, -50%) scale(0); opacity: 0; }
  20%  { opacity: 0.85; }
  100% { transform: translate(-50%, -50%) scale(3.2); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title--ripple .hero__char,
  .hero__title--ripple .hero__char::before {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   New CTA Button (green LINE-like)
   ============================================================ */
.cta-new {
  --cta-green: #00b900;
  --cta-green-bright: #93ff00;
  --cta-white: #ffffff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  padding: 10px 60px 10px 8px;
  background: var(--cta-green);
  border-radius: 999px;
  color: var(--cta-white);
  font-family: var(--font-jp, "Klee One", "Hiragino Kaku Gothic Pro", sans-serif);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 130, 0, 0.28), 0 2px 6px rgba(0, 130, 0, 0.2);
  overflow: hidden;
  line-height: 1.2;
  isolation: isolate;
  vertical-align: middle;
}

.cta-new:hover { opacity: 1; }
.cta-new:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.cta-new__badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--cta-white);
  color: var(--cta-green);
  border-radius: 999px;
  padding: 6px 10px;
  min-width: 60px;
  line-height: 1.05;
}
.cta-new__badge-limit {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.cta-new__badge-date {
  font-size: 18px;
  font-weight: 900;
  margin-top: 1px;
}

.cta-new__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  /*flex: 1;*/
  min-width: 0;
  margin: 0 auto;
}

.cta-new__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.cta-new__price-old {
  font-size: 18px;
  font-weight: 800;
  color: var(--cta-white);
}
.cta-new__price-new {
  font-size: 30px;
  font-weight: 900;
  color: var(--cta-green-bright);
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(0, 80, 0, 0.15);
}

.cta-new__action {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 800;
  color: var(--cta-white);
  white-space: nowrap;
}

/* Arrow placeholder (will be replaced with <img> later) */
.cta-new__price-arrow,
.cta-new__action-arrow {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.cta-new__action-arrow {
  width: 8px;
  height: 8px;
  border-width: 2.5px;
  margin-left: 2px;
}

/* Hand pointer placeholder circle */
.cta-new__hand {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: var(--cta-white);
  border-radius: 50%;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

/* ----- Animated (non-header) variant ----- */
.cta-new--animated {
  animation: ctaNewBeat 1.8s ease-in-out infinite;
}

.cta-new--animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.55) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  z-index: 1;
  animation: ctaNewShine 3.2s ease-in-out infinite;
}

@keyframes ctaNewBeat {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.045); }
}

@keyframes ctaNewShine {
  0%        { left: -60%; }
  55%, 100% { left: 130%; }
}

.cta-new--animated:hover {
  animation-play-state: paused;
}
.cta-new--animated:hover::before {
  animation-play-state: paused;
}

/* ----- Header variant (no animation, condensed) ----- */
.cta-new--header {
  padding: 6px 46px 6px 6px;
  max-width: 320px;
  box-shadow: 0 4px 12px rgba(0, 130, 0, 0.24);
  animation: none;
  gap: 8px;
}
.cta-new--header::before { display: none; }
.cta-new--header .cta-new__badge {
  padding: 4px 8px;
  min-width: 48px;
}
.cta-new--header .cta-new__badge-limit { font-size: 9px; }
.cta-new--header .cta-new__badge-date  { font-size: 14px; }
.cta-new--header .cta-new__price-old   { font-size: 13px; }
.cta-new--header .cta-new__price-new   { font-size: 20px; }
.cta-new--header .cta-new__action      { font-size: 13px; }
.cta-new--header .cta-new__hand {
  width: 26px;
  height: 26px;
  right: 8px;
}

/* Header height bump to fit the new button */
:root { --header-h: 65px; }
@media (max-width: 768px) {
  :root { --header-h: 70px; }
}

/* Responsive */
@media (max-width: 768px) {
  .cta-new {
    padding: 9px 52px 9px 7px;
    gap: 10px;
    max-width: 100%;
    max-width: fit-content;
    margin: 0 auto;
  }
  .cta-new__badge { padding: 5px 9px; min-width: 54px; }
  .cta-new__badge-limit { font-size: 10px; }
  .cta-new__badge-date  { font-size: 15px; }
  .cta-new__price-old   { font-size: 15px; }
  .cta-new__price-new   { font-size: 24px; }
  .cta-new__action      { font-size: 15px; }
  .cta-new__hand        { width: 28px; height: 28px; right: 8px; }

  .cta-new--header {
    padding: 5px 40px 5px 5px;
    max-width: 260px;
  }
  .cta-new--header .cta-new__badge { /*padding: 3px 6px;*/padding-top: 10px; padding-bottom: 10px; min-width: 42px; }
  .cta-new--header .cta-new__badge-limit { font-size: 8px; }
  .cta-new--header .cta-new__badge-date  { font-size: 12px; }
  .cta-new--header .cta-new__price-old   { font-size: 16px; }
  .cta-new--header .cta-new__price-new   { font-size: 20px; }
  .cta-new--header .cta-new__action      { font-size: 14px; }
  .cta-new--header .cta-new__hand        { width: 22px; height: 22px; right: 6px; }
}

@media (max-width: 425px) {
  .cta-new {
    padding: 10px 46px 10px 6px;
    gap: 8px;
  }
  .cta-new__badge { /*padding: 4px 7px;*/padding: 10px; min-width: 46px; }
  .cta-new__badge-limit { font-size: 9px; }
  .cta-new__badge-date  { font-size: 13px; }
  .cta-new__price-old   { font-size: 16px; }
  .cta-new__price-new   { font-size: 21px; }
  .cta-new__action      { font-size: 13px; }
  .cta-new__hand        { width: 24px; height: 24px; right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-new--animated,
  .cta-new--animated::before {
    animation: none !important;
  }
}

/* ============================================================
   Campaign Banner — rebuild (cambanner) — pink/rose palette
   ============================================================ */
.cambanner {
  --cb-rose: #BD8F98;
  --cb-pink-light: #FADAE4;
  --cb-white: #ffffff;
  background: var(--cb-pink-light);
  padding: 0;
  overflow: hidden;
}

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

/* Top ribbon area with two woman photos */
.cb-hero {
  position: relative;
  padding: 28px 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cb-hero__row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  width: 100%;
  max-width: 560px;
}

.cb-hero__photo {
  flex: 0 0 auto;
  width: 22%;
  max-width: 110px;
  aspect-ratio: 1 / 1.25;
  background: #d8d8d8 url("https://asicara03.com/wp-content/uploads/2026/04/64.webp") center/cover no-repeat;
  border-radius: 4px;
}
.cb-hero__photo--right {
  background-image: url("https://asicara03.com/wp-content/uploads/2026/04/57.webp");
}

.cb-ribbon {
  flex: 1 1 auto;
  position: relative;
  background: linear-gradient(180deg, #f3d488 0%, #d6a755 50%, #c08e3a 100%);
  border-radius: 4px;
  padding: 14px 14px 16px;
  box-shadow: 0 4px 10px rgba(160, 110, 50, 0.25);
  color: var(--cb-white);
}
.cb-ribbon::before,
.cb-ribbon::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0;
  height: 0;
  border-style: solid;
}
.cb-ribbon::before {
  left: 0;
  border-width: 0 14px 10px 0;
  border-color: transparent #8c6428 transparent transparent;
}
.cb-ribbon::after {
  right: 0;
  border-width: 0 0 10px 14px;
  border-color: transparent transparent #8c6428 transparent;
}

.cb-ribbon__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
  font-weight: 700;
  font-family: var(--font-jp, sans-serif);
}
.cb-ribbon__label {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.cb-ribbon__label--big {
  font-size: 14px;
}
.cb-ribbon__price {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
}
.cb-ribbon__price-big {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}
.cb-ribbon__tax {
  font-size: 11px;
  font-weight: 700;
  margin-left: 2px;
}

.cb-ribbon__row--big {
  margin-top: 6px;
  margin-bottom: 0;
  padding: 6px 10px;
  background: linear-gradient(180deg, #fbeac0 0%, #e3bc6c 100%);
  color: #7a4a18;
  border-radius: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.cb-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  margin: 24px auto 12px;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 22px solid var(--cb-pink-light);
  filter: drop-shadow(0 -2px 0 var(--cb-rose));
}

.cb-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--cb-rose);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin: 6px 0 28px;
  font-family: var(--font-jp, sans-serif);
}

/* Middle white card with gift */
.cb-card {
  background: var(--cb-white);
  border-radius: 8px;
  padding: 28px 22px 30px;
  margin: 18px 0 32px;
  box-shadow: 0 4px 12px rgba(189, 143, 152, 0.1);
}

.cb-card__lead {
  font-size: 18px;
  font-weight: 700;
  color: var(--cb-rose);
  margin-bottom: 18px;
  text-align: center;
}

.cb-gift {
  background: var(--cb-pink-light);
  border-radius: 6px;
  padding: 22px 18px 26px;
}

.cb-gift__pill {
  display: inline-block;
  background: var(--cb-rose);
  color: var(--cb-white);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 3px;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
}

.cb-gift__photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cb-white) center/65% no-repeat;
  background-image: url("https://asicara03.com/wp-content/uploads/2026/04/sox.webp");
  box-shadow: 0 4px 10px rgba(189, 143, 152, 0.18);
  overflow: hidden;
}

.cb-gift__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--cb-rose);
  line-height: 1.7;
  border-bottom: 1.5px solid var(--cb-rose);
  padding-bottom: 16px;
  display: inline-block;
}
.cb-gift__title em {
  display: block;
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
}

.cb-link {
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--cb-rose);
  line-height: 1.9;
}
.cb-link a {
  color: var(--cb-rose);
  text-decoration: underline;
  font-weight: 700;
}

/* Bottom message + CTA */
.cb-bottom {
  padding: 0 0 36px;
}
.cb-bottom__lead {
  font-size: 17px;
  font-weight: 700;
  color: var(--cb-rose);
  line-height: 2;
  margin-bottom: 18px;
}
.cb-bottom__badge {
  display: inline-block;
  background: var(--cb-white);
  color: var(--cb-rose);
  border: 1.5px solid var(--cb-rose);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.cb-bottom__cta-wrap {
  margin: 0 auto 14px;
  max-width: 480px;
  padding: 0 4px;
}
.cb-bottom__note {
  font-size: 13px;
  color: var(--cb-rose);
  font-weight: 600;
  margin-top: 14px;
}

@media (max-width: 768px) {
  .cb-hero { padding: 22px 0 4px; }
  .cb-hero__row { gap: 4px; max-width: 100%; }
  .cb-hero__photo { width: 22%; }
  .cb-ribbon { padding: 12px 10px 14px; }
  .cb-ribbon__price { font-size: 20px; }
  .cb-ribbon__price-big { font-size: 30px; }
  .cb-ribbon__label { font-size: 11px; }
  .cb-ribbon__label--big { font-size: 13px; }
  .cb-title { font-size: 26px; margin: 4px 0 22px; }
  .cb-card { padding: 24px 18px 26px; margin: 14px 0 26px; }
  .cb-gift__photo { width: 140px; height: 140px; }
  .cb-gift__title em { font-size: 18px; }
  .cb-bottom__lead { font-size: 15px; }
  .cambanner__inner { padding: 10px; }
}

@media (max-width: 425px) {
  .cb-ribbon__price { font-size: 17px; }
  .cb-ribbon__price-big { font-size: 26px; }
  .cb-ribbon__label { font-size: 10px; }
  .cb-title { font-size: 22px; }
  .cb-gift__photo { width: 124px; height: 124px; }
  .cb-gift__title { font-size: 14px; }
  .cb-gift__title em { font-size: 16px; }
}