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

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.8;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== Variables ===== */
:root {
  --purple: #7b5ea7;
  --purple-light: #9b7ec8;
  --pink: #e8a0b0;
  --pink-light: #f5d0da;
  --green: #7aab8a;
  --gold: #c4a35a;
  --bg-cream: #fdf9f5;
  --bg-lavender: #f3eef9;
  --text-dark: #3a3a3a;
  --text-mid: #666;
  --section-pad: 80px 20px;
}

/* ===== Header ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 12px rgba(123,94,167,0.10);
  z-index: 1000;
  padding: 0 30px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 50px;
  width: auto;
}

/* ===== Navigation ===== */
nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li { position: relative; }

nav ul li a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

nav ul li a:hover { color: var(--purple); }

.nav-cta {
  background: var(--purple);
  color: #fff !important;
  border-radius: 50px;
  padding: 7px 18px !important;
  font-size: 12px !important;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--purple-light) !important;
  color: #fff !important;
  transform: translateY(-1px);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  border-radius: 6px;
  overflow: hidden;
  z-index: 100;
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu li a {
  padding: 10px 18px;
  font-size: 13px;
  border-bottom: 1px solid #f0e8f5;
}

.dropdown-menu li a:hover { background: var(--bg-lavender); color: var(--purple); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
  margin-top: 70px;
  position: relative;
  height: calc(100vh - 70px);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-image: image-set(url('../images/hero-bg.webp') 1x, url('../images/hero-bg.jpg') 1x);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 30, 0.35) 0%,
    rgba(10, 8, 30, 0.20) 50%,
    rgba(10, 8, 30, 0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 20px;
}

.hero-content .en-catch {
  font-size: clamp(22px, 4vw, 42px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  margin-bottom: 18px;
}

.hero-content .ja-catch {
  font-size: clamp(15px, 2.2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 36px;
}

.hero-content .hero-sub {
  font-size: 24px;
  opacity: 0.85;
  letter-spacing: 0.06em;
}

.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: var(--purple);
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 0.1em;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(123,94,167,0.35);
}

.btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 11px 32px;
  border: 2px solid var(--purple);
  color: var(--purple);
  border-radius: 50px;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: all 0.3s;
}

.btn-outline:hover { background: var(--purple); color: #fff; }

/* ===== Section Common ===== */
section { padding: var(--section-pad); }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(22px, 3vw, 32px);
  color: var(--purple);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-title .en {
  display: block;
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ===== NEWS Section ===== */
.news { background: var(--bg-cream); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 18px rgba(123,94,167,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(123,94,167,0.18); }

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-body { padding: 18px; }

.news-card-date {
  font-size: 12px;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.news-card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
}

/* ===== Content Sections (alternating) ===== */
.content-section { background: #fff; }
.content-section.alt { background: var(--bg-lavender); }

.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.content-block.reverse { direction: rtl; }
.content-block.reverse > * { direction: ltr; }

.content-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.content-text h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}

.content-text h2 .en {
  display: block;
  font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
}

.content-text p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 14px;
}

.content-text .tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--purple);
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  margin: 0 4px 8px 0;
}

.content-text .cta { margin-top: 28px; }

/* ===== School Section ===== */
.school {
  background: linear-gradient(180deg, #0d0b24 0%, #1a1040 60%, #2a1a5e 100%);
  position: relative;
  overflow: hidden;
}

.school::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(155, 126, 200, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(100, 60, 180, 0.10) 0%, transparent 50%);
  pointer-events: none;
}

.school-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.school-inner img {
  width: 260px;
  margin: 0 auto 30px;
}

.school-inner h2 {
  font-size: 28px;
  color: #e8daf8;
  margin-bottom: 20px;
}

.school-inner p {
  color: rgba(220, 210, 240, 0.82);
  font-size: 15px;
  line-height: 1.9;
  max-width: 680px;
  margin: 0 auto 30px;
}

.school .divider {
  color: #c9a8e8;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.about-cta-btns .btn-primary,
.about-cta-btns .btn-outline {
  margin-top: 0;
  padding: 14px 40px;
}

.school .btn-outline {
  border-color: rgba(200, 170, 240, 0.6);
  color: #e8daf8;
}

.school .btn-outline:hover {
  background: rgba(200, 170, 240, 0.15);
  color: #fff;
}

.school .btn-primary {
  background: rgba(123, 94, 167, 0.85);
  border: 1px solid rgba(200, 170, 240, 0.4);
  backdrop-filter: blur(4px);
}

/* ===== Pendulum Section ===== */
.pendulum { background: var(--bg-lavender); }

.pendulum-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pendulum-img img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.pendulum-text h2 {
  font-size: 26px;
  color: var(--purple);
  margin-bottom: 18px;
}

.pendulum-text .course-level {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.course-level-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(123,94,167,0.08);
}

.course-level-item .level-badge {
  background: var(--purple);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.course-level-item .level-name {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

/* ===== Instagram Section ===== */
.instagram { background: #fff; }

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--purple-light);
  transition: opacity 0.3s;
}

.instagram-item:hover { opacity: 0.85; }

.instagram-follow {
  text-align: center;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.instagram-follow img { width: 24px; }
.instagram-follow a {
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
}

/* ===== Instructors Section ===== */
.instructors { background: var(--bg-cream); }

.instructors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.instructor-card {
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 4px 24px rgba(123,94,167,0.10);
  transition: transform 0.3s;
}

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

.instructor-card img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--pink-light);
}

.instructor-card h3 {
  font-size: 22px;
  color: var(--purple);
  margin-bottom: 8px;
}

.instructor-card .role {
  font-size: 12px;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.instructor-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===== Footer Banner ===== */
.footer-banner {
  background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 100%);
  padding: 22px 20px;
  text-align: center;
}

.footer-banner p {
  color: #fff;
  font-size: clamp(13px, 1.6vw, 16px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

/* ===== Footer ===== */
footer {
  background: var(--purple);
  color: rgba(255,255,255,0.85);
  padding: 60px 20px 30px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 16px;
  opacity: 0.9;
}

.footer-logo p {
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.7;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-nav h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: #fff;
}

.footer-nav ul li a {
  font-size: 12px;
  opacity: 0.75;
  transition: opacity 0.2s;
  line-height: 2;
  display: block;
}

.footer-nav ul li a:hover { opacity: 1; }

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-sns-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}

.footer-sns-icon:hover { opacity: 0.82; transform: translateY(-3px); }

.footer-sns-icon--youtube   { background: #ff0000; }
.footer-sns-icon--tiktok    { background: #010101; }
.footer-sns-icon--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.footer-sns-icon--line      { background: #06c755; font-size: 13px; font-weight: 700; letter-spacing: 0; }
.footer-sns-icon--instagram svg { display: block; }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .legal a {
  font-size: 12px;
  opacity: 0.7;
  margin-right: 20px;
  transition: opacity 0.2s;
}

.footer-bottom .legal a:hover { opacity: 1; }

.footer-bottom .copyright { font-size: 12px; opacity: 0.6; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(160deg, #0d0b24 0%, #2a1a5e 55%, #1a0e3a 100%);
  padding: 140px 20px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(155,126,200,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(100,60,180,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-en {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: rgba(200,170,240,0.75);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(26px, 4vw, 40px);
  color: #e8daf8;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 20px rgba(100,60,180,0.4);
}

/* ===== Services Overview ===== */
.services-overview { background: #fff; }

.section-subtitle {
  font-size: 13px;
  color: var(--text-mid);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 2px 0 rgba(123,94,167,0.15), 0 6px 24px rgba(123,94,167,0.09);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple) 0%, #c9a8e8 100%);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 2px 0 rgba(123,94,167,0.2), 0 16px 36px rgba(123,94,167,0.17);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 16px;
}

.service-price {
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.service-link {
  display: inline-block;
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(123,94,167,0.3);
  padding-bottom: 1px;
}

.service-card--soon {
  opacity: 0.72;
  cursor: default;
}

.service-card--soon:hover {
  transform: none;
  box-shadow: 0 2px 0 rgba(123,94,167,0.15), 0 6px 24px rgba(123,94,167,0.09);
}

.service-price--soon {
  font-size: 14px !important;
  color: var(--text-mid) !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===== FAQ ===== */
.faq { background: var(--bg-lavender); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(123,94,167,0.08);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--purple-light);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--purple);
  border-bottom: 1px solid #e8e0f0;
}

.faq-answer {
  padding: 18px 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

/* ===== Approach Cards ===== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.approach-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 28px 36px;
  text-align: center;
  box-shadow: 0 2px 0 rgba(123,94,167,0.15), 0 8px 28px rgba(123,94,167,0.09);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple) 0%, #c9a8e8 100%);
}

.approach-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 2px 0 rgba(123,94,167,0.2), 0 18px 38px rgba(123,94,167,0.16);
}

.approach-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--purple-light);
  margin-bottom: 14px;
  font-family: 'Cormorant Garamond', serif;
}

.approach-icon {
  font-size: 38px;
  margin-bottom: 18px;
  line-height: 1;
}

.approach-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 12px;
  line-height: 1.5;
}

.approach-card h3::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), transparent);
  margin: 8px auto 0;
  border-radius: 2px;
}

.approach-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.85;
}

@media (max-width: 768px) {
  .approach-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===== Consultation Section ===== */
.consultation-section {
  background:
    radial-gradient(circle, rgba(155, 126, 200, 0.10) 1px, transparent 1px),
    linear-gradient(160deg, #f9f6fd 0%, #ede4f8 55%, #f9f6fd 100%);
  background-size: 28px 28px, 100% 100%;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 780px;
  margin: 0 auto 48px;
}

.consultation-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 2px 16px rgba(123,94,167,0.08);
  border-left: 3px solid var(--purple-light);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.consultation-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(123,94,167,0.14);
  border-left-color: var(--purple);
}

.consultation-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

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

@media (max-width: 640px) {
  .consultation-grid { grid-template-columns: 1fr; }
}

/* ===== Pricing Section ===== */
.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px 36px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(123,94,167,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.pricing-card--featured {
  background: linear-gradient(145deg, var(--purple) 0%, #5a3d85 100%);
  box-shadow: 0 8px 32px rgba(123,94,167,0.35);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
  margin-top: 8px;
}

.pricing-card--featured .pricing-label {
  color: rgba(255,255,255,0.75);
}

.pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  line-height: 1;
}

.pricing-card--featured .pricing-price {
  color: #fff;
}

.pricing-features {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid #f0eaf8;
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✦';
  position: absolute;
  left: 0;
  font-size: 9px;
  color: var(--purple-light);
  top: 9px;
}

.pricing-card--featured .pricing-features li {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-card--featured .pricing-features li::before {
  color: rgba(255,255,255,0.6);
}

.pricing-card .btn-outline {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing-card--featured .btn-primary {
  width: 100%;
  text-align: center;
  background: #fff;
  color: var(--purple);
  margin-top: auto;
}

.pricing-card--featured .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ===== Healing Section ===== */
.healing-section { background: var(--bg-cream); }

.healing-intro {
  text-align: center;
  font-size: 15px;
  color: var(--text-mid);
  margin-bottom: 40px;
}

.healing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.healing-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(123,94,167,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}

.healing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(123,94,167,0.18);
}

.healing-card-icon {
  font-size: 36px;
  margin-bottom: 18px;
  line-height: 1;
}

.healing-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 14px;
  line-height: 1.5;
}

.healing-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

.healing-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .healing-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===== Media / SNS Section ===== */
.media-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-lavender);
  border-radius: 16px;
  padding: 36px 24px 28px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: inherit;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(123,94,167,0.18);
}

.media-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  color: #fff;
}

.media-icon--youtube  { background: #ff0000; }
.media-icon--tiktok   { background: #010101; }
.media-icon--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.media-icon--instagram img { width: 32px; filter: brightness(0) invert(1); }

.media-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 8px;
}

.media-desc {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .media-links { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(160deg, #f9f6fd 0%, #ede4f8 50%, #f9f6fd 100%);
  padding: var(--section-pad);
}

.contact-layout {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.5;
}

.contact-info > p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 32px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 2px 12px rgba(123,94,167,0.08);
  border-left: 3px solid var(--purple-light);
}

.contact-info-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
}

.contact-info-list li div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-list li strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.contact-info-list li span {
  font-size: 12px;
  color: var(--text-mid);
}

.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 32px rgba(123,94,167,0.10);
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-alert {
  max-width: 700px;
  margin: 0 auto 36px;
  padding: 16px 24px;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.7;
}
.contact-alert ul { list-style: disc; padding-left: 20px; }
.contact-alert--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.contact-alert--error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #f48fb1;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ===== Legal Pages (Privacy / Tokusho) ===== */
.legal-section {
  background: #fff;
  padding: var(--section-pad);
}

.legal-inner {
  max-width: 860px;
  margin: 0 auto;
}

.legal-intro {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 40px;
  font-size: 15px;
}

.legal-block {
  margin-bottom: 40px;
}

.legal-block h2 {
  font-size: 18px;
  color: var(--purple);
  font-weight: 700;
  border-left: 4px solid var(--purple);
  padding-left: 14px;
  margin-bottom: 14px;
}

.legal-block p,
.legal-block li {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
}

.legal-block ul {
  padding-left: 1.4em;
  list-style: disc;
  margin-top: 8px;
}

.legal-block ul li {
  margin-bottom: 4px;
}

.legal-link {
  color: var(--purple);
  text-decoration: underline;
}

.legal-date {
  margin-top: 48px;
  font-size: 13px;
  color: #aaa;
  text-align: right;
}

/* Legal Table (Tokusho) */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.8;
}

.legal-table th,
.legal-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #ede8f5;
  vertical-align: top;
}

.legal-table th {
  width: 200px;
  white-space: nowrap;
  color: var(--purple);
  font-weight: 600;
  background: var(--bg-lavender);
}

.legal-table td {
  color: var(--text-mid);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: var(--bg-lavender);
  padding: 10px 30px;
}

.breadcrumb ol {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mid);
  list-style: none;
  padding: 0;
}

.breadcrumb li + li::before {
  content: '›';
  margin: 0 8px;
  color: #bbb;
}

.breadcrumb a {
  color: var(--purple);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* ===== figcaption ===== */
figure { margin: 0; }

figcaption {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== Pricing Table ===== */
.pricing-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-table caption {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 10px;
  text-align: left;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pricing-table th,
.pricing-table td {
  padding: 12px 16px;
  border: 1px solid #ede8f5;
  text-align: center;
  vertical-align: middle;
}

.pricing-table thead th {
  background: var(--purple);
  color: #fff;
  font-weight: 600;
}

.pricing-table thead th:first-child {
  background: var(--bg-lavender);
  color: var(--text-dark);
}

.pricing-table tbody th {
  background: var(--bg-lavender);
  color: var(--purple);
  font-weight: 600;
  text-align: left;
  width: 120px;
}

.pricing-table tbody tr:hover td {
  background: #faf7ff;
}

/* ===== Related Content ===== */
.related-content {
  background: var(--bg-cream);
  padding: 60px 20px;
}

.related-content__title {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--purple);
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

.related-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  color: var(--text-dark);
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(123,94,167,0.12);
  border-color: var(--purple-light);
}

.related-card__icon { font-size: 28px; }

.related-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--purple);
}

.related-card__desc {
  font-size: 12px;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 640px) {
  .related-grid { grid-template-columns: 1fr; }
  .breadcrumb { padding: 10px 16px; }
  .pricing-table tbody th { width: 90px; }
}

@media (max-width: 600px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
  }

  .legal-table th {
    white-space: normal;
    border-bottom: none;
    padding-bottom: 6px;
  }

  .legal-table td {
    padding-top: 6px;
    margin-bottom: 16px;
    border-bottom: 1px solid #ede8f5;
  }
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.form-group .required {
  color: #c62828;
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  box-shadow: 0 0 0 3px rgba(155, 126, 200, 0.15);
}

.form-group textarea { resize: vertical; }

.form-submit { text-align: center; margin-top: 8px; }
.form-submit .btn-primary { min-width: 180px; }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Target Cards ===== */
.target {
  background:
    radial-gradient(circle, rgba(155, 126, 200, 0.12) 1px, transparent 1px),
    linear-gradient(160deg, #f9f6fd 0%, #ede4f8 55%, #f9f6fd 100%);
  background-size: 28px 28px, 100% 100%;
}

.target-inner {
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
}

.target-deco {
  margin-bottom: 18px;
}

.target-inner h2 {
  font-size: clamp(20px, 2.8vw, 28px);
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.target-inner > p {
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 52px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.target-card {
  background: #fff;
  padding: 44px 30px 40px;
  border-radius: 20px;
  box-shadow: 0 2px 0 rgba(123, 94, 167, 0.18), 0 8px 28px rgba(123, 94, 167, 0.09);
  transition: transform 0.3s cubic-bezier(.22,.68,0,1.2), box-shadow 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.target-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple) 0%, #c9a8e8 100%);
  border-radius: 20px 20px 0 0;
}

.target-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 2px 0 rgba(123, 94, 167, 0.22), 0 20px 40px rgba(123, 94, 167, 0.16);
}

.target-card-icon {
  font-size: 22px;
  color: var(--purple-light);
  margin-bottom: 12px;
  opacity: 0.7;
  letter-spacing: 0.3em;
}

.target-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: 0 4px 12px rgba(123, 94, 167, 0.35);
}

.target-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 16px;
  line-height: 1.6;
  text-align: center;
}

.target-card h3::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--purple-light), transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.target-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.95;
  text-align: left;
}

@media (max-width: 768px) {
  .target-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ===== Badge ===== */
.badge-new {
  display: inline-block;
  background: var(--pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.coming-soon-note {
  font-size: 13px !important;
  background: var(--bg-lavender);
  border-left: 3px solid var(--purple-light);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px !important;
}

/* ===== Decorative divider ===== */
.divider {
  text-align: center;
  font-size: 18px;
  color: var(--pink);
  letter-spacing: 8px;
  margin: 10px 0;
}

/* ===== Scroll animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .content-block,
  .pendulum-inner,
  .instructors-grid { grid-template-columns: 1fr; gap: 36px; }

  .content-block.reverse { direction: ltr; }

  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 70px; left: 0; width: 100%; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.1); padding: 16px 0; }
  nav.open ul { flex-direction: column; }
  nav.open ul li a { padding: 12px 24px; font-size: 15px; }
  .dropdown-menu { position: static; box-shadow: none; display: none; }
  .dropdown.open .dropdown-menu { display: block; background: var(--bg-lavender); }

  .hamburger { display: flex; }

  .header-inner { position: relative; }

  .hero-content .en-catch { font-size: 22px; }

  .news-grid { grid-template-columns: 1fr; }

  .instagram-grid { grid-template-columns: repeat(2, 1fr); }

  section { padding: 60px 16px; }
}
