@charset "utf-8";
/* ========== PILATES FIRST LP ========== */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; max-width: 100vw; }

:root {
  --white: #FFFFFF;
  --beige: #F5F0EB;
  --beige-light: #FAF8F6;
  --pink: #E8C4C4;
  --pink-dark: #D4AAAA;
  --pink-light: #F2DEDE;
  --pink-pale: #FDF5F5;
  --charcoal: #3D3D3D;
  --charcoal-light: #6B6B6B;
  --gray-bg: #F0ECE8;
  --line-green: #06C755;
  --line-green-dark: #05B04C;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Noto Sans JP', sans-serif; color: var(--charcoal); line-height: 1.8; background: var(--white); overflow-x: hidden; cursor: none; }

/* Custom Cursor */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; background: var(--pink); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px; border: 1.5px solid var(--pink); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s cubic-bezier(0.25,0.46,0.45,0.94), height 0.3s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.3s, background 0.3s, opacity 0.3s;
}
.cursor-ring.hover {
  width: 56px; height: 56px; background: rgba(232,196,196,0.15); border-color: rgba(232,196,196,0.6);
}
.cursor-dot.hover { width: 4px; height: 4px; }
.cursor-dot.clicking { transform: translate(-50%, -50%) scale(0.5); }
.cursor-ring.clicking { width: 28px; height: 28px; border-width: 2.5px; }

a, button, .btn-primary, .btn-cta, .btn-line, .nav-cta, .faq-q, .price-tab, .hamburger { cursor: none; }
h1, h2, h3, h4 { font-family: 'Zen Old Mincho', serif; font-weight: 700; line-height: 1.4; }
.en-heading { font-family: 'Cabin', sans-serif; font-weight: 600; }
img { max-width: 100%; height: auto; display: block; }
.container strong, .reason-text-side strong, .about-intro-text strong, .trial-qa-item strong {
  font-weight: 700; background: linear-gradient(transparent 65%, var(--pink-light) 65%); padding: 0 2px;
}
.btn-line strong, .btn-mail-lg strong, .cta-banner strong, .cp-heading strong { background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== HEADER ========== */
.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgb(255 255 255 / 42%); backdrop-filter: blur(10px); transition: box-shadow 0.3s; }
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 3px 24px; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; }
.logo img { height: 70px; width: auto; }
.nav-menu { display: flex; gap: 24px; align-items: center; }
.nav-menu a { font-size: 0.82rem; font-weight: 500; transition: color 0.3s; letter-spacing: 0.02em; }
.nav-menu a:hover { color: var(--pink); }
.nav-cta { background: var(--pink); color: var(--white); padding: 8px 22px; border-radius: 50px; font-size: 0.82rem; font-weight: 700; transition: all 0.3s; }
.nav-cta:hover { background: var(--pink-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 5px; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; display: block; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero { position: relative; width: 100%; max-width: 100%; margin: 76px auto 0; aspect-ratio: 2 / 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.hero-bg-sp { display: none; }
.hero-bg::after { display: none; }
@keyframes breatheIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes softExpand {
  from { opacity: 0; letter-spacing: 0.3em; }
  to { opacity: 1; letter-spacing: 0.2em; }
}
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(232,196,196,0.3); }
  50% { box-shadow: 0 8px 30px rgba(232,196,196,0.6); }
}

.hero-content { position: relative; z-index: 2; text-align: center; color: var(--charcoal); padding: 0 20px; max-width: 700px; }
.hero-content > * { opacity: 0; }
.hero-content .hero-label { animation: softExpand 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards; }
.hero-content h1 { animation: breatheIn 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s forwards; }
.hero-content .hero-sub { animation: floatUp 1s ease-out 1.3s forwards; }
.hero-content .hero-campaign-tag { animation: floatUp 1s ease-out 1.5s forwards; }
.hero-content .hero-campaign-cards { animation: floatUp 1s ease-out 1.7s forwards; }
.hero-content .btn-line { opacity: 0; animation: floatUp 1s ease-out 2s forwards, linePulse 3s ease-in-out 3.5s infinite; }
@keyframes linePulse {
  0%, 100% { box-shadow: 0 4px 15px rgba(6,199,85,0.35); }
  50% { box-shadow: 0 8px 30px rgba(6,199,85,0.55); }
}
.hero-content h1::after {
  content: ''; display: block; width: 60px; height: 1px;
  background: var(--pink); margin: 18px auto 0;
  animation: lineGrow 1s ease-out 1.5s both;
}
.hero-label { display: inline-block; border: 1px solid var(--pink); padding: 6px 24px; font-size: 0.75rem; letter-spacing: 0.2em; margin-bottom: 24px; color: var(--charcoal); }
.hero h1 { font-size: 2.5rem; margin-bottom: 16px; letter-spacing: 0.05em; font-weight: 700; line-height: 1.6; }
.hero-sub { font-size: 0.9rem; margin-bottom: 28px; letter-spacing: 0.1em; font-weight: 300; color: var(--charcoal-light); }
.hero-campaign-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #E8C4C4 0%, var(--pink-dark) 100%);
  color: var(--white); padding: 12px 36px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.15em;
  margin-bottom: 20px; position: relative;
  box-shadow: 0 4px 20px rgba(232,196,196,0.5), inset 0 1px 0 rgba(255,255,255,0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
  animation: tagShimmer 3s ease-in-out infinite;
}
@keyframes tagShimmer {
  0%, 100% { box-shadow: 0 4px 20px rgba(232,196,196,0.5), inset 0 1px 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 6px 30px rgba(232,196,196,0.7), inset 0 1px 0 rgba(255,255,255,0.5); }
}
.campaign-deco { font-size: 0.7rem; opacity: 0.8; animation: decoSpin 4s linear infinite; }
@keyframes decoSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-campaign-cards { display: flex; gap: 14px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap; }
.hero-card {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px);
  border: 1px solid var(--pink-light); border-radius: 14px;
  padding: 18px 24px; min-width: 140px; text-align: center;
}
.hero-card-label { font-size: 0.72rem; color: var(--charcoal-light); letter-spacing: 0.08em; margin-bottom: 6px; }
.hero-card-price { font-size: 0.85rem; margin-bottom: 2px; }
.hero-card-price .original { text-decoration: line-through; opacity: 0.5; }
.hero-card-after { font-size: 1.5rem; font-family: 'Zen Old Mincho', serif; font-weight: 700; color: var(--pink); line-height: 1.2; }

/* ========== BUTTONS ========== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--pink); color: var(--white); padding: 16px 40px; border-radius: 50px; font-size: 1rem; font-weight: 700; transition: all 0.3s; border: none; cursor: pointer; box-shadow: 0 4px 15px rgba(232,196,196,0.4); letter-spacing: 0.05em; }
.btn-primary:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,196,196,0.5); }
.btn-primary::after { content: '\2192'; font-size: 1.1rem; }
.btn-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--pink); color: var(--white); padding: 16px 44px; border-radius: 50px; font-size: 0.95rem; font-weight: 700; letter-spacing: 0.05em; transition: all 0.3s; border: none; cursor: pointer; }
.btn-cta:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,196,196,0.35); }
.btn-cta svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* LINE Button */
.btn-line {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--line-green); color: var(--white);
  padding: 16px 44px; border-radius: 50px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.05em;
  transition: all 0.3s; border: none; cursor: none; text-decoration: none;
  box-shadow: 0 4px 15px rgba(6,199,85,0.35);
}
.btn-line:hover { background: var(--line-green-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(6,199,85,0.45); }
.btn-line-icon { width: 24px; height: 24px; object-fit: contain; }

/* ========== SCROLL ANIMATIONS ========== */
[data-anim] { opacity: 0; transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.8s ease; }
[data-anim].visible { opacity: 1; transform: none !important; filter: none !important; }
[data-anim="breathe-up"] { transform: translateY(40px) scale(0.97); filter: blur(3px); }
[data-anim="breathe-left"] { transform: translateX(-50px) scale(0.97); filter: blur(3px); }
[data-anim="breathe-right"] { transform: translateX(50px) scale(0.97); filter: blur(3px); }
[data-anim="stretch"] { transform: scaleY(0.85) translateY(30px); transform-origin: bottom; }
[data-anim="unfold"] { transform: rotateX(8deg) translateY(30px); transform-origin: top center; perspective: 800px; }
[data-anim="soft-zoom"] { transform: scale(0.92); filter: blur(4px); }
[data-anim="flow-in"] { transform: translateY(25px) rotate(-1deg); }
[data-anim="fade-up"] { transform: translateY(30px); }

.section { padding: 80px 20px; }
.container { max-width: 1000px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title .en { font-size: 0.72rem; color: var(--pink); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; font-family: 'Cabin', sans-serif; font-weight: 600; }
.section-title h2 { font-size: 1.7rem; position: relative; display: inline-block; }
.section-title h2::after { content: ''; display: block; width: 40px; height: 2px; background: var(--pink); margin: 14px auto 0; border-radius: 2px; }
.section-title p { margin-top: 14px; font-size: 0.88rem; color: var(--charcoal-light); }

/* Magazine-style title */
.mag-title { margin-bottom: 48px; }
.mag-title .number { font-family: 'Cabin', sans-serif; font-size: 4.5rem; font-weight: 700; color: var(--pink-light); line-height: 1; margin-bottom: -10px; }
.mag-title .en { font-family: 'Cabin', sans-serif; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--pink); margin-bottom: 8px; }
.mag-title h2 { font-size: 1.6rem; }
.mag-title h2 .accent-line { background: linear-gradient(transparent 60%, var(--pink-light) 60%); }

/* ========== CAMPAIGN ========== */
.campaign-section { background: var(--beige); padding: 80px 20px; }
.campaign-section .container {
  background: var(--white); border: 2px solid var(--pink-light); border-radius: 20px;
  padding: 48px 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.cp-top { text-align: center; padding-bottom: 48px; }
.cp-sub { font-size: 0.85rem; color: var(--pink); letter-spacing: 0.15em; margin-bottom: 8px; font-weight: 500; }
.cp-heading {
  font-family: 'Zen Old Mincho', serif; font-size: 1.8rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: 40px; font-style: italic;
}
.cp-num { font-size: 2.4rem; color: var(--pink); }
.cp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cp-card {
  background: var(--white); border: 2px solid var(--beige); border-radius: 16px;
  padding: 10px 20px; text-align: center; position: relative;
}
.cp-card-num {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cabin', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--pink);
  margin: 0 auto 16px;
}
.cp-card h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 10px; color: var(--charcoal); }
.cp-card-original { font-size: 0.78rem; color: var(--charcoal-light); text-decoration: line-through; margin-bottom: 8px; }
.cp-card-price { font-family: 'Zen Old Mincho', serif; font-size: 3rem; font-weight: 700; color: var(--charcoal); line-height: 1.1; }
.cp-yen { font-size: 1.2rem; font-weight: 500; }
.cp-bottom {
  background: var(--beige-light); border-radius: 16px; padding: 36px 20px 40px;
  text-align: center; margin-top: 8px;
}
.cp-limit-badge {
  display: inline-block; font-size: 1rem; font-weight: 700; color: var(--pink);
  letter-spacing: 0.15em; margin-bottom: 24px;
  padding: 8px 32px; border: 2px solid var(--pink); border-radius: 50px;
}
.cp-cta-row { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn-line-lg { padding: 12px 44px; font-size: 1.05rem; border-radius: 50px; box-shadow: 0 6px 24px rgba(6,199,85,0.3); }
.btn-line-lg small, .btn-mail-lg small { font-size: 0.7rem; font-weight: 400; opacity: 0.9; }
.btn-mail-lg {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--pink); color: var(--white);
  padding: 12px 44px; border-radius: 50px;
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.05em;
  transition: all 0.3s; border: none; cursor: none; text-decoration: none;
  box-shadow: 0 6px 24px rgba(232,196,196,0.4);
}
.btn-mail-lg:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,196,196,0.5); }
.btn-mail-icon { width: 28px; height: 28px; flex-shrink: 0; }
.btn-mail-lg span, .btn-line-lg span { text-align: left; line-height: 1.5; }
.btn-line-lg { display: inline-flex; align-items: center; gap: 16px; }
.btn-line-lg .btn-line-icon { width: 28px; height: 28px; flex-shrink: 0; }

/* ========== ABOUT INTRO ========== */
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-intro-text p { font-size: 0.9rem; margin-bottom: 16px; line-height: 2; }
.about-intro-lead { font-size: 1.05rem; margin-bottom: 20px; line-height: 2; }
.about-intro-img { position: relative; }
.about-intro-img::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 85%; height: 85%; border: 1px solid rgba(0,0,0,0.08);
  background: var(--beige); border-radius: 4px; z-index: 0;
}
.about-intro-img img { width: 90%; height: 420px; object-fit: cover; position: relative; z-index: 1; box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.about-intro-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.about-stat {
  text-align: center; padding: 20px 8px;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-stat.counted { opacity: 1; transform: translateY(0); }
.about-stat-num { font-family: 'Cabin', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--pink); line-height: 1; display: inline-block; }
.about-stat-unit { font-size: 0.75rem; font-weight: 700; color: var(--pink); }
.about-stat p { font-size: 0.72rem; color: var(--charcoal-light); margin-top: 6px; margin-bottom: 0; }

/* ========== PROBLEMS ========== */
.problems-section { padding: 0; }
.problems-top { background: var(--gray-bg); padding: 60px 20px 60px; }
.problems-heading {
  font-size: 1.8rem; margin-bottom: 36px; text-align: left;
  font-family: 'Zen Old Mincho', serif;
  border-bottom: 3px solid var(--charcoal); padding-bottom: 12px; display: inline-block;
}
.problems-heading .accent-line { background: linear-gradient(transparent 60%, var(--pink-light) 60%); }
.problems-top-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.problems-list { display: flex; flex-direction: column; gap: 12px; }
.p-item { font-size: 0.92rem; line-height: 1.8; transition: transform 0.2s; }
.p-item:hover { transform: translateX(4px); }
.p-item::before { display: none; }
.problems-top-img { display: flex; justify-content: flex-end; }
.problems-top-img img { width: 85%; height: auto; object-fit: cover; border-radius: 12px; }
.problems-arrow { text-align: center; background: var(--white); position: relative; }
.problems-arrow::before {
  content: ''; display: block; width: 0; height: 0;
  border-left: 80px solid transparent; border-right: 80px solid transparent;
  border-top: 50px solid var(--gray-bg); margin: 0 auto;
}
.problems-bottom { background: var(--white); padding: 40px 20px 60px; }
.problems-bridge { text-align: center; margin-bottom: 40px; }
.bridge-sub { font-size: 0.9rem; color: var(--charcoal-light); margin-bottom: 8px; letter-spacing: 0.1em; }
.problems-bridge h3 { font-size: 1.5rem; font-family: 'Zen Old Mincho', serif; line-height: 1.8; }
.problems-bridge h3 .hl { background: linear-gradient(transparent 60%, var(--pink-light) 60%); font-size: 1.8rem; }
.bridge-sub2 {
  font-size: 1.15rem; font-family: 'Zen Old Mincho', serif; font-weight: 700;
  color: var(--charcoal); margin-top: 16px; letter-spacing: 0.08em;
  background: linear-gradient(transparent 60%, var(--pink-light) 60%); display: inline;
}

/* 未来カード */
.future-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.future-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border-radius: 16px; padding: 20px 24px;
  border: 1px solid var(--beige); position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.future-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(232,196,196,0.2); }
.future-num {
  position: absolute; top: 12px; left: 16px;
  font-family: 'Cabin', sans-serif; font-size: 1.6rem; font-weight: 800;
  color: var(--pink); opacity: 1; letter-spacing: 0.05em; line-height: 1;
}
.future-img-wrap { position: relative; flex-shrink: 0; width: 130px; height: 130px; }
/* 01: 左上に大きめ + 右下に小さめ */
.future-card:nth-child(1) .future-img-wrap::before {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 54px; height: 54px; background: rgba(232,196,196,0.28);
  top: -14px; left: -16px;
}
.future-card:nth-child(1) .future-img-wrap::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 24px; height: 24px; background: rgba(232,196,196,0.18);
  bottom: -4px; right: -8px;
}
/* 02: 右上に中 + 左下に大きめ薄い */
.future-card:nth-child(2) .future-img-wrap::before {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 40px; height: 40px; background: rgba(232,196,196,0.22);
  top: -10px; right: -14px; left: auto;
}
.future-card:nth-child(2) .future-img-wrap::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 58px; height: 58px; background: rgba(232,196,196,0.14);
  bottom: -16px; left: -12px; right: auto;
}
/* 03: 左下に大 + 右上に極小 */
.future-card:nth-child(3) .future-img-wrap::before {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 48px; height: 48px; background: rgba(232,196,196,0.25);
  bottom: -12px; left: -18px; top: auto;
}
.future-card:nth-child(3) .future-img-wrap::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 20px; height: 20px; background: rgba(232,196,196,0.20);
  top: -6px; right: -4px; bottom: auto;
}
/* 04: 右下に大きめ + 左上に中 */
.future-card:nth-child(4) .future-img-wrap::before {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 60px; height: 60px; background: rgba(232,196,196,0.16);
  bottom: -18px; right: -16px; top: auto; left: auto;
}
.future-card:nth-child(4) .future-img-wrap::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 34px; height: 34px; background: rgba(232,196,196,0.24);
  top: -10px; left: -10px; bottom: auto; right: auto;
}
/* 05: 上中央に大きめ薄い + 左下に小 */
.future-card:nth-child(5) .future-img-wrap::before {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 44px; height: 44px; background: rgba(232,196,196,0.20);
  top: -16px; left: 50%; transform: translateX(-50%);
}
.future-card:nth-child(5) .future-img-wrap::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 28px; height: 28px; background: rgba(232,196,196,0.26);
  bottom: -8px; left: -14px; right: auto;
}
/* 06: 右上に小 + 左下に大 + 右下に極小（::afterのみ2つは不可なので大+小） */
.future-card:nth-child(6) .future-img-wrap::before {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 22px; height: 22px; background: rgba(232,196,196,0.28);
  top: -8px; right: -6px; left: auto;
}
.future-card:nth-child(6) .future-img-wrap::after {
  content: ''; position: absolute; border-radius: 50%; z-index: 0;
  width: 52px; height: 52px; background: rgba(232,196,196,0.16);
  bottom: -14px; left: -16px; right: auto; top: auto;
}
.future-img {
  position: relative; z-index: 1;
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--pink-light); box-shadow: 0 4px 16px rgba(232,196,196,0.3);
}
.future-img img { width: 100%; height: 100%; object-fit: cover; }
.future-text p { font-size: 0.88rem; font-weight: 400; line-height: 1.7; color: var(--charcoal-light); margin-bottom: 0; }
.future-text p span {
  font-weight: 700; color: var(--charcoal); font-size: 1.05rem;
  background: linear-gradient(transparent 65%, var(--pink) 65%); padding: 0 2px;
}

.section-beige { background: var(--beige); }

/* ========== WHY KOREAN PILATES ========== */
.compare-table-wrap {
  background: var(--white); border-radius: 20px;
  padding: 40px 36px; margin-bottom: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06); position: relative; overflow: hidden;
}
.compare-table-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--pink-light), var(--beige));
}
.compare-title {
  text-align: center; font-size: 1.3rem; font-weight: 700; margin-bottom: 28px;
  font-family: 'Zen Old Mincho', serif; letter-spacing: 0.08em;
}
.compare-title-kr { color: var(--pink); font-size: 1.4rem; }
.compare-title-vs {
  display: inline-block; background: var(--charcoal); color: var(--white);
  font-family: 'Cabin', sans-serif; font-size: 0.85rem; font-weight: 700;
  padding: 4px 14px; border-radius: 50px; margin: 0 8px; vertical-align: middle; letter-spacing: 0.1em;
}
.compare-title-old { color: var(--charcoal-light); font-size: 1.4rem; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td { padding: 18px 20px; text-align: center; font-size: 0.88rem; vertical-align: middle; }
.compare-table thead th { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; padding: 16px 20px; }
.compare-table thead th:first-child { background: transparent; }
.compare-korean { color: var(--white); font-weight: 700; background: var(--pink); border-radius: 8px 8px 0 0; }
.compare-table thead th:last-child { background: var(--charcoal-light); color: var(--white); border-radius: 8px 8px 0 0; }
.compare-label {
  font-weight: 700; font-size: 0.82rem; color: var(--charcoal);
  background: var(--beige); text-align: center; white-space: nowrap; border-radius: 6px 0 0 6px;
}
.compare-bold { font-weight: 700; color: var(--charcoal); background: rgba(232,196,196,0.18); }
.compare-table tbody td:last-child { background: var(--beige-light); color: var(--charcoal-light); font-size: 0.84rem; }
.compare-table tbody tr { transition: transform 0.2s; }
.compare-table tbody tr:hover { transform: scale(1.01); }
.compare-table tbody tr td { border-bottom: 2px solid var(--white); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-message { text-align: center; background: var(--beige); border-radius: 16px; padding: 32px 24px; }
.compare-msg-main { font-family: 'Zen Old Mincho', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; color: var(--charcoal); }
.compare-msg-sub { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.9; margin-bottom: 0; }

/* ========== ABOUT / CONCEPT ========== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img { border-radius: 20px; overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h3 { font-size: 1.5rem; margin-bottom: 20px; line-height: 1.7; }
.about-text h3 .pink { color: var(--pink); }
.about-text p { font-size: 0.92rem; color: var(--charcoal-light); margin-bottom: 16px; line-height: 2; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.service-tag { background: var(--pink-light); color: var(--charcoal); padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 500; }

/* ========== REASONS ========== */
.reason-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; padding: 0 20px; }
.reason-card { border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
.reason-card .reason-img-side { height: 220px; }
.reason-card .reason-img-side img { width: 100%; height: 100%; object-fit: cover; }
.reason-card .reason-text-side { padding: 28px 24px; flex: 1; justify-content: flex-start; }
.reason-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-bottom: 2px; min-height: 320px; }
.reason-img-side { overflow: hidden; }
.reason-img-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.reason-row:hover .reason-img-side img { transform: scale(1.03); }
.reason-text-side { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.reason-text-side .num { font-family: 'Cabin', sans-serif; font-size: 2.5rem; color: var(--pink-light); font-weight: 700; line-height: 1; margin-bottom: 12px; }
.reason-text-side h3 { font-size: 1.1rem; margin-bottom: 12px; }
.reason-text-side p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.9; }

/* ========== INSTRUCTOR ========== */
.instructor-grid { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.inst-photo { position: relative; }
.inst-photo img { width: 100%; height: 400px; object-fit: cover; border-radius: 20px; }
.inst-photo .badge { position: absolute; top: 16px; left: 16px; background: var(--pink); color: var(--white); padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.inst-info .en-label { font-family: 'Cabin', sans-serif; font-size: 0.7rem; letter-spacing: 0.3em; color: var(--pink); margin-bottom: 8px; }
.inst-info h3 { font-size: 1.3rem; margin-bottom: 16px; }
.inst-info p { font-size: 0.88rem; color: var(--charcoal-light); margin-bottom: 12px; line-height: 2; }
.inst-detail { margin-bottom: 20px; }
.inst-detail-label {
  font-size: 0.78rem; font-weight: 700; color: var(--pink);
  letter-spacing: 0.1em; margin-bottom: 6px; padding-left: 12px; border-left: 3px solid var(--pink);
}
.inst-detail p { font-size: 0.88rem; line-height: 1.9; margin-bottom: 0; }
.inst-message { margin-top: 24px; }
.inst-quote {
  font-family: 'Zen Old Mincho', serif; font-size: 1rem;
  font-style: italic; line-height: 1.9; color: var(--charcoal);
  background: var(--white); padding: 20px 24px; border-radius: 12px;
  border-left: 4px solid var(--pink); margin-top: 8px;
}

/* ========== PRICE ========== */
.price-tabs { display: flex; justify-content: center; gap: 4px; margin-bottom: 0px; flex-wrap: wrap; }
.price-tab { padding: 10px 24px; font-size: 0.85rem; font-weight: 500; cursor: pointer; background: transparent; border: 1px solid var(--pink); color: var(--charcoal); transition: all 0.3s; border-radius: 50px; }
.price-tab.active { background: var(--pink); color: var(--white); }
.price-panel { display: none; }
.price-panel.active { display: block; }
.price-table-b { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 16px; overflow: hidden; }
.price-table-b th, .price-table-b td { padding: 10px 20px; text-align: center; font-size: 0.88rem; border-bottom: 1px solid var(--beige); }
.price-table-b th { background: var(--pink); color: var(--white); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.1em; border-bottom: none; }
.price-table-b .price-val { color: var(--pink); font-family: 'Zen Old Mincho', serif; font-size: 1.15rem; font-weight: 700; }
.price-table-b .original { text-decoration: line-through; color: var(--charcoal-light); font-size: 0.8rem; }
.price-section-label { font-size: 0.85rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; padding-left: 4px; letter-spacing: 0.05em; }
.price-campaign-box {
  margin-top: 32px; background: var(--pink-pale); border: 2px solid var(--pink-light);
  border-radius: 20px; padding: 28px 24px; position: relative;
}
.price-campaign-header { text-align: center; font-size: 0.95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 24px; letter-spacing: 0.05em; }
.price-campaign-badge {
  display: inline-block; background: var(--pink); color: var(--white);
  padding: 4px 16px; border-radius: 50px; font-size: 0.72rem; font-weight: 700;
  margin-right: 10px; letter-spacing: 0.08em; vertical-align: middle;
}
.price-campaign-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.price-campaign-card {
  background: var(--white); border-radius: 14px; padding: 20px 12px;
  text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.pcc-plan { font-size: 0.82rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; letter-spacing: 0.05em; }
.pcc-original { font-size: 0.78rem; color: var(--charcoal-light); text-decoration: line-through; }
.pcc-arrow { color: var(--pink); font-size: 0.7rem; margin: 4px 0; }
.pcc-price { font-size: 1.2rem; font-family: 'Zen Old Mincho', serif; font-weight: 700; color: var(--pink); line-height: 1.3; }
.pcc-unit { display: block; font-size: 0.7rem; font-family: 'Noto Sans JP', sans-serif; font-weight: 400; color: var(--charcoal-light); margin-top: 4px; }
.price-note-b { text-align: center; margin-top: 24px; padding: 20px; background: var(--white); border-radius: 16px; font-size: 0.9rem; }
.price-note-b .free { color: var(--pink); font-weight: 700; font-size: 1.1rem; }

/* ========== FLOW (TRIAL) ========== */
.trial-steps { max-width: 600px; margin: 0 auto 48px; display: flex; flex-direction: column; align-items: center; }
.trial-step-card {
  width: 100%; background: var(--white); border-radius: 14px; padding: 24px 28px;
  text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-decoration: none; color: inherit; display: block; transition: transform 0.3s, box-shadow 0.3s;
}
a.trial-step-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,196,196,0.3); }
.trial-step-num {
  width: 36px; height: 36px; background: var(--pink); color: var(--white); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Cabin', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 10px;
}
.trial-step-card h3 { font-size: 1rem; margin-bottom: 6px; }
.trial-step-card p { font-size: 0.85rem; color: var(--charcoal-light); line-height: 1.8; margin-bottom: 0; }
.trial-arrow { font-size: 1.4rem; color: var(--pink); padding: 10px 0; font-weight: 700; }

/* Q&A */
.trial-qa { max-width: 600px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.trial-qa-item { background: var(--white); border-radius: 14px; padding: 24px 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.trial-qa-q { font-size: 0.95rem; font-weight: 700; color: var(--pink); margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--beige); }
.trial-qa-item p { font-size: 0.88rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 0; }
.trial-qa-list { display: flex; flex-direction: column; gap: 6px; font-size: 0.88rem; }

/* ========== CONTACT FORM ========== */
.contact-section { background: var(--white); }
.contact-form-wrap {
  max-width: 640px; margin: 0 auto;
  background: var(--beige-light); border-radius: 20px;
  padding: 48px 40px; box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.contact-form-wrap .wpcf7-form p { margin-bottom: 16px; font-size: 0.9rem; }
.contact-form-wrap .wpcf7-form label { font-weight: 500; display: block; margin-bottom: 6px; }
.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form textarea,
.contact-form-wrap .wpcf7-form select {
  width: 100%; padding: 14px 16px; border: 1px solid var(--beige);
  border-radius: 10px; font-size: 0.9rem; font-family: 'Noto Sans JP', sans-serif;
  background: var(--white); transition: border-color 0.3s;
}
.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form textarea:focus,
.contact-form-wrap .wpcf7-form select:focus {
  outline: none; border-color: var(--pink);
}
.contact-form-wrap .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.contact-form-wrap .wpcf7-form input[type="submit"] {
  display: block; width: 100%; padding: 16px; margin-top: 8px;
  background: var(--pink); color: var(--white); border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.08em; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 15px rgba(232,196,196,0.4);
}
.contact-form-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--pink-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,196,196,0.5);
}

/* ========== FAQ ========== */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item { background: var(--white); margin-bottom: 10px; border-radius: 12px; overflow: hidden; border: 1px solid var(--beige); }
.faq-q { padding: 18px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-size: 0.92rem; font-weight: 500; transition: background 0.2s; }
.faq-q:hover { background: var(--pink-pale); }
.faq-q .q-mark { font-family: 'Cabin', sans-serif; font-weight: 700; color: var(--pink); margin-right: 12px; font-size: 1rem; }
.faq-q .toggle { width: 24px; height: 24px; border-radius: 50%; background: var(--beige); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s, background 0.3s; color: var(--pink); font-size: 0.85rem; }
.faq-item.active .faq-q .toggle { transform: rotate(45deg); background: var(--pink); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 24px 20px 52px; font-size: 0.88rem; color: var(--charcoal-light); line-height: 2; }

/* ========== ACCESS ========== */
.access-section { background: var(--beige); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.access-map { border-radius: 16px; overflow: hidden; height: 350px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.access-map iframe { width: 100%; height: 100%; border: 0; }
.access-info h3 { font-size: 1.1rem; margin-bottom: 20px; }
.access-address { font-size: 0.9rem; line-height: 1.9; color: var(--charcoal); margin-bottom: 20px; }
.access-routes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.access-route { background: var(--white); border-radius: 10px; padding: 14px 18px; border: 1px solid var(--beige); }
.access-route-label { font-size: 0.8rem; font-weight: 700; color: var(--charcoal); margin-bottom: 4px; }
.access-route p { font-size: 0.85rem; color: var(--charcoal-light); margin-bottom: 0; }

/* ========== CTA BANNER ========== */
.cta-banner { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%); text-align: center; color: var(--white); padding: 72px 20px; }
.cta-banner h2 { font-size: 1.7rem; margin-bottom: 14px; color: var(--white); }
.cta-banner h2::after { display: none; }
.cta-banner p { margin-bottom: 28px; opacity: 0.9; font-size: 0.88rem; }
.cta-banner .btn-primary { background: var(--white); color: var(--pink); box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.cta-banner .btn-primary:hover { background: var(--beige-light); transform: translateY(-2px); }

/* ========== FOOTER ========== */
.footer { background: var(--charcoal); color: var(--white); padding: 28px 20px 80px; text-align: center; }
.footer .f-logo { font-family: 'Zen Old Mincho', serif; font-size: 1rem; margin-bottom: 4px; }
.footer p { font-size: 0.72rem; opacity: 0.4; }

/* ========== FLOATING CTA ========== */
.floating-cta { position: fixed; bottom: 0; left: 0; width: 100%; background: rgb(255 255 255 / 36%); backdrop-filter: blur(12px); padding: 12px 20px; z-index: 999; box-shadow: 0 -2px 16px rgba(0,0,0,0.06); display: flex; justify-content: center; align-items: center; gap: 20px; transform: translateY(100%); transition: transform 0.4s; }
.floating-cta.show { transform: translateY(0); }
.floating-cta .fl-text { font-size: 0.82rem; font-weight: 500; }
.floating-cta .fl-text span { color: var(--pink); font-weight: 700; }
.floating-cta .btn-cta { padding: 12px 28px; font-size: 0.85rem; }

/* ========== SCROLL TOP ========== */
.scroll-top { position: fixed; bottom: 80px; right: 20px; width: 40px; height: 40px; background: var(--charcoal); color: var(--white); border: none; border-radius: 50%; cursor: pointer; font-size: 0.9rem; z-index: 998; opacity: 0; transition: all 0.3s; }
.scroll-top.show { opacity: 1; }
.scroll-top:hover { background: var(--pink); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .nav-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px; height: 100vh; background: var(--white); flex-direction: column; padding: 80px 40px 40px; gap: 24px; transition: right 0.3s; box-shadow: -4px 0 20px rgba(0,0,0,0.08); }
  .nav-menu.open { right: 0; }
  .hamburger { display: flex; }
  .hero {
    aspect-ratio: auto; height: auto;
    display: block; overflow: visible; position: relative;
  }
  .hero-bg { position: relative; }
  .hero-bg-pc { display: none !important; }
  .hero-bg-sp { display: block !important; width: 100%; height: auto; }
  .hero-content {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 90%; max-width: 100%; padding: 28px 20px;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.55) 55%, transparent 80%);
    will-change: transform;
  }
  .hero h1 { font-size: 1.8rem; }
  .hero-campaign-box { padding: 16px 24px; }
  .campaign-section .container { padding: 28px 20px; }
  .cp-cards { grid-template-columns: 1fr; gap: 16px; }
  .cp-card-price { font-size: 2.2rem; }
  .cp-heading { font-size: 1.4rem; }
  .btn-line-lg, .btn-mail-lg { padding: 10px 32px; font-size: 0.95rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-intro-img::before { display: none; }
  .about-intro-img img { width: 80%; height: auto; margin: 0 auto; }
  .about-intro-stats { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .about-stat-num { font-size: 1.8rem; }
  .problems-top-grid { grid-template-columns: 1fr; gap: 24px; }
  .problems-top-img img { width: 100%; }
  .problems-heading { font-size: 1.4rem; }
  .problems-bridge h3 { font-size: 1.2rem; }
  .problems-bridge h3 .hl { font-size: 1.4rem; }
  .future-grid { grid-template-columns: 1fr; gap: 14px; }
  .future-card { padding: 16px 18px; gap: 16px; }
  .future-img-wrap { width: 100px; height: 100px; }
  .future-img { width: 90px; height: 90px; }
  .future-img-wrap::before { width: 36px; height: 36px; top: -8px; left: -10px; }
  .future-img-wrap::after { width: 22px; height: 22px; bottom: -4px; right: -6px; }
  .future-num { font-size: 1.3rem; }
  .problems-img img { height: 260px; }
  .compare-table-wrap { padding: 24px 16px; }
  .compare-table th, .compare-table td { padding: 12px 8px; font-size: 0.76rem; }
  .compare-msg-main { font-size: 1rem; }
  .compare-message { padding: 24px 16px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
  .about-img img { height: 280px; }
  .reason-pair { grid-template-columns: 1fr; gap: 16px; padding: 0 16px; }
  .reason-card .reason-img-side { height: 180px; }
  .reason-row { grid-template-columns: 1fr; min-height: auto; }
  .reason-img-side img { height: 220px; }
  .reason-text-side { padding: 28px 24px; }
  .instructor-grid { grid-template-columns: 1fr; gap: 24px; }
  .inst-photo img { height: 300px; }
  .inst-certs { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; gap: 24px; }
  .access-map { height: 260px; }
  .section { padding: 60px 16px; }
  .section-title h2 { font-size: 1.4rem; }
  .mag-title .number { font-size: 3rem; }
  .floating-cta .fl-text { display: none; }
  .price-table-b th, .price-table-b td { padding: 12px 10px; font-size: 0.82rem; }
  .price-tabs { gap: 6px; }
  .price-tab { padding: 8px 16px; font-size: 0.78rem; }
  .price-campaign-grid { grid-template-columns: repeat(2, 1fr); }
  .pcc-price { font-size: 1.05rem; }
  .contact-form-wrap { padding: 32px 20px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero-sub { font-size: 0.8rem; }
  .btn-cta { padding: 14px 32px; font-size: 0.85rem; }
  .about-text h3 { font-size: 1.3rem; }
}
