/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-sakura.jpg') center/cover no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: var(--space-2xl) var(--space-md);
  width: 100%;
  max-width: 900px;
}

.hero h1 {
  font-size: 3.5rem;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
  letter-spacing: 0.08em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}

.hero-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* ========== Greeting Section ========== */
.greeting {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.greeting-photo {
  width: 280px;
  height: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-bg-sub);
  display: flex;
  align-items: center;
  justify-content: center;
}

.greeting-photo svg {
  width: 100%;
  height: 100%;
}

.greeting-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.greeting-text p {
  margin-bottom: var(--space-sm);
  line-height: 2;
}

/* ========== Philosophy Section ========== */
.philosophy {
  max-width: 760px;
  margin: 0 auto;
}

.philosophy-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.philosophy-item:first-child {
  padding-top: 0;
}

.philosophy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.philosophy-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -0.02em;
}

.philosophy-body h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  color: var(--color-text);
  line-height: 1.6;
}

.philosophy-body p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 2;
}

/* ========== Clinic Section ========== */
.clinic-cooperation {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-xl);
  border: 1px solid var(--color-border);
}

.clinic-cooperation h3 {
  color: var(--color-text);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.clinic-cooperation > p {
  text-align: center;
  color: var(--color-text-light);
  line-height: 2;
}

.cooperation-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: var(--space-lg);
}

.cooperation-tag {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-accent);
  white-space: nowrap;
}

.cooperation-dot {
  width: 24px;
  height: 1px;
  background: var(--color-border);
  flex-shrink: 0;
}

.clinic-table-wrapper {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

/* ========== Visit Section ========== */
.visit-intro {
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
  color: var(--color-text-light);
  line-height: 2;
}

.visit-flow {
  max-width: 700px;
  margin: 0 auto;
}

.visit-flow > h3 {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-text);
  font-size: 1.3rem;
}

/* ========== FAQ Section ========== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
