/* ===========================
   RIALA Landing Page Styles
   =========================== */

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #E91E8C;
  --purple: #7E3C92;
  --violet: #5B2D8E;
  --gradient: linear-gradient(135deg, #E91E8C 0%, #7E3C92 50%, #5B2D8E 100%);
  --gradient-soft: linear-gradient(135deg, rgba(233,30,140,0.08) 0%, rgba(126,60,146,0.08) 100%);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #111;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font-family: inherit; cursor: pointer; }

/* ===========================
   Utilities
   =========================== */
.gradient-text {
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 60%, #5B2D8E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  color: #fff;
  font-weight: 900;
  border-radius: 9999px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(233,30,140,0.5);
}

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

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 24px rgba(126,60,146,0.08);
  border: 1px solid rgba(126,60,146,0.08);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes btn-pulse {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(233,30,140,0.35), 0 0 0 0 rgba(233,30,140,0.25);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 48px rgba(233,30,140,0.65), 0 0 0 10px rgba(233,30,140,0);
    transform: scale(1.06);
  }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.animate-float { animation: float 4s ease-in-out infinite; }
.animate-float-slow { animation: float-slow 6s ease-in-out infinite; }
.animate-ticker { animation: ticker 20s linear infinite; }

/* Scroll animations */
.anim { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.left { transform: translateX(-40px); }
.anim.right { transform: translateX(40px); }
.anim.visible { opacity: 1; transform: translate(0,0); }
.anim.d1 { transition-delay: 0.1s; }
.anim.d2 { transition-delay: 0.2s; }
.anim.d3 { transition-delay: 0.3s; }
.anim.d4 { transition-delay: 0.4s; }
.anim.d5 { transition-delay: 0.5s; }

/* ===========================
   Header
   =========================== */
.header {
  position: relative;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .header {
    position: fixed;
  }
  .header.scrolled {
    background: rgba(255,255,255,0.95);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-logo img { height: 36px; width: auto; }

.header-nav {
  display: none;
  align-items: center;
  gap: 28px;
}
@media (min-width: 1024px) { .header-nav { display: flex; } }

.header-nav a, .header-nav button {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
  position: relative;
  transition: color 0.2s;
}
.header-nav a::after, .header-nav button::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  transition: width 0.3s;
}
.header-nav a:hover, .header-nav button:hover { color: #7E3C92; }
.header-nav a:hover::after, .header-nav button:hover::after { width: 100%; }

.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: block; } }
.header-cta .btn-primary { padding: 12px 28px; font-size: 0.9rem; }

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: #4b5563;
  font-size: 1.4rem;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

/* メニューバックドロップ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* body スクロール抑止 */
body.menu-open { overflow: hidden; }

/* モバイルメニュー */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  z-index: 99;
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  max-height: calc(100dvh - 64px);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu-inner {
  padding: 20px 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 4px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #7E3C92; }
.mobile-nav-link:last-of-type { border-bottom: none; }

.mobile-menu-cta {
  margin-top: 28px;
}
.mobile-menu-cta .btn-primary {
  width: 100%;
  padding: 22px 24px;
  font-size: 1.05rem;
  text-align: center;
  justify-content: center;
}

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero-blob1 {
  position: absolute; top: 0; right: 0;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse at 80% 20%, rgba(233,30,140,0.12) 0%, rgba(126,60,146,0.08) 40%, transparent 70%);
  pointer-events: none;
}
.hero-blob2 {
  position: absolute; bottom: 0; left: 0;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse at 20% 80%, rgba(91,45,142,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-float1 {
  position: absolute; top: 10%; right: 5%;
  width: 288px; height: 288px;
  border-radius: 50%;
  opacity: 0.07;
  background: linear-gradient(135deg, #E91E8C, #7E3C92);
  filter: blur(40px);
  pointer-events: none;
}
.hero-float2 {
  position: absolute; bottom: 15%; left: 8%;
  width: 224px; height: 224px;
  border-radius: 50%;
  opacity: 0.06;
  background: linear-gradient(135deg, #7E3C92, #5B2D8E);
  filter: blur(40px);
  pointer-events: none;
}

/* Ticker */
.ticker-wrap {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  margin-top: 0;
  background: linear-gradient(90deg, #E91E8C 0%, #A0319F 50%, #5B2D8E 100%);
  position: relative;
  z-index: 10;
}
@media (min-width: 1024px) {
  .ticker-wrap { margin-top: 64px; }
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}
.ticker-item {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 32px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.ticker-item .sep { opacity: 0.3; margin: 0 12px; }

/* Hero Content */
.hero-content {
  padding: 32px 0 40px;
}
@media (min-width: 1024px) { .hero-content { padding: 56px 0 64px; } }

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
  }
}

/* Hero Text */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(233,30,140,0.25);
  color: #C4197A;
  background: rgba(233,30,140,0.05);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #E91E8C;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-h1 {
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 12.5vw, 3rem);
}
@media (min-width: 1024px) { .hero-h1 { font-size: clamp(2.6rem, 4vw, 5rem); } }
.hero-h1 .line1, .hero-h1 .line3 { color: #030712; }
@media (max-width: 1023px) { .hero-h1 .block { display: block; } }
.hero-h1 .line2 { white-space: nowrap; }

.hero-sub {
  font-size: clamp(0.875rem, 3.5vw, 1rem);
  color: #4b5563;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 0;
}
@media (min-width: 1024px) { .hero-sub { font-size: 1.125rem; } }

/* Hero text: flex container for mobile reorder */
@media (max-width: 1023px) {
  .hero-text {
    display: flex;
    flex-direction: column;
  }
  /* 順序: バッジ→見出し→サブ→CTA→特徴バッジ→画像 */
  .hero-badge   { order: 1; }
  .hero-h1      { order: 2; }
  .hero-sub     { order: 3; }
  .hero-cta     { order: 4; }
  .hero-badges  { order: 5; }
  .hero-mobile-img { order: 6; }
}

/* Hero mobile image */
.hero-mobile-img {
  margin-top: 24px;
}
@media (min-width: 1024px) { .hero-mobile-img { display: none; } }
.hero-mobile-img .img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 480px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(126,60,146,0.2);
}
.hero-mobile-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.hero-mobile-img .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(91,45,142,0.6) 0%, transparent 60%);
}
.hero-img-badge {
  position: absolute;
  bottom: 16px; left: 16px; right: 16px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.hero-img-badge-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-avatars {
  display: flex;
  margin-right: 4px;
}
.hero-avatars img, .hero-avatar-plus {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -8px;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-avatar-plus {
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
}
.hero-badge-text .t1 { font-size: 0.75rem; font-weight: 900; color: #111; }
.hero-badge-text .t2 { font-size: 0.625rem; color: #6b7280; }

/* Hero CTA */
.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
@media (min-width: 640px) { .hero-cta { align-items: flex-start; } }
@media (min-width: 1024px) { .hero-cta { margin-top: 32px; } }

.hero-cta .btn-primary {
  width: 100%;
  padding: 22px 24px;
  font-size: 1.05rem;
  animation: btn-pulse 2.8s ease-in-out infinite;
}
@media (min-width: 640px) {
  .hero-cta .btn-primary {
    width: auto;
    padding: clamp(14px, 3vw, 24px) clamp(20px, 5vw, 48px);
    font-size: clamp(0.9rem, 2.5vw, 1.25rem);
  }
}

.hero-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 640px) { .hero-price-wrap { align-items: flex-start; text-align: left; } }
.hero-price {
  font-size: 0.875rem;
  font-weight: 900;
  color: #111;
}
.hero-price .amount {
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 4px;
}
.hero-price .tax { font-size: 0.75rem; font-weight: 500; color: #9ca3af; }
.hero-note { font-size: 0.75rem; color: #4b5563; font-weight: 500; letter-spacing: 0.05em; }

/* Hero badges */
.hero-badges {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (min-width: 1024px) { .hero-badges { justify-content: flex-start; gap: 20px; } }

.hero-badge-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  border-radius: 50%;
  flex-shrink: 0;
  width: clamp(88px, 22vw, 128px);
  height: clamp(88px, 22vw, 128px);
  background: #fff;
  box-shadow: 0 0 0 2px #E91E8C, 0 0 0 4px rgba(126,60,146,0.3), 0 4px 16px rgba(126,60,146,0.15);
}
.hero-badge-circle svg { color: #C4197A; }
.hero-badge-circle span {
  font-weight: 900;
  color: #1f2937;
  line-height: 1.2;
  padding: 0 4px;
  font-size: clamp(9px, 2.2vw, 12px);
}

/* Hero right (PC) */
.hero-right {
  display: none;
  position: relative;
}
@media (min-width: 1024px) { .hero-right { display: block; } }

.hero-right-glow {
  position: absolute;
  inset: -24px;
  border-radius: 48px;
  opacity: 0.25;
  filter: blur(48px);
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 50%, #5B2D8E 100%);
}
.hero-right-photo {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(126,60,146,0.25);
}
.hero-right-photo img {
  width: 100%;
  object-fit: cover;
  height: clamp(360px, 48vw, 620px);
}
.hero-right-photo .photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(91,45,142,0.65) 0%, rgba(91,45,142,0.1) 45%, transparent 65%);
}
.hero-right-photo .photo-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.hero-right-photo .photo-badge-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.photo-badge-avatars {
  display: flex;
}
.photo-badge-avatars img, .photo-badge-plus {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.photo-badge-avatars img:first-child { margin-left: 0; }
.photo-badge-plus {
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 900;
}
.photo-badge-text .t1 { font-size: 0.875rem; font-weight: 900; color: #111; }
.photo-badge-text .t2 { font-size: 0.75rem; color: #6b7280; margin-top: 2px; }

/* Floating cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.float-card.top-right {
  right: -16px; top: 48px;
  box-shadow: 0 8px 32px rgba(233,30,140,0.15);
  animation: float 4s ease-in-out infinite;
}
.float-card.bottom-left {
  left: -16px; bottom: 112px;
  box-shadow: 0 8px 32px rgba(126,60,146,0.15);
  animation: float-slow 6s ease-in-out infinite;
}
.float-card .fc-label { font-size: 0.625rem; color: #374151; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 4px; }
.float-card .fc-value {
  font-size: 1.875rem; font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.float-card .fc-value.dark { background: none; -webkit-text-fill-color: #111; color: #111; }
.float-card .fc-note { font-size: 0.625rem; color: #374151; margin-top: 4px; }
.float-card .fc-note.pink { font-size: 0.75rem; font-weight: 900; color: #E91E8C; }

/* Dot grid */
.dot-grid {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 128px; height: 128px;
  opacity: 0.2;
  pointer-events: none;
  background-image: radial-gradient(circle, #7E3C92 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

/* Scroll indicator */
.scroll-indicator {
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span { font-size: 0.625rem; color: #9ca3af; letter-spacing: 0.25em; font-weight: 700; text-transform: uppercase; }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(233,30,140,0.5), transparent);
  animation: float 1.5s ease-in-out infinite;
}

/* ===========================
   Campaign Banner
   =========================== */
@keyframes banner-entrance {
  0%   {
    opacity: 0;
    transform: perspective(900px) rotateX(18deg) rotateZ(-2deg) translateY(48px) scale(0.92);
    filter: blur(5px);
  }
  65%  {
    opacity: 1;
    transform: perspective(900px) rotateX(-3deg) rotateZ(0.5deg) translateY(-4px) scale(1.02);
    filter: blur(0);
  }
  82%  {
    transform: perspective(900px) rotateX(1deg) rotateZ(0deg) translateY(2px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: perspective(900px) rotateX(0deg) rotateZ(0deg) translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes banner-glow {
  0%, 100% { box-shadow: 0 8px 32px rgba(194,24,91,0.18), inset 0 0 0 0 transparent; }
  50%       { box-shadow: 0 16px 56px rgba(123,31,162,0.30), 0 0 24px 2px rgba(194,24,91,0.12); }
}

.campaign-banner-section {
  padding: 40px 0;
  background: #fff;
}
.campaign-banner-link {
  display: block;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
}
.campaign-banner-link.visible {
  animation: banner-entrance 0.8s cubic-bezier(0.34, 1.46, 0.64, 1) 0.3s both,
             banner-glow 2.6s ease-in-out 1.1s infinite;
}
.campaign-banner-inner {
  transition: opacity 0.3s ease;
}
.campaign-banner-link:hover .campaign-banner-inner {
  opacity: 0.75;
}
.campaign-banner-link:active .campaign-banner-inner {
  opacity: 0.6;
}
.campaign-banner-img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .campaign-banner-section {
    padding: 28px 0;
  }
  .campaign-banner-link {
    border-radius: 12px;
  }
}

/* ===========================
   Pain Points
   =========================== */
.pain-section {
  padding: 52px 0;
  background: #f9f9fb;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .pain-section { padding: 128px 0; } }

.pain-orb {
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(60px);
  pointer-events: none;
  background: radial-gradient(circle, #E91E8C 0%, transparent 70%);
}

.pain-grid {
  display: grid;
  gap: 48px;
  align-items: start;
}
@media (min-width: 1024px) { .pain-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }

.pain-h2 { margin-top: 16px; font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; color: #111; line-height: 1.3; }

.pain-list { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}
.pain-icon {
  margin-top: 2px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #6b7280;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}
.pain-item p { font-size: 0.875rem; color: #374151; font-weight: 500; line-height: 1.75; }
@media (min-width: 640px) { .pain-item p { font-size: 1rem; } }

.pain-bubble {
  margin-top: 40px;
  position: relative;
}
.pain-bubble-arrow {
  position: absolute;
  top: -12px; left: 32px;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 14px solid #E91E8C;
}
.pain-bubble-body {
  border-radius: 20px;
  padding: 28px 32px;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  box-shadow: 0 12px 48px rgba(233,30,140,0.35);
}
.pain-bubble-body p {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media (min-width: 1024px) {
  .pain-bubble-body p { font-size: 1.15rem; }
}
.pain-bubble-body .highlight {
  color: #fef08a;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.pain-photo { position: relative; }
.pain-photo-glow {
  position: absolute; inset: -12px;
  border-radius: 24px;
  opacity: 0.2;
  filter: blur(20px);
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
}
.pain-photo img { position: relative; width: 100%; border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

/* ===========================
   Reasons
   =========================== */
.reasons-section { padding: 48px 0 64px; background: #fff; }
@media (min-width: 1024px) { .reasons-section { padding: 96px 0; } }

.reasons-h2 { margin-top: 16px; font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; color: #111; text-align: center; }

.reasons-list { margin-top: 16px; }
.reason-item {
  padding: 32px 0;
  border-top: 1px solid #f3f4f6;
}
@media (min-width: 1024px) {
  .reason-item { padding: 56px 0; }
}
.reason-item:first-child { border-top: none; }

.reason-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) { .reason-grid { grid-template-columns: 1fr 1fr; gap: 96px; } }

.reason-photo {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(126,60,146,0.18);
}
.reason-photo img {
  width: 100%;
  height: 256px;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.reason-photo:hover img { transform: scale(1.05); }
@media (min-width: 640px) { .reason-photo img { height: 320px; } }
@media (min-width: 1024px) { .reason-photo img { height: 420px; } }

.reason-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(91,45,142,0.4) 0%, rgba(233,30,140,0.1) 50%, transparent 70%);
}
.reason-number-overlay {
  position: absolute; bottom: -16px; left: -8px;
  font-weight: 900; line-height: 1;
  color: #fff;
  opacity: 0.18;
  font-size: clamp(6rem, 15vw, 12rem);
  user-select: none;
}
.reason-tag {
  position: absolute; top: 20px; right: 20px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
}

.reason-text .number {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (min-width: 1024px) { .reason-text .number { font-size: 4.5rem; } }
.reason-text h3 { font-size: 1.5rem; font-weight: 900; color: #111; line-height: 1.3; }
@media (min-width: 640px) { .reason-text h3 { font-size: 1.875rem; } }
@media (min-width: 1024px) { .reason-text h3 { font-size: 2.25rem; } }
.reason-text .subtitle { margin-top: 12px; font-size: 1rem; font-weight: 700; }
.reason-text p { margin-top: 20px; font-size: 1rem; color: #4b5563; line-height: 1.75; }

/* Alternating layout */
@media (min-width: 1024px) {
  .reason-item:nth-child(even) .reason-photo { order: 2; }
  .reason-item:nth-child(even) .reason-text { order: 1; }
}

/* ===========================
   Contents
   =========================== */
.contents-section {
  padding: 52px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1025 0%, #0f0f18 40%, #14101e 100%);
}
@media (min-width: 1024px) { .contents-section { padding: 128px 0; } }

.contents-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,30,140,0.4), transparent);
}
.contents-bottom-line {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126,60,146,0.4), transparent);
}
.contents-orb1 {
  position: absolute; top: -200px; right: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.contents-orb2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,60,146,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.contents-inner { position: relative; z-index: 10; }

.contents-label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  background: rgba(233,30,140,0.12);
  color: #E91E8C;
  border: 1px solid rgba(233,30,140,0.25);
}
.contents-h2 { font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; color: #fff; }
.contents-sub {
  margin-top: 16px;
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contents-grid {
  margin-top: 48px;
  display: grid;
  gap: 16px;
}
@media (min-width: 640px) { .contents-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contents-grid { gap: 20px; } }

.content-card {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
  transform: translateY(-4px);
  position: relative;
}

.content-card-img {
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  min-height: 192px;
}
@media (min-width: 640px) { .content-card-img { min-height: 208px; } }
/* When a video is embedded, fix height and center-crop */
.content-card-img:has(video) {
  min-height: 0;
  height: 234px;
  display: block;
  gap: 0;
  overflow: hidden;
  position: relative;
}
@media (min-width: 640px) { .content-card-img:has(video) { height: 310px; } }
.content-card-img .icon { opacity: 0.35; font-size: 2.25rem; }
.content-card-img .placeholder-text { font-size: 0.75rem; font-weight: 500; color: rgba(255,255,255,0.3); }
.content-card-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.content-card-body { padding: 24px; }
.content-card-body .inner { display: flex; gap: 16px; align-items: flex-start; }
.content-num {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}
.content-card-body h3 { font-size: 0.9rem; font-weight: 900; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.content-card-body p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

.content-card-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  opacity: 1;
}

/* ===========================
   Community (交流)
   =========================== */
.community-section {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(233,30,140,0.10) 0%, transparent 45%),
    radial-gradient(circle at 85% 90%, rgba(126,60,146,0.08) 0%, transparent 45%),
    linear-gradient(165deg, #fff5fa 0%, #fdf7ff 50%, #fff0f8 100%);
}
@media (min-width: 1024px) { .community-section { padding: 140px 0; } }

.community-orb1 {
  position: absolute; top: -150px; left: -80px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.18) 0%, transparent 70%);
  pointer-events: none; filter: blur(12px);
}
.community-orb2 {
  position: absolute; bottom: -180px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(126,60,146,0.18) 0%, transparent 70%);
  pointer-events: none; filter: blur(12px);
}

.community-inner { position: relative; z-index: 10; }

.community-label {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 16px;
  background: #fff;
  color: #E91E8C;
  border: 1px solid rgba(233,30,140,0.35);
  box-shadow: 0 6px 20px rgba(233,30,140,0.18);
}
.community-h2 {
  font-size: clamp(1.75rem, 5.2vw, 3rem);
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.3;
}
.community-sub {
  margin-top: 18px;
  font-size: 1rem;
  color: #4b5563;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}
.community-sub strong {
  color: #1a1a2e;
  background: linear-gradient(transparent 62%, rgba(233,30,140,0.28) 62%);
  padding: 0 2px;
}

.community-chips {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.community-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a2e;
  background: #fff;
  border: 1px solid rgba(233,30,140,0.25);
  box-shadow: 0 4px 14px rgba(233,30,140,0.10);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
@media (min-width: 1024px) {
  .community-chip { padding: 12px 22px; font-size: 0.95rem; }
}

.community-media {
  margin: 40px auto 0;
  max-width: 880px;
}
.community-media-frame {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(233,30,140,0.7), rgba(192,67,154,0.7) 50%, rgba(126,60,146,0.7));
  box-shadow: 0 20px 50px rgba(233,30,140,0.18), 0 0 60px rgba(233,30,140,0.12);
}
.community-media-glow {
  position: absolute; inset: -2px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(233,30,140,0.35), rgba(126,60,146,0.35));
  filter: blur(24px); opacity: 0.5;
  z-index: -1;
}
.community-media-inner {
  border-radius: 18px;
  background: linear-gradient(160deg, #ffffff 0%, #fff5fa 100%);
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.community-media-inner:has(video) {
  aspect-ratio: auto;
  display: block;
  gap: 0;
}
.community-media-icon { color: #E91E8C; opacity: 0.65; }
.community-media-inner .placeholder-text {
  font-size: 0.8rem; font-weight: 500; color: #9ca3af;
  padding: 0 24px; text-align: center;
}
.community-media-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.community-body {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
}
.community-text {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.95;
  margin-bottom: 18px;
}
.community-text strong {
  color: #1a1a2e;
  font-weight: 800;
}
@media (min-width: 1024px) {
  .community-text { font-size: 1.0625rem; }
}

.community-highlight {
  margin-top: 36px;
  padding: 28px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff 0%, #fff5fa 100%);
  border: 1px solid rgba(233,30,140,0.3);
  box-shadow: 0 12px 32px rgba(233,30,140,0.12);
  position: relative;
  text-align: center;
}
.community-highlight-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #E91E8C, #7E3C92);
  color: #fff;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(233,30,140,0.4);
}
.community-highlight p {
  font-size: 0.95rem;
  color: #1a1a2e;
  line-height: 1.9;
  font-weight: 500;
}
.community-highlight p strong {
  background: linear-gradient(135deg, #E91E8C, #7E3C92);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}
@media (min-width: 1024px) {
  .community-highlight { padding: 36px 32px; }
  .community-highlight p { font-size: 1.05rem; }
}

/* ===========================
   Testimonials
   =========================== */
.testimonials-section {
  padding: 52px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .testimonials-section { padding: 128px 0; } }

.testimonials-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(233,30,140,0.03) 0%, rgba(126,60,146,0.05) 50%, rgba(91,45,142,0.03) 100%);
  pointer-events: none;
}

.testi-h2 { margin-top: 16px; font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; color: #111; }
.testi-sub { margin-top: 16px; font-size: 1rem; color: #6b7280; }

.testi-grid {
  margin-top: 48px;
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .testi-grid { gap: 32px; } }

.testi-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) { .testi-card { padding: 32px; } }

.testi-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(233,30,140,0.1) 0%, rgba(126,60,146,0.1) 100%);
  color: #E91E8C;
}
.testi-quote { font-size: 0.875rem; color: #374151; line-height: 1.75; flex: 1; }
@media (min-width: 640px) { .testi-quote { font-size: 1rem; } }
.testi-author {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  outline: 2px solid rgba(233,30,140,0.2);
  outline-offset: 2px;
}
.testi-author .name { font-size: 0.875rem; font-weight: 700; color: #111; }
.testi-author .role { font-size: 0.75rem; color: #6b7280; }
.testi-note { margin-top: 32px; text-align: center; font-size: 0.75rem; color: #1a1a2e; }

/* ===========================
   Team
   =========================== */
.team-section { padding: 52px 0; background: #fff; }
@media (min-width: 1024px) { .team-section { padding: 128px 0; } }

.team-story {
  margin-bottom: 56px;
  text-align: center;
}
@media (min-width: 1024px) { .team-story { margin-bottom: 80px; } }

.team-h2 { margin-top: 16px; font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; color: #111; line-height: 1.3; white-space: nowrap; margin-bottom: 24px; }
.team-story p { font-size: 1rem; color: #4b5563; line-height: 1.9; text-align: left; max-width: 640px; margin: 0 auto; }
@media (min-width: 1024px) { .team-story p { font-size: 1.125rem; } }

/* Team profile — designed card */
.team-profile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 64px 28px 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #fdf4fa 50%, #f7ecff 100%);
  border: 1px solid rgba(233,30,140,0.12);
  box-shadow: 0 24px 64px rgba(126,60,146,0.15);
  overflow: hidden;
}
@media (min-width: 768px) {
  .team-profile {
    flex-direction: row;
    align-items: center;
    gap: 48px;
    padding: 56px 56px 56px 48px;
  }
}

/* Decorative background blob */
.team-profile-bg {
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(233,30,140,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.team-profile-dots {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 180px; height: 180px;
  background-image: radial-gradient(circle, rgba(126,60,146,0.25) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
}

.team-profile-label {
  position: absolute;
  top: 20px; left: 24px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.3em;
  color: #E91E8C;
  padding: 6px 14px;
  border-radius: 9999px;
  background: rgba(233,30,140,0.08);
  border: 1px solid rgba(233,30,140,0.2);
}

/* Photo */
.team-photo-wrap {
  flex-shrink: 0;
  position: relative;
  width: 180px;
  z-index: 1;
}
@media (min-width: 1024px) { .team-photo-wrap { width: 220px; } }

.team-photo-glow {
  position: absolute; inset: -14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 50%, #5B2D8E 100%);
  opacity: 0.35;
  filter: blur(18px);
}
.team-photo-ring {
  position: absolute; inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 100%);
  z-index: 0;
}
.team-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 8px 28px rgba(233,30,140,0.25);
  border: 2px solid #fff;
}

/* Bio */
.team-bio {
  position: relative;
  z-index: 1;
  max-width: 520px;
  text-align: center;
}
@media (min-width: 768px) { .team-bio { text-align: left; } }

.team-bio-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #E91E8C;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.team-bio-name {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .team-bio-name { flex-direction: row; align-items: baseline; gap: 14px; }
}
.team-bio-name .jp {
  font-size: 1.35rem;
  font-weight: 500;
  color: #111;
  line-height: 1.2;
}
.team-bio-name .en {
  font-size: 0.85rem;
  font-weight: 500;
  color: #9ca3af;
  letter-spacing: 0.08em;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
  justify-content: center;
}
@media (min-width: 768px) { .team-tags { justify-content: flex-start; } }
.team-tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #7E3C92;
  background: rgba(126,60,146,0.08);
  border: 1px solid rgba(126,60,146,0.15);
}

.team-bio-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 0;
}

/* ===========================
   Pricing
   =========================== */
.pricing-section {
  padding: 52px 0 48px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .pricing-section { padding: 64px 0; } }

.pricing-orb1 {
  position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(60px);
  background: radial-gradient(circle, #E91E8C 0%, transparent 70%);
}
.pricing-orb2 {
  position: absolute; bottom: -50px; right: -50px;
  width: 300px; height: 300px;
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(60px);
  background: radial-gradient(circle, #7E3C92 0%, transparent 70%);
}

.pricing-h2 { margin-top: 16px; font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; color: #111; }

.pricing-card-wrap {
  max-width: 512px;
  margin: 48px auto 0;
  position: relative;
  z-index: 10;
}

.pricing-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(233,30,140,0.18);
}

.pricing-card-header {
  padding: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E91E8C 0%, #A0319F 50%, #5B2D8E 100%);
}
@media (min-width: 1024px) { .pricing-card-header { padding: 40px; } }
.pricing-card-header .deco1 {
  position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.pricing-card-header .deco2 {
  position: absolute; bottom: -30px; left: -30px;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.pricing-amount {
  position: relative; z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pricing-amount .num { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; }
@media (min-width: 640px)  { .pricing-amount .num { font-size: 4.5rem; } }
@media (min-width: 1024px) { .pricing-amount .num { font-size: 5rem; } }
.pricing-amount .unit { font-size: 1rem; color: rgba(255,255,255,0.8); font-weight: 500; }
@media (min-width: 640px) { .pricing-amount .unit { font-size: 1.25rem; } }
.pricing-plan-label { position: relative; z-index: 1; margin-top: 8px; font-size: 0.875rem; color: rgba(255,255,255,0.7); font-weight: 500; }

.pricing-card-body { padding: 32px; background: #fff; }
@media (min-width: 1024px) { .pricing-card-body { padding: 40px; } }

.pricing-zeros {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-zero {
  flex: 1;
  text-align: center;
  padding: 14px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(233,30,140,0.06) 0%, rgba(126,60,146,0.06) 100%);
}
.pricing-zero .label { font-size: 0.75rem; color: #6b7280; font-weight: 500; }
.pricing-zero .value { font-size: 1.5rem; font-weight: 900; }
.pricing-zero .yen { font-size: 0.875rem; font-weight: 400; }

.pricing-features { display: flex; flex-direction: column; gap: 14px; }
.pricing-feature { display: flex; align-items: center; gap: 12px; }
.pricing-feature .check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #E91E8C;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
}
.pricing-feature span { font-size: 0.875rem; color: #374151; font-weight: 500; }

.pricing-cta { margin-top: 32px; }
.pricing-cta .btn-primary { width: 100%; padding: 24px; font-size: 1.125rem; font-weight: 900; }
@media (max-width: 1023px) {
  .pricing-cta .btn-primary { padding: 22px 24px; font-size: 1.05rem; }
  .pricing-cta .btn-prefix { display: none; }
}
.pricing-footer-note { margin-top: 16px; text-align: center; font-size: 0.75rem; color: #1a1a2e; font-weight: 500; }

/* ===========================
   FAQ
   =========================== */
.faq-section {
  padding: 40px 0 52px;
  background: #f9f9fb;
}
@media (min-width: 1024px) { .faq-section { padding: 64px 0 96px; } }

.faq-h2 { margin-top: 16px; font-size: clamp(1.75rem, 5vw, 3rem); font-weight: 900; color: #111; }

.faq-list {
  margin-top: 48px;
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
@media (min-width: 1024px) { .faq-list { padding: 32px; } }

.faq-item { border-bottom: 1px solid #f3f4f6; }
.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
}
@media (min-width: 1024px) { .faq-trigger { padding: 24px 0; } }

.faq-trigger .q-inner { display: flex; align-items: flex-start; gap: 16px; }
.faq-trigger .q-num { font-size: 0.875rem; font-weight: 900; flex-shrink: 0; }
.faq-trigger .q-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.6;
  transition: color 0.2s;
}
@media (min-width: 640px) { .faq-trigger .q-text { font-size: 1rem; } }
.faq-trigger:hover .q-text { color: #7E3C92; }

.faq-chevron {
  flex-shrink: 0;
  margin-left: 16px;
  color: #9ca3af;
  transition: transform 0.25s ease;
  font-size: 1.1rem;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  overflow: hidden;
  padding: 0 0 0 40px;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer-inner {
  padding-bottom: 20px;
}
.faq-answer p { font-size: 0.875rem; color: #4b5563; line-height: 1.75; }

/* ===========================
   Closing
   =========================== */
.closing-section {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #E91E8C 0%, #7E3C92 50%, #5B2D8E 100%);
}
@media (min-width: 1024px) { .closing-section { padding: 144px 0; } }

.closing-orb1 {
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
}
.closing-orb2 {
  position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.closing-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}
.closing-h2 { font-size: clamp(2rem, 6vw, 3.75rem); font-weight: 900; color: #fff; line-height: 1.3; }
.closing-body {
  margin-top: 24px;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
}
@media (min-width: 640px) { .closing-body { font-size: 1.125rem; } }
.closing-sub {
  margin-top: 20px;
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
}
@media (min-width: 640px) { .closing-sub { font-size: 1.5rem; } }

.closing-btn {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 48px;
  font-size: 1.25rem;
  font-weight: 900;
  border-radius: 9999px;
  background: #fff;
  color: #7E3C92;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: inherit;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .closing-btn {
    width: 100%;
    padding: 22px 24px;
    font-size: 1.05rem;
    animation: btn-pulse 2.8s ease-in-out infinite;
  }
}
.closing-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}
.closing-note { margin-top: 16px; font-size: 0.875rem; color: rgba(255,255,255,0.6); font-weight: 500; }

/* ===========================
   Footer
   =========================== */
.footer {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid #f3f4f6;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media (min-width: 640px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}
.footer-logo img { height: 32px; width: auto; }
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a, .footer-links span { font-size: 0.75rem; color: #9ca3af; }
.footer-links a:hover { color: #7E3C92; }
.footer-sep { color: #d1d5db; }

/* ===========================
   Responsive helpers
   =========================== */
@media (max-width: 1023px) {
  .hero-right { display: none !important; }
  /* Body bottom padding so content isn't hidden by the CTA bar */
  body { padding-bottom: 100px; }
}

/* ===========================
   Mobile Bottom CTA Bar
   =========================== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px 20px 36px;
  pointer-events: none;
  /* ふわっと表示のためのフェードイン制御 */
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.mobile-cta-bar.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1023px) {
  .mobile-cta-bar { display: block; }
}

/* 多層ブラーグラデーション: 上=弱ボケ、下=強ボケ */
.mobile-cta-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  /* 上から下へ: 透明→半透明白→濃い白 */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,255,255,0.55) 38%,
    rgba(255,255,255,0.88) 65%,
    rgba(255,255,255,0.97) 100%
  );
  /* mask で backdrop-filter の効果範囲も上=弱・下=強に */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, black 60%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 30%, black 60%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}

.mobile-cta-bar .btn-primary {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 24px;
  font-size: 1.05rem;
  pointer-events: auto;
  animation: btn-pulse 2.8s ease-in-out infinite;
}

/* ==============================================
   SOCIAL PROOF TICKER
   ============================================== */

.ticker-section {
  padding: 0;
  background: linear-gradient(90deg, #E91E8C 0%, #A0319F 50%, #5B2D8E 100%);
  overflow: hidden;
}

.ticker-section .ticker-wrap {
  position: relative;
  padding: 16px 0;
  margin-top: 0 !important;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}
@media (min-width: 1024px) {
  .ticker-section .ticker-wrap { padding: 24px 0; }
}

.ticker-section .ticker-track {
  display: flex;
  gap: 16px;
  width: max-content;
  white-space: normal;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-section .ticker-track:hover {
  animation-play-state: paused;
}

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

.ticker-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s;
}

.ticker-card:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
}

/* 顔写真 */
.ticker-face {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(126,60,146,0.15);
}

/* イニシャルアバター */
.ticker-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E91E8C 0%, #5B2D8E 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* テキスト列 */
.ticker-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6px;
  overflow: hidden;
}

.ticker-quote {
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  margin: 0;
  word-break: break-all;
  overflow-wrap: break-word;
}

.ticker-name {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

.ticker-card--placeholder {
  opacity: 0.45;
  border-style: dashed;
}
.ticker-quote--placeholder {
  color: rgba(255,255,255,0.6) !important;
  font-style: italic;
}

/* ============================
   Video media replacements
   (hero / pain / reasons)
   ============================ */
.hero-mobile-img .hero-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.hero-right-photo {
  height: clamp(480px, 46vw, 640px);
}
.hero-right-photo .hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pain-photo .pain-media {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 9;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
@media (min-width: 1024px) {
  .pain-photo .pain-media { aspect-ratio: 3 / 4; }
}
.reason-photo .reason-media {
  width: 100%;
  height: 256px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
@media (min-width: 640px) {
  .reason-photo .reason-media { height: 320px; }
}
@media (min-width: 1024px) {
  .reason-photo .reason-media { height: 420px; }
}
