@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');

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

:root {
  --pink-light: #f8eded;
  --pink-mid: #f0d5d5;
  --pink-accent: #e8b4c8;
  --rose: #c88ea7;
  --brown: #7b6067;
  --brown-light: #7b6067;
  --mauve: #d4a0a0;
  --white: #ffffff;
  --bg-gradient: linear-gradient(180deg, #f8eded 0%, #e8d5d5 40%, #d4a0a0 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--brown);
  background: url('../images/common/background.png') top center / 100% auto no-repeat, var(--bg-gradient);
  min-height: 100vh;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}

a {
  color: var(--brown);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

ul {
  list-style: none;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(248, 237, 237, 1);
  transition: box-shadow 0.3s, transform 0.5s ease, opacity 0.5s ease, background 0.5s ease;
}

.header.header-on-video {
  background: transparent;
}

.header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.header.header-on-video .header-nav .nav-item > a,
.header.header-on-video .header-nav .nav-item > a .en,
.header.header-on-video .header-nav .nav-item > a .jp {
  color: var(--white);
}

.header.header-on-video .header-logo img {
  filter: brightness(10);
}

.header.header-on-video .btn-trial {
  border-color: var(--white);
  color: var(--white);
}

.header.header-on-video .btn-trial:hover {
  background: var(--white);
  color: var(--brown);
}

.header.header-on-video .hamburger span {
  background: var(--white);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(92, 61, 61, 0.1);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
}

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

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 16px;
  margin-right: auto;
}

.header-nav .nav-item > a .en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  font-weight: 600;
}

.header-nav .nav-item > a .jp {
  display: block;
  font-size: 10px;
  color: var(--brown-light);
}

/* Dropdown menu */
.nav-item {
  position: relative;
}

.nav-item > a {
  padding: 8px 12px;
  font-size: 13px;
  text-align: left;
  line-height: 1.4;
  border-radius: 4px;
  transition: background 0.3s, opacity 0.3s;
  display: block;
}

.nav-item > a:hover {
  background: rgba(200, 142, 167, 0.1);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 180px;
  background: rgba(248, 237, 237, 0.98);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(92, 61, 61, 0.15);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 1001;
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--brown);
  white-space: nowrap;
  transition: background 0.2s;
}

.nav-dropdown a:hover {
  background: rgba(200, 142, 167, 0.15);
  opacity: 1;
}

.header.header-on-video .nav-dropdown {
  background: rgba(92, 61, 61, 0.9);
}

.header.header-on-video .nav-dropdown a {
  color: var(--white);
}

.header.header-on-video .nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-sns {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-sns a {
  display: flex;
  align-items: center;
}

.header-sns img {
  height: 40px;
  width: auto;
}

.header-sns .sns-white {
  display: none;
}

.header-sns .sns-dark {
  display: block;
}

.header.header-on-video .sns-white {
  display: block;
}

.header.header-on-video .sns-dark {
  display: none;
}

.btn-trial {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border: 1px solid var(--brown);
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.3s, color 0.3s;
}

.btn-trial:hover {
  background: var(--brown);
  color: var(--white);
  opacity: 1;
}

.btn-trial .arrow {
  font-size: 10px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 76px;
}

.hero-home {
  height: 100vh;
  min-height: 700px;
}

.hero-video-sub {
  height: 100vh;
  min-height: 600px;
  margin-top: 0;
}

.hero-video-sub video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(248, 237, 237, 0.2) 0%, rgba(200, 142, 167, 0.3) 100%);
  transition: background 0.4s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 400;
  text-shadow: 0 2px 20px rgba(92, 61, 61, 0.3);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.hero-home .hero-content h1 {
  font-size: 80px;
}

.hero-logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(92, 61, 61, 0.3);
}

/* ---- Hero Video Background ---- */
.hero-video-wrap {
  position: relative;
  height: 200vh;
}

.hero-video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-height: 100vh;
  min-width: 177.78vh; /* 16:9 */
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.hero-video-overlay-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s ease;
}


/* Hero home override for video wrap */
.hero-video-wrap .hero-home {
  position: relative;
  z-index: 2;
  background: transparent;
  margin-top: 0;
  height: 100vh;
  min-height: 600px;
}

.hero-video-wrap .hero-home .hero-overlay,
.hero-video-wrap .hero-home .hero-fallback {
  display: none;
}

/* Content after hero-video-wrap must cover the fixed video */
.hero-video-wrap ~ * {
  position: relative;
  z-index: 10;
}

.video-curtain {
  position: relative;
  z-index: 10;
  background: url('../images/common/background.png') top center / 100% auto no-repeat, var(--bg-gradient);
}

.hero-video-wrap ~ .footer {
  z-index: 10;
}

/* Logo content in hero section 1 */
.hero-logo-content {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero logo block */
.hero-logo-block {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.hero-logo-img {
  width: 820px !important;
  height: auto !important;
  position: relative !important;
  object-fit: contain !important;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
  .hero-logo-img {
    width: 450px !important;
  }
}

.hero-logo-text-group {
  display: flex;
  flex-direction: column;
}

.hero-logo-line1 {
  font-family: 'Great Vibes', cursive;
  font-size: 52px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-logo-line2 {
  font-family: 'Great Vibes', cursive;
  font-size: 68px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1;
  margin-top: -5px;
}

/* Logo positioning in hero */
.hero-home .hero-logo-content {
  align-self: flex-end;
  margin-bottom: 4vh;
  padding-left: 2%;
  width: 100%;
  justify-content: flex-start;
}


/* Section 2: Message over video */
.hero-message-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-message-content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-message-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-message-content p {
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 2.2;
  text-shadow: 0 2px 15px rgba(92, 61, 61, 0.4);
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .hero-flower-icon { width: 80px !important; height: 80px !important; }
  .hero-logo-line1 { font-size: 34px; }
  .hero-logo-line2 { font-size: 44px; }
  .hero-message-content p { font-size: 16px; }
  .hero-message-section { min-height: 400px; height: 70vh; }
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.section-title .flower-icon {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--rose);
  margin: 0 10px;
  vertical-align: middle;
}

.section-desc {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 40px;
  color: var(--brown-light);
}

/* ==================== MESSAGE (TOP) ==================== */
.message-section {
  padding: 80px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.3);
}

.message-section p {
  font-size: 18px;
  line-height: 2.2;
  font-weight: 400;
}

/* ==================== YOUTUBE ==================== */
.youtube-section {
  padding: 80px 20px;
  text-align: center;
}

.youtube-section .section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.youtube-section .section-icon img {
  height: 24px;
}

.youtube-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.youtube-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
  padding: 10px 0;
}

.youtube-card {
  min-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92, 61, 61, 0.1);
  background: var(--white);
  flex-shrink: 0;
}

.youtube-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--brown-light);
  background: rgba(255, 255, 255, 0.9);
  color: var(--brown);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: var(--pink-mid);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* ==================== INSTAGRAM ==================== */
.instagram-section {
  padding: 0;
}

.instagram-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebbfcc;
  padding: 40px 60px;
  gap: 50px;
}

.instagram-bar-left {
  flex-shrink: 0;
}

.instagram-logo-img {
  height: 80px;
  width: auto;
}

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

.instagram-bar-center p {
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.instagram-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.instagram-profile-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

.instagram-bar-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.instagram-name {
  font-size: 16px;
  color: var(--white);
  font-weight: 500;
}

.instagram-btn {
  display: inline-block;
  padding: 8px 22px;
  border: 1px solid var(--white);
  border-radius: 30px;
  font-size: 13px;
  color: var(--white);
  white-space: nowrap;
}

.instagram-btn:hover {
  background: var(--white);
  color: #ebbfcc;
  opacity: 1;
}

@media (max-width: 768px) {
  .instagram-bar {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  .instagram-bar-right {
    flex-direction: column;
  }
}

/* ==================== NEWS ==================== */
.news-section {
  padding: 80px 20px 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.news-card {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s;
}

.news-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 30px rgba(92, 61, 61, 0.1);
  opacity: 0.8 !important;
}

.news-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

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

.news-card-date {
  font-size: 12px;
  color: var(--brown-light);
  margin-bottom: 6px;
}

.news-card-title {
  font-size: 13px;
  line-height: 1.6;
}

.btn-more {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 40px;
  border: 1px solid var(--brown);
  border-radius: 30px;
  font-size: 13px;
  text-align: center;
  transition: background 0.3s, color 0.3s;
}

.btn-more:hover {
  background: var(--brown);
  color: var(--white);
  opacity: 1;
}

/* ==================== STUDIO CARDS ==================== */
.studio-section {
  padding: 0 20px 0;
}

.studio-section .section {
  padding: 40px 20px 240px;
}

.studio-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.studio-card {
  border: 1px solid rgba(92, 61, 61, 0.2);
  border-radius: 8px;
  padding: 36px 20px 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.studio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(92, 61, 61, 0.1);
}

.studio-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(92, 61, 61, 0.3);
  border-radius: 50%;
  font-size: 12px;
  margin-top: 16px;
  color: var(--brown);
}

.studio-card .name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.studio-card .name-jp {
  font-size: 12px;
  color: var(--brown-light);
}

/* ==================== CONTACT CTA ==================== */
.contact-cta {
  padding: 0;
}

.contact-bar {
  background: #ebbfcc;
  padding: 40px 60px;
  text-align: center;
}

.contact-bar h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-bar-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1px solid var(--white);
  border-radius: 30px;
  font-size: 14px;
  color: var(--white);
  background: transparent;
  transition: background 0.3s, color 0.3s;
}

.contact-btn:hover {
  background: var(--white);
  color: #ebbfcc;
}

.contact-btn-line img {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .contact-bar {
    padding: 30px 20px;
  }
  .contact-bar-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==================== ABOUT VIDEO WRAP ==================== */
.about-video-wrap {
  position: relative;
  height: 200vh;
}

.about-video-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.about-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-video-overlay-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  transition: background 0.3s ease;
}

.about-screens {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200vh;
  z-index: 2;
}

.about-screen {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video-text {
  text-align: center;
  padding: 0 20px;
}

.about-video-text p {
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.1em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.about-intro-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  padding: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-intro-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-intro-photo {
  flex-shrink: 0;
  width: 40%;
}

.about-intro-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-intro-text {
  flex: 1;
}

.about-intro-text p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--white);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .about-video-text p {
    font-size: 18px;
  }
  .about-intro-content {
    flex-direction: column;
    padding: 20px;
  }
  .about-intro-photo {
    width: 80%;
  }
}

/* ==================== BEGINNER ==================== */
.beginner-section {
  padding: 80px 40px;
  overflow: hidden;
}

.beginner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.beginner-text {
  flex: 0 0 40%;
}

.beginner-text h2 {
  font-size: 22px;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.beginner-text p {
  font-size: 14px;
  line-height: 2.2;
  color: var(--brown);
  margin-bottom: 32px;
}

.btn-beginner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  border: 1px solid var(--brown);
  border-radius: 30px;
  font-size: 13px;
  color: var(--brown);
  transition: background 0.3s, color 0.3s;
}

.btn-beginner:hover {
  background: var(--brown);
  color: var(--white);
  opacity: 1;
}

.btn-beginner .arrow {
  font-size: 10px;
}

.beginner-photos {
  flex: 1;
  position: relative;
  height: 400px;
  min-width: 0;
}

.beginner-photo-1,
.beginner-photo-2 {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
}

.beginner-photo-1 {
  width: 50%;
  bottom: 0;
  left: -30px;
  z-index: 2;
}

.beginner-photo-2 {
  width: 90%;
  top: -40px;
  right: -120px;
  z-index: 1;
}

@media (max-width: 768px) {
  .beginner-section {
    padding: 50px 20px;
  }
  .beginner-inner {
    flex-direction: column;
    gap: 40px;
  }
  .beginner-photos {
    width: 100%;
    min-height: 280px;
  }
  .beginner-photo-1 {
    width: 60%;
  }
  .beginner-photo-2 {
    width: 65%;
  }
}

/* ==================== INSTRUCTOR PAGE ==================== */
.instructor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.instructor-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 16px;
}

.instructor-card .name {
  font-size: 18px;
  font-weight: 500;
}

/* Instructor Detail */
.instructor-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.instructor-detail .photo img {
  width: 100%;
  border-radius: 16px;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.instructor-detail .info h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

.instructor-detail .info .title {
  font-size: 14px;
  color: var(--brown-light);
  margin-bottom: 24px;
}

.instructor-detail .info p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 24px;
}

.instructor-detail .info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.class-list {
  font-size: 14px;
  line-height: 2;
}

/* ==================== STUDIO PAGE ==================== */
.studio-detail {
  max-width: 1100px;
  margin: 0 auto;
}

.studio-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.studio-item:nth-child(even) {
  direction: rtl;
}

.studio-item:nth-child(even) > * {
  direction: ltr;
}

.studio-item img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.studio-item .info h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}

.studio-item .info .name-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--brown-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.studio-item .info p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.studio-item .info .detail-link {
  font-size: 13px;
  color: var(--rose);
}

.studio-img-link {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.studio-img-link img {
  transition: transform 0.4s ease, opacity 0.3s;
}

.studio-img-link:hover img {
  transform: scale(1.03);
  opacity: 0.85;
}

.studio-map {
  margin: 16px 0;
}

.studio-map iframe {
  display: block;
}

.studio-item .btn-more {
  margin: 16px 0 0;
  display: inline-block;
}

.studio-address {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 4px;
}

/* Tuition Table */
.tuition-section {
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.tuition-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  text-align: center;
  margin-bottom: 12px;
}

.tuition-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.tuition-table th {
  background: var(--pink-accent);
  color: var(--white);
  padding: 12px 20px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}

.tuition-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(92, 61, 61, 0.1);
  font-size: 14px;
}

.tuition-table td:last-child {
  text-align: center;
  font-size: 16px;
}

/* ==================== ACCESS PAGE ==================== */
.access-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.access-studio-photo {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 30px;
}

.access-info {
  margin-bottom: 40px;
}

.access-info h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
}

.access-info p {
  font-size: 14px;
  line-height: 1.8;
}

/* Schedule Table */
.schedule-section {
  margin-bottom: 50px;
}

.schedule-section h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.schedule-table th {
  background: var(--pink-accent);
  color: var(--white);
  padding: 12px 8px;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  min-width: 100px;
}

.schedule-table td {
  padding: 10px 8px;
  border: 1px solid rgba(92, 61, 61, 0.1);
  font-size: 12px;
  text-align: center;
  vertical-align: top;
  line-height: 1.6;
}

/* Google Map */
.map-container {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(92, 61, 61, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

.map-placeholder {
  width: 100%;
  height: 350px;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--brown-light);
  border: 1px dashed var(--mauve);
  border-radius: 12px;
}

/* ==================== NEWS LIST ==================== */
.news-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

/* News Detail */
.news-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.news-detail-header {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.news-detail-header img {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.news-detail-meta .date {
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 400;
}

.news-detail-meta h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.news-detail-body {
  font-size: 14px;
  line-height: 2.2;
}

.news-detail-body p {
  margin-bottom: 20px;
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  color: var(--brown-light);
}

/* ==================== CONTACT FORM ==================== */
.contact-form-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-intro p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 16px;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(92, 61, 61, 0.1);
  padding: 20px 0;
}

.form-row label {
  font-size: 14px;
  font-weight: 500;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(92, 61, 61, 0.2);
  border-radius: 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--brown);
  outline: none;
  transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--rose);
}

.form-row textarea {
  min-height: 160px;
  resize: vertical;
}

.form-row .note {
  font-size: 11px;
  color: var(--brown-light);
  margin-top: 6px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.radio-group label {
  font-weight: 300;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.radio-group input[type="radio"] {
  width: auto;
  accent-color: var(--rose);
}

.form-submit {
  text-align: center;
  margin-top: 40px;
}

.form-submit .privacy-note {
  font-size: 12px;
  color: var(--brown-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.form-submit .privacy-note a {
  color: var(--rose);
  text-decoration: underline;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 50px;
  border: 1px solid var(--brown);
  border-radius: 30px;
  background: transparent;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  color: var(--brown);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.submit-btn:hover {
  background: var(--brown);
  color: var(--white);
}

/* ==================== BREADCRUMB ==================== */
.breadcrumb {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 12px;
  color: var(--brown-light);
}

.breadcrumb a {
  color: var(--brown-light);
}

.breadcrumb span {
  margin: 0 8px;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--brown);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 40px 24px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-sns {
  display: flex;
  gap: 10px;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  white-space: nowrap;
}

.footer-sns a img {
  height: 16px;
  width: auto;
}

.footer-sns a:hover {
  background: rgba(255, 255, 255, 0.1);
  opacity: 1;
}

.footer-nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
  align-items: flex-start;
}

.footer-nav-col h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.footer-nav-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  padding: 2px 0;
}

.footer-nav-col a:hover {
  color: var(--white);
  opacity: 1;
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== PAGE NAVIGATION ==================== */
.page-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 40px 0;
}

.page-nav a, .page-nav span {
  padding: 8px 12px;
  font-size: 13px;
}

.page-nav .current {
  font-weight: 700;
}

/* ==================== OTHER STUDIOS SIDEBAR ==================== */
.other-studios {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.other-studios a {
  display: block;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  border-right: 2px solid var(--rose);
  transition: background 0.3s;
}

.other-studios a:hover {
  background: var(--pink-mid);
  opacity: 1;
}

.other-studios .name-jp {
  display: block;
  font-weight: 500;
  font-size: 12px;
}

.other-studios .name-en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  color: var(--brown-light);
}

.other-studios .detail-link {
  display: block;
  font-size: 10px;
  color: var(--rose);
  margin-top: 2px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }

  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(248, 237, 237, 0.98);
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 1000;
  }

  .header-nav.open a {
    font-size: 16px;
    padding: 12px 24px;
  }

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

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

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

  .instructor-detail {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .studio-item {
    grid-template-columns: 1fr;
  }

  .studio-item:nth-child(even) {
    direction: ltr;
  }

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

  .other-studios {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-home .hero-content h1 {
    font-size: 48px;
  }

  .hero {
    height: 50vh;
    min-height: 350px;
  }

  .hero-video-sub {
    height: 100vh;
    min-height: 500px;
  }

  .hero-home {
    height: 80vh;
  }

  .section {
    padding: 50px 16px;
  }

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

  .studio-cards {
    grid-template-columns: 1fr 1fr;
  }

  .instructor-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

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

  .header-right .btn-trial span:not(.arrow) {
    display: none;
  }

  .header-sns {
    display: none;
  }

  .youtube-card {
    min-width: 250px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }
}

/* ==================== ABOUT PAGE ==================== */
.about-content {
  display: flex;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.about-content.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 2;
}

.about-photo {
  flex: 0 0 400px;
}

.about-photo img {
  width: 100%;
  border-radius: 12px;
}

.founder-name {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 14px;
  color: var(--rose);
  margin-bottom: 24px;
}

.section-title p.section-subtitle {
  font-size: 14px;
  color: var(--rose);
  margin-top: 4px;
  text-align: center;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-content.reverse {
    flex-direction: column;
  }

  .about-photo {
    flex: none;
    width: 100%;
    max-width: 350px;
  }

  .founder-name {
    font-size: 36px;
  }
}

/* ==================== CLASS TABS ==================== */
.class-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--pink-accent);
}

.class-tab {
  padding: 16px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: -2px;
}

.class-tab span {
  display: block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11px;
  font-weight: 500;
  margin-top: 2px;
}

.class-tab:hover {
  color: var(--rose);
}

.class-tab.active {
  color: var(--rose);
  border-bottom-color: var(--rose);
}

.class-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.class-panel.active {
  display: block;
}

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

.class-panel-header {
  text-align: center;
  margin-bottom: 30px;
}

.class-panel-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 12px;
}

.class-panel-header h3 span {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-left: 12px;
}

.class-desc {
  font-size: 14px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.schedule-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
}

.schedule-table th {
  background: var(--pink-accent);
  color: var(--white);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.schedule-table td {
  padding: 14px 16px;
  font-size: 13px;
  text-align: center;
  border-bottom: 1px solid rgba(200, 142, 167, 0.2);
}

.schedule-table tbody tr:hover {
  background: rgba(200, 142, 167, 0.05);
}

.class-cta {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 142, 167, 0.2);
}

.class-cta p {
  margin-bottom: 20px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .class-tabs {
    flex-wrap: wrap;
    gap: 0;
  }

  .class-tab {
    padding: 12px 16px;
    font-size: 15px;
    flex: 1;
    min-width: 0;
  }

  .schedule-table {
    font-size: 12px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 10px 8px;
    font-size: 12px;
  }
}

/* ==================== FAQ ==================== */
.faq-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.faq-category {
  margin-bottom: 50px;
}

.faq-category-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--brown);
  padding: 16px 20px;
  background: rgba(200, 142, 167, 0.1);
  border-left: 4px solid var(--rose);
  border-radius: 0 8px 8px 0;
  margin-bottom: 20px;
}

.faq-item {
  border-bottom: 1px solid rgba(200, 142, 167, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-family: 'Zen Maru Gothic', sans-serif;
  color: var(--brown);
  line-height: 1.6;
  gap: 12px;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(200, 142, 167, 0.05);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--rose);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
}

.faq-toggle {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--rose);
  transition: transform 0.3s;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 16px 20px;
}

.faq-answer p {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.8;
  color: var(--brown);
}

.faq-a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--brown);
  color: var(--white);
  border-radius: 50%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
}
