/* ========================================
   名古屋駅前ゆう美容外科クリニック - Global Styles v2
   Design: Elegant beauty clinic with gold accents
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

:root {
  --primary: #b8860b;
  --primary-light: #d4a84b;
  --primary-pale: #f0e6ce;
  --primary-bg: #faf8f5;
  --text: #2c2c2c;
  --text-light: #666;
  --text-muted: #999;
  --white: #fff;
  --border: #e8e0d8;
  --section-bg: #f9f6f2;
  --serif: "Cormorant Garamond", "Georgia", serif;
  --sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; transition: all 0.3s ease; }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ---- Fade-in Animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Header
   ======================================== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.logo span {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--primary);
  font-weight: 400;
  letter-spacing: 0.2em;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-tel {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

.header-tel svg {
  vertical-align: -2px;
  margin-right: 2px;
}

.header-tel small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-reserve::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-reserve:hover {
  background: var(--primary-light);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}

.btn-reserve:hover::before {
  left: 100%;
}

/* ---- Outline Button ---- */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

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

/* ========================================
   Navigation
   ======================================== */
.nav {
  background: var(--text);
}

.nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  max-width: 1100px;
  margin: 0 auto;
}

.nav li { position: relative; }

.nav a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  opacity: 1;
}

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

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  min-width: 420px;
  z-index: 50;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  padding: 16px 0;
}

.dropdown-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.dropdown-column-title {
  padding: 6px 20px 4px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  font-family: var(--serif);
  font-weight: 600;
}

.dropdown-menu a {
  padding: 8px 20px;
  font-size: 12px;
  border-top: none;
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
}

/* ========================================
   Hero
   ======================================== */
.hero {
  background: linear-gradient(135deg, #f7f0e4 0%, #ede4d4 30%, #e8ddd0 60%, #f0e8da 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247,240,228,0.92) 0%, rgba(237,228,212,0.85) 40%, rgba(237,228,212,0.6) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,134,11,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(184,134,11,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(184,134,11,0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative corner ornaments */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(184,134,11,0.15);
  pointer-events: none;
}
.hero::before {
  top: 30px;
  left: 30px;
  border-right: none;
  border-bottom: none;
}
.hero::after {
  bottom: 30px;
  right: 30px;
  border-left: none;
  border-top: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.hero-en {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--primary);
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-divider {
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 15px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  line-height: 2;
  margin-bottom: 30px;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  border: 1px solid rgba(184,134,11,0.15);
}

.btn-reserve-hero {
  font-size: 16px;
  padding: 16px 44px;
  box-shadow: 0 4px 20px rgba(184,134,11,0.25);
}

/* ---- Section Wave Divider ---- */
.section-wave {
  margin-top: -30px;
  position: relative;
  z-index: 2;
}
.section-wave svg {
  display: block;
  width: 100%;
  height: 30px;
}

/* ========================================
   Sections
   ======================================== */
.section {
  padding: 80px 20px;
}

.section-alt {
  background: var(--section-bg);
}

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

.section-title h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.section-title .en {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
}

.section-title p {
  color: var(--text-light);
  font-size: 14px;
  margin-top: 10px;
}

/* Title Ornament */
.title-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.title-ornament span {
  display: block;
  background: var(--primary);
  border-radius: 50%;
}

.title-ornament span:nth-child(1),
.title-ornament span:nth-child(3) {
  width: 4px;
  height: 4px;
  opacity: 0.4;
}

.title-ornament span:nth-child(2) {
  width: 30px;
  height: 2px;
  border-radius: 1px;
}

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

.feature {
  text-align: center;
  padding: 40px 25px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 0 0 3px 3px;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-color: var(--primary-pale);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #faf5eb, #f5ece0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(184,134,11,0.15);
}

.feature h3 {
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.feature p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ========================================
   Menu Grid
   ======================================== */
/* ---- Menu Category Layout ---- */
.menu-category-header {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 0 20px;
}
.menu-category-en {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.menu-category-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
}

.menu-category-box {
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}
.menu-category-box-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
  padding-left: 4px;
  border-left: 3px solid var(--primary);
  padding-left: 10px;
}

/* PC: 画像を左、カード群を右のグリッドレイアウト */
.menu-category-box {
  display: block;
}
.menu-category-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}
.menu-category-image {
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5ece0, #e8e0d8);
  aspect-ratio: 4 / 3;
}
.menu-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* モバイル: 縦積み */
@media (max-width: 768px) {
  .menu-category-content { grid-template-columns: 1fr; gap: 14px; }
  .menu-category-image { aspect-ratio: 16 / 9; }
}

.menu-card-text {
  padding: 0;
}
.menu-card-text .menu-card-body {
  padding: 18px 20px;
}

.menu-grid-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 1200px) {
  .menu-grid-compact { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .menu-grid-compact { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .menu-category-box { padding: 16px; margin-left: 16px; margin-right: 16px; }
}
@media (max-width: 480px) {
  .menu-grid-compact { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
}

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

.menu-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  border-color: var(--primary-pale);
  opacity: 1;
}

.menu-card-image {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f5ece0, #e8e0d8);
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.08);
}

/* Subtle gradient overlay on image for readability */
.menu-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  pointer-events: none;
}

/* Label badge (人気No.1 etc) */
.menu-card-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(184,134,11,0.3);
}

.menu-card-body {
  padding: 22px;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.menu-card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
}

.menu-card-body .price {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
}

.menu-arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.menu-card:hover .menu-arrow {
  transform: translateX(4px);
}

/* ========================================
   Numbers
   ======================================== */
.numbers-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--text) 0%, #3a3a3a 100%);
}

.numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: 800px;
  margin: 0 auto;
}

.number-item {
  text-align: center;
  color: var(--white);
}

.number-value {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--primary-light);
  line-height: 1;
  display: inline;
}

.number-unit {
  font-size: 16px;
  color: var(--primary-light);
  font-weight: 600;
}

.number-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 0.1em;
}

.number-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.15);
}

/* ========================================
   Doctor
   ======================================== */
.doctor-section {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.doctor-photo-wrapper {
  position: relative;
  flex-shrink: 0;
}

.doctor-photo {
  width: 300px;
  height: 380px;
  background: linear-gradient(135deg, #e8e0d8, #d5ccc2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.doctor-photo-frame {
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1px solid var(--primary);
  border-radius: 12px;
  opacity: 0.3;
}

.doctor-title-en {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.3em;
  margin-bottom: 5px;
}

.doctor-info h3 {
  font-size: 24px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.doctor-info .title {
  color: var(--primary);
  font-size: 14px;
  margin-bottom: 20px;
}

.doctor-message {
  border-left: 2px solid var(--primary-pale);
  padding-left: 20px;
  margin-bottom: 25px;
}

.doctor-message p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 2;
}

.doctor-message p:last-child { margin-bottom: 0; }

/* ========================================
   Flow Steps
   ======================================== */
.flow-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
  flex: 1;
  padding: 0 15px;
  position: relative;
}

.flow-number {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.flow-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #faf5eb, #f5ece0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 1px solid rgba(184,134,11,0.15);
}

.flow-step h4 {
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.flow-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
}

.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 50px;
  flex-shrink: 0;
}

/* ========================================
   Access
   ======================================== */
.access-content {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.access-map {
  flex: 1;
  height: 300px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 13px;
}

.access-info {
  flex: 1;
}

.access-info table {
  width: 100%;
  border-collapse: collapse;
}

.access-info th,
.access-info td {
  padding: 14px 15px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.access-info th {
  width: 120px;
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.access-info th svg {
  vertical-align: -2px;
  margin-right: 6px;
}

.access-info td {
  color: var(--text-light);
}

/* ========================================
   CTA
   ======================================== */
.cta {
  background: linear-gradient(135deg, var(--text) 0%, #3a3a3a 100%);
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(184,134,11,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(184,134,11,0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-decoration {
  margin-bottom: 20px;
}

.cta-en {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--primary-light);
  letter-spacing: 0.3em;
  margin-bottom: 10px;
}

.cta h2 {
  font-size: 26px;
  margin-bottom: 15px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.cta p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 25px;
  font-size: 14px;
}

.btn-reserve-cta {
  font-size: 16px;
  padding: 16px 44px;
  background: var(--primary);
  box-shadow: 0 4px 20px rgba(184,134,11,0.3);
}

.cta-tel {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-tel svg {
  opacity: 0.5;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  padding: 50px 20px 30px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}

.footer-logo span {
  display: block;
  font-family: var(--serif);
  font-size: 11px;
  color: var(--primary-light);
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 3px;
}

.footer-info p {
  font-size: 13px;
  line-height: 2;
}

.footer-nav ul {
  list-style: none;
  columns: 2;
  gap: 20px;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  line-height: 2.2;
  transition: color 0.3s;
}

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

.footer-copy {
  text-align: center;
  font-size: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ========================================
   Page Header (Sub pages)
   ======================================== */
.page-header {
  background: linear-gradient(135deg, #f7f0e4 0%, #ede4d4 100%);
  padding: 55px 20px;
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.page-header h1 {
  font-size: 28px;
  letter-spacing: 0.12em;
}

.page-header .en {
  display: block;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 400;
}

.breadcrumb {
  text-align: center;
  padding: 12px 20px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--primary-bg);
}

.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); opacity: 1; }

/* ========================================
   Content (Sub pages)
   ======================================== */
.content { padding: 60px 20px; }
.content .container { max-width: 900px; }

.content h2 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  position: relative;
}

.content h3 {
  font-size: 18px;
  margin: 30px 0 15px;
  color: var(--text);
}

.content p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 15px;
}

/* ---- Price Table ---- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 40px;
}

.price-table th {
  background: var(--text);
  color: var(--white);
  padding: 12px 15px;
  font-size: 14px;
  text-align: left;
}

.price-table td {
  padding: 14px 15px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.price-table tr:nth-child(even) { background: var(--primary-bg); }

.price-table tr:hover td {
  background: rgba(184,134,11,0.04);
}

/* ---- FAQ ---- */
.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: var(--primary-pale);
}

.faq-q {
  padding: 18px 50px 18px 20px;
  font-weight: 600;
  font-size: 15px;
  background: var(--primary-bg);
  cursor: pointer;
  position: relative;
  user-select: none;
}

.faq-q::before { content: "Q. "; color: var(--primary); font-weight: 700; }

.faq-q::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-size: 14px;
  color: var(--text-light);
  background: var(--white);
  line-height: 1.9;
  padding: 0 20px;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 18px 20px;
}

.faq-a::before { content: "A. "; color: var(--primary); font-weight: 700; }

/* ---- Treatment Detail Page ---- */

/* Full-width sections: break out of .content .container */
.content:has(.detail-section) {
  padding: 0;
}
.content:has(.detail-section) > .container {
  max-width: none;
  padding: 0;
}

/* Page-in Nav (NEO style grid cards) */
.detail-nav {
  max-width: 940px;
  margin: 0 auto;
  padding: 24px 20px 0;
  position: relative;
  z-index: 10;
}
.detail-nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.detail-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
}
.detail-nav-list a:hover {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(184,134,11,0.1);
  opacity: 1;
}
.detail-nav-list .nav-ja { display: block; }
.detail-nav-list .nav-en {
  font-family: var(--serif);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.detail-nav-list .nav-arrow {
  font-size: 12px;
  color: var(--primary);
  transition: transform 0.3s;
}
.detail-nav-list a:hover .nav-arrow { transform: translateY(2px); }

/* Sections — generous spacing + alternating full-width backgrounds */
.detail-section {
  padding: 80px 20px;
  max-width: 940px;
  margin: 0 auto;
}

/* Full-width alternating backgrounds via box-shadow trick */
.detail-section:nth-child(odd) {
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
  background: var(--white);
}
.detail-section:nth-child(even) {
  box-shadow: 0 0 0 100vmax var(--section-bg);
  clip-path: inset(0 -100vmax);
  background: var(--section-bg);
}

/* Section heading — decorative line */
.section-label {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--primary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.detail-section h2 {
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: none;
  position: relative;
}
.detail-section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--primary);
}

/* Recommend list — card style */
.recommend-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.recommend-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.recommend-list li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Flow steps — enhanced */
.flow-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  counter-reset: step;
  text-align: left;
}
.flow-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  counter-increment: step;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.flow-step:last-child { border-bottom: none; }
.flow-step::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
}
.flow-step-content {
  flex: 1;
  text-align: left;
}
.flow-step-content h3,
.flow-step-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 0;
  color: var(--text);
  text-align: left;
}
.flow-step-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.8;
  text-align: left;
}

/* Risk/DT table — enhanced */
.risk-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
}
.risk-table th {
  background: var(--text);
  color: var(--white);
  padding: 14px 20px;
  font-size: 14px;
  text-align: left;
}
.risk-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  line-height: 1.7;
}
.risk-table tr:nth-child(even) td { background: var(--primary-bg); }

/* Risk note */
.risk-note {
  margin-top: 20px;
  padding: 20px 24px;
  background: #fef9f0;
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
}

/* CTA box — enhanced */
.cta-box {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--section-bg) 0%, #f0e6ce 100%);
  border-radius: 16px;
  margin-top: 60px;
}
.cta-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text);
}
.cta-box p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 24px;
}
.cta-btn {
  display: inline-block;
  padding: 18px 60px;
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(184,134,11,0.2);
}
.cta-btn:hover {
  background: var(--primary-light);
  box-shadow: 0 6px 24px rgba(184,134,11,0.35);
  opacity: 1;
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .detail-nav { padding: 16px 16px 0; }
  .detail-nav-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .detail-nav-list a { padding: 14px 14px; font-size: 13px; }
  .detail-section { padding: 50px 16px; }
  .recommend-list { grid-template-columns: 1fr; }
  .flow-step { gap: 14px; }
  .flow-step::before { width: 36px; height: 36px; font-size: 15px; }
  .flow-step-content { text-align: left; }
}

/* ---- Form ---- */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.form-group textarea { height: 150px; resize: vertical; }

.form-submit {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 14px 50px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  background: var(--primary-light);
  box-shadow: 0 4px 15px rgba(184,134,11,0.3);
}

/* ========================================
   Hamburger Menu
   ======================================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 1px;
}

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

/* ========================================
   Mobile Fixed Bottom Bar
   ======================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  padding: 8px 12px;
}

.mobile-bottom-bar-inner {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 0 auto;
}

.mobile-bottom-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.mobile-bar-tel {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.mobile-bar-reserve {
  background: var(--primary);
  color: var(--white);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  /* Header: logo only + hamburger */
  .header-inner { padding: 12px 16px; }
  .header-contact { display: none; }
  .hamburger { display: flex; }

  /* Nav: fixed dropdown below header */
  .nav {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .nav.open {
    max-height: calc(100vh - 60px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .nav ul { flex-direction: column; padding: 8px 0; }
  .nav a { padding: 12px 20px; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown-menu { display: none !important; }

  /* Bottom bar */
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 70px; }

  /* Hero */
  .hero { padding: 50px 20px 40px; }
  .hero::before, .hero::after { width: 50px; height: 50px; }
  .hero::before { top: 12px; left: 12px; }
  .hero::after { bottom: 12px; right: 12px; }
  .hero h1 { font-size: 24px; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 11px; padding: 5px 10px; }
  .btn-reserve-hero { padding: 14px 32px; font-size: 15px; }

  /* Sections */
  .section { padding: 50px 16px; }
  .section-title { margin-bottom: 35px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .menu-card-image { height: 140px; }
  .menu-card-body { padding: 14px; }
  .menu-card-body h3 { font-size: 14px; }
  .menu-card-body p { font-size: 12px; }
  .menu-card-body .price { font-size: 13px; }
  .menu-arrow { font-size: 11px; }
  .features { grid-template-columns: 1fr; max-width: 100%; }
  .feature { padding: 30px 20px; }

  /* Numbers */
  .numbers { flex-direction: column; gap: 20px; }
  .number-divider { width: 40px; height: 1px; }
  .number-value { font-size: 40px; }

  /* Doctor */
  .doctor-section { flex-direction: column; text-align: center; }
  .doctor-photo-wrapper { margin: 0 auto; }
  .doctor-photo { width: 220px; height: 280px; }
  .doctor-message { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 15px; text-align: left; }

  /* Flow */
  .flow-steps { flex-direction: column; align-items: stretch; gap: 0; }
  .flow-arrow { padding-top: 0; transform: rotate(90deg); }

  /* Access */
  .access-content { flex-direction: column; }

  /* CTA */
  .cta { padding: 50px 16px; }
  .cta h2 { font-size: 22px; }
  .btn-reserve-cta { padding: 14px 32px; font-size: 15px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 25px; }
  .footer { padding-bottom: 80px; }

  /* Sub-page content */
  .page-header { padding: 40px 16px; }
  .page-header h1 { font-size: 22px; }
  .content { padding: 40px 16px; }
  .price-table { font-size: 12px; }
  .price-table th { padding: 8px 6px; white-space: nowrap; }
  .price-table td { padding: 10px 6px; }
  .price-table td:not(:first-child) { white-space: nowrap; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 20px; letter-spacing: 0.06em; }
  .hero-en { font-size: 12px; }
  .hero-sub { font-size: 13px; }
  .section-title h2 { font-size: 20px; }
  .menu-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .menu-card-image { height: 170px; }
  .menu-card-body h3 { font-size: 15px; }
  .menu-card-body p { font-size: 13px; }
}
