/* ==========================================================================
   MYLILY Landing Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables
   -------------------------------------------------------------------------- */
:root {
  --color-primary: #75612C;
  --color-primary-dark: #5A4B22;
  --color-primary-light: #8B7A4C;
  --color-accent: #546342;
  --color-accent-dark: #445234;
  --color-text: #42220F;
  --color-text-light: #B2A581;
  --color-text-muted: #767676;
  --color-gold: #AEA07A;
  --color-bg: #FEFDFB;
  --color-bg-cream: #FFFBF3;
  --color-bg-section: #FFFBF3;
  --color-border: #E9E9E2;
  --color-border-light: #E8E4DC;
  --color-white: #FFFFFF;
  --font-ja: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en: 'Cormorant Garamond', serif;
  --container-width: 1280px;
  --section-padding: 80px 0;
  --transition: 0.3s ease;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 80px;
}

.hero {
  scroll-margin-top: 0;
}

body {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 10000;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 16px;
}

.skip-link:focus {
  top: 0;
}

ul { list-style: none; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.section-title-ja {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 48px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn--header-filled {
  background-color: var(--color-accent);
  color: var(--color-white);
  border: 1px solid var(--color-accent);
  padding: 12px 24px;
  font-size: 1.4rem;
  border-radius: 4px;
}

.btn--header-filled:hover {
  background-color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 93, 74, 0.3);
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 18px 36px;
  border-radius: 6px;
  font-size: 1.6rem;
}

.btn--primary:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 93, 74, 0.3);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  padding: 18px 36px;
  border-radius: 6px;
  font-size: 1.6rem;
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 93, 74, 0.3);
}

.btn--large {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 24px 60px;
  font-size: 1.8rem;
}

.btn--large:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 93, 74, 0.3);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #FEFDFB;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header--scrolled {
  background-color: rgba(254, 253, 251, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.header__logo-img {
  height: 28px;
  width: auto;
}

.header__nav-list {
  display: flex;
  gap: 36px;
}

.header__nav-list a {
  font-size: 1.5rem;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.header__nav-list a:hover { color: var(--color-primary); }

/* Hamburger Button (hidden on desktop) */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.header__hamburger--active .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger--active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger--active .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(254, 253, 251, 0.98);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu--active {
  opacity: 1;
  visibility: visible;
}

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

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.mobile-menu__list a {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.mobile-menu__list a:hover {
  color: var(--color-primary);
}

.mobile-menu__cta {
  display: inline-flex;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  margin-top: 0;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.hero__bg {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
}

.hero__bg img {
  width: 1440px;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 500px;
  object-position: right center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 65.56%;
  height: 100%;
  background: linear-gradient(to left, rgba(251,253,249,0) 0%, rgba(251,253,249,0.6) 61%);
}

.hero__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 120px 0 0 200px;
}

/* Achievement badge - on PC: overlaps title top-right via absolute */
.hero__main-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.hero__achievement {
  position: absolute;
  top: 0;
  right: -80px;
  width: 166px;
  height: 141px;
  z-index: 2;
}

.hero__achievement-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero__insurance-badge {
  display: block;
  height: 48px;
  width: auto;
}

/* Title Image (copy: 更年期専門 + オンライン診療 + MYLILY+) */
.hero__title-image {
  display: block;
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.hero__title-img {
  height: auto;
  width: 519px;
  max-width: 100%;
}

/* Badges - bottom left (hexagonal, Figma image) */
.hero__badges {
  margin-top: 24px;
  margin-bottom: 0;
}

.hero__badges-img {
  height: 134px;
  width: auto;
}

.hero__footnote {
  position: absolute;
  bottom: 18px;
  right: 40px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.2rem;
  color: #999;
  margin: 0;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .hero__content {
    padding: 100px 0 0 40px;
  }

  .hero__badges {
    margin-top: 20px;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hero {
    margin-top: 0;
    max-height: 522px;
  }

  .hero__bg img {
    min-height: 522px;
  }

  .hero__content {
    padding: 72px 24px 0;
    align-items: flex-start;
  }

  .hero__main-text {
    align-items: flex-start;
    gap: 12px;
  }

  .hero__title-image {
    text-align: left;
  }

  .hero__title-img {
    width: 280px;
  }

  .hero__insurance-badge {
    height: 32px;
  }

  .hero__achievement {
    width: 100px;
    height: 85px;
    top: -20px;
    right: -10px;
  }

  .hero__badges {
    margin-top: 16px;
  }

  .hero__badges-img {
    height: 80px;
  }
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about {
  padding: 0 0 40px;
  background-color: var(--color-white);
}

.about__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 800px 1fr;
  grid-template-rows: auto auto 1fr auto;
  column-gap: 56px;
  align-items: start;
  min-height: 644px;
}

/* 左: 画像（全行ストレッチ） */
.about__image {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 右: テキストエリア */
.about__stats {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 14px;
  padding: 20px 80px 0 0;
  margin-bottom: 32px;
}

.about__stat-img {
  height: 54px;
  width: auto;
}

.about__title {
  grid-column: 2;
  grid-row: 2;
  padding-right: 80px;
  margin-bottom: 40px;
}

.about__title-img {
  display: block;
  width: 504px;
  height: auto;
}

.about__text {
  grid-column: 2;
  grid-row: 3;
  padding-right: 80px;
}

.about__text p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--color-text);
  margin-bottom: 8px;
}

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

.about__btn {
  grid-column: 2;
  grid-row: 4;
  justify-self: start;
  align-self: end;
  padding-right: 80px;
  margin-top: 40px;
  padding-bottom: 20px;
}

.about__btn.btn--primary {
  padding: 24px;
  border-radius: 0;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   Report (MYLILYレポート)
   -------------------------------------------------------------------------- */
.report {
  padding: 80px 0;
  background-color: var(--color-bg-cream);
}

.report__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.report__main {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.report__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.report__stat {
  flex-shrink: 0;
}

.report__stat-ring {
  position: relative;
  width: 360px;
  height: 360px;
}

.report__stat-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.report__stat-ring-bg {
  fill: none;
  stroke: url(#goldGradient);
  stroke-width: 12;
}

.report__stat-ring-progress {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 565.48;
  transition: stroke-dashoffset 1.5s ease;
}

.report__stat-ring-progress.is-visible {
  stroke-dashoffset: 141.37;
}

[data-slide="1"] .report__stat-ring-progress.is-visible {
  stroke-dashoffset: 9.61;
}

.report__stat-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.report__stat-value {
  font-family: 'Source Serif 4', var(--font-en), serif;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.report__stat-unit {
  font-size: 3rem;
}

.report__stat-desc {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text);
}

.report__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.report__right {
  flex: 1;
  padding-top: 20px;
}

.report__header {
  margin-bottom: 32px;
}

.report__label {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.report__heading {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-text);
}

.report__subheading-wrap {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.report__subheading-num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--color-text);
}

.report__subheading {
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--color-text);
}

.report__text {
  margin-bottom: 32px;
}

.report__text p {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 16px;
}

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

.report__note p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.report__more-link {
  display: inline-block;
  margin-top: 24px;
  font-size: 1.5rem;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}


/* --------------------------------------------------------------------------
   News
   -------------------------------------------------------------------------- */
.news {
  padding: 40px 0;
  background-color: var(--color-bg);
}

.news__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.news__header {
  flex-shrink: 0;
}

.news__header .section-label {
  margin-bottom: 8px;
}

.news__header .section-title-ja {
  margin-bottom: 0;
}

.news__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.news__item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.news__item time {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-text-light);
  flex-shrink: 0;
  letter-spacing: 0.04em;
}

.news__text {
  font-size: 1.6rem;
  color: var(--color-text);
}

.news__more {
  font-size: 1.4rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.news__more:hover { opacity: 0.7; }

/* --------------------------------------------------------------------------
   Flow Section (診療の流れ)
   -------------------------------------------------------------------------- */
.flow {
  padding: 80px 0 80px;
  background-color: var(--color-bg-cream);
}

.flow__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.flow__header {
  margin-bottom: 56px;
  text-align: center;
}

.flow__desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-top: 24px;
  max-width: 603px;
  margin-left: auto;
  margin-right: auto;
}

.flow__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.flow__item {
  text-align: left;
}

.flow__item-num {
  font-family: 'Source Serif 4', var(--font-en), serif;
  font-size: 8rem;
  font-weight: 400;
  color: var(--color-text-light);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}

.flow__item-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
}

.flow__item-image {
  width: 100%;
  aspect-ratio: 296 / 197;
  border-radius: 8px;
  overflow: hidden;
}

.flow__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Hours
   -------------------------------------------------------------------------- */
.hours {
  padding: 80px 0 80px;
  background-color: var(--color-bg);
}

.hours__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.hours__header { text-align: center; margin-bottom: 56px; }

.hours__table {
  width: 100%;
  margin: 0 auto 40px;
  border-collapse: collapse;
}

.hours__table th,
.hours__table td {
  padding: 16px 20px;
  text-align: center;
  font-size: 1.5rem;
}

.hours__table thead th {
  background-color: var(--color-primary-light);
  color: var(--color-white);
  font-weight: 500;
}

.hours__table thead th:first-child {
  background-color: var(--color-primary);
}

.hours__table tbody td {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

.hours__table tbody td:first-child { font-weight: 500; }

.hours__mark { color: var(--color-text-light); }

.hours__info { text-align: center; }

.hours__text {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.hours__note {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

/* --------------------------------------------------------------------------
   Wheat Banner
   -------------------------------------------------------------------------- */
.wheat-banner {
  width: 100%;
  height: 540px;
  overflow: hidden;
}

.wheat-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   MYLILY Care
   -------------------------------------------------------------------------- */
.mylily-care {
  padding: 80px 0 80px;
  background-color: var(--color-bg-cream);
}

.mylily-care__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.mylily-care__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.mylily-care__header-left {
  text-align: left;
}

.mylily-care__title {
  font-family: 'Zen Old Mincho', serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.7;
  margin-top: 16px;
  color: var(--color-text);
}

.mylily-care__lead {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 16px;
  color: var(--color-text);
}

.mylily-care__cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-right: 40px;
}

.mylily-care__cards::-webkit-scrollbar {
  display: none;
}

.mylily-care__card {
  flex: 0 0 calc((100% - 48px) / 3 - 16px);
  background-color: #8B7A4C;
  color: var(--color-white);
  padding: 32px 24px;
  border-radius: 8px;
  text-align: left;
  transition: var(--transition);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  scroll-snap-align: start;
}

.mylily-care__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.12);
}

.mylily-care__card-num {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.mylily-care__card-illust {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto 24px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mylily-care__card-title {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

.mylily-care__card-desc {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Nav Arrow (shared component) */
.nav-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-primary);
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-arrow:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.mylily-care__nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 40px;
}

/* SP-only label (hidden on desktop) */
.mylily-care__sp-label {
  display: none;
}

/* --------------------------------------------------------------------------
   Doctor
   -------------------------------------------------------------------------- */
.doctor {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.doctor__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.doctor__header { text-align: left; margin-bottom: 56px; }

.doctor__doctors {
  display: flex;
  gap: 56px;
  margin-bottom: 40px;
}

.doctor__content {
  flex: 1;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.doctor__image {
  flex: 0 0 220px;
  overflow: hidden;
}

.doctor__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  border-radius: 4px;
}

.doctor__info {
  flex: 1;
}

.doctor__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 4px;
}

.doctor__more:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.doctor__position {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.doctor__name {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.doctor__name-en {
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-left: 12px;
}

.doctor__credentials {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  padding-left: 12px;
  border-left: 2px solid var(--color-border);
}

.doctor__credentials li {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-text);
}

.doctor__profile p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 16px;
}

/* --------------------------------------------------------------------------
   Medicine
   -------------------------------------------------------------------------- */
.medicine {
  padding: 80px 0;
  background-color: #FFFBF3;
}

.medicine__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.medicine__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

.medicine__title {
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 16px;
}

.medicine__lead {
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--color-text);
}

.medicine__cards {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.medicine__cards::-webkit-scrollbar {
  display: none;
}

.medicine__card {
  flex: 0 0 330px;
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  padding: 32px;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
}

.medicine__card-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 8px;
}

.medicine__card-subtitle {
  font-size: 1.4rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.medicine__card-text {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
  flex-grow: 1;
}

.medicine__card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: var(--color-border-light);
  border-radius: 4px;
  margin-bottom: 20px;
}

.medicine__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-text);
  padding-bottom: 2px;
  margin-top: auto;
}

.medicine__card-link:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.medicine__nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   Pricing (料金プラン)
   -------------------------------------------------------------------------- */
.pricing {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.pricing__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px;
}

.pricing__header {
  text-align: center;
}

.pricing__description {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 0;
  margin-bottom: 56px;
  max-width: 538px;
  margin-left: auto;
  margin-right: auto;
}

.pricing__cards {
  display: flex;
  gap: 32px;
  justify-content: center;
}

.pricing__card {
  flex: 0 0 544px;
  border: 1px solid #E9E9E2;
  background: #FEFDFB;
  overflow: hidden;
}

.pricing__card-head {
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  padding: 12px 0;
  letter-spacing: 0.08em;
}

.pricing__card-body {
  padding: 32px 40px;
}

.pricing__card-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.pricing__card-label {
  font-size: 1.8rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.04em;
}

.pricing__card-number {
  font-size: 3.2rem;
  font-weight: 400;
  color: #42220F;
  letter-spacing: 0.04em;
}

.pricing__card-unit {
  font-size: 2rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.08em;
}

.pricing__card-divider {
  border: none;
  border-top: 1px solid #E9E9E2;
  margin: 20px 0;
}

.pricing__card-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing__card-monthly {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing__card-monthly-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: #42220F;
}

.pricing__card-actual {
  font-size: 1.4rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.04em;
}

.pricing__note {
  text-align: right;
  font-size: 1rem;
  font-weight: 500;
  color: #B2A581;
  letter-spacing: 0.04em;
  margin-top: 16px;
}

.pricing__services-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.08em;
  margin-top: 64px;
  margin-bottom: 32px;
}

.pricing__services {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.pricing__service-card {
  flex: 0 0 234px;
  background: #E9E9E2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pricing__service-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.pricing__service-name {
  font-size: 2rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.04em;
}

.pricing__notes {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.pricing__notes-column {
  flex: 1;
}

.pricing__notes-heading {
  font-size: 1.3rem;
  font-weight: 500;
  color: #B2A581;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.pricing__notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing__notes-list li {
  font-size: 1.2rem;
  font-weight: 500;
  color: #B2A581;
  letter-spacing: 0.04em;
  line-height: 1.8;
  padding-left: 1.2em;
  position: relative;
}

.pricing__notes-list li::before {
  content: "−";
  position: absolute;
  left: 0;
}

/* --------------------------------------------------------------------------
   Story (患者体験談)
   -------------------------------------------------------------------------- */
.story {
  padding: 0;
  background-color: var(--color-bg);
}

.story__slides {
  display: flex;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.story__slides::-webkit-scrollbar {
  display: none;
}

.story__slide {
  position: relative;
  flex: 0 0 80%;
  aspect-ratio: 1152 / 922;
  overflow: hidden;
  scroll-snap-align: start;
}

.story__slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__slide-header {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 1;
}

.story__slide-label {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #FEFDFB;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.story__slide-name {
  font-size: 3.2rem;
  font-weight: 500;
  color: #FEFDFB;
}

.story__slide-card {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44%;
  z-index: 1;
}

.story__slide-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(140, 130, 80, 0.6) 0%, rgba(100, 90, 50, 0.85) 100%);
}

.story__slide-card-inner {
  position: relative;
  padding: 24px 32px;
  z-index: 1;
}

.story__slide-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 6rem;
  font-weight: 400;
  color: #FEFDFB;
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}

.story__slide-heading {
  font-size: 2.2rem;
  font-weight: 500;
  color: #FEFDFB;
  line-height: 1.6;
  margin-bottom: 12px;
}

.story__slide-body {
  font-size: 1.6rem;
  font-weight: 500;
  color: #FEFDFB;
  line-height: 1.8;
}

.story__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* --------------------------------------------------------------------------
   FAQ (よくある質問)
   -------------------------------------------------------------------------- */
.faq {
  padding: 80px 0;
  background-color: var(--color-bg);
}

.faq__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 240px;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq__q-mark {
  font-family: 'Lato', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text-light);
  flex-shrink: 0;
}

.faq__q-text {
  flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-text);
}

.faq__toggle {
  font-size: 2rem;
  color: var(--color-text-light);
  flex-shrink: 0;
}

.faq__answer {
  display: none;
  padding: 0 0 20px 52px;
}

.faq__item--active .faq__answer {
  display: block;
}

.faq__answer p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: var(--color-text);
}

.faq__item:nth-child(n+6) {
  display: none;
}

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

.faq__more-link {
  font-size: 1.5rem;
  color: var(--color-text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --------------------------------------------------------------------------
   Column + CTA Wrapper (Figmaでは1つの夕焼け背景セクション)
   __bg実divで夕焼け背景画像を配置（擬似要素だと本番で非表示になるため）
   -------------------------------------------------------------------------- */
.column-cta-wrap {
  position: relative;
  overflow: hidden;
}

.column-cta-wrap__bg {
  position: absolute;
  top: 180px;
  left: 0;
  width: 100%;
  height: calc(100% - 180px);
  background: url('assets/images/cta-bg.jpg') center top / cover no-repeat;
  z-index: 0;
}

.column-cta-wrap__bg::before {
  content: '';
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  height: 280px;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg) 50%, rgba(255, 251, 243, 0) 100%);
  pointer-events: none;
}

.column-cta-wrap__bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, rgba(78, 63, 28, 0) 0%, rgba(78, 63, 28, 0.3) 100%);
}

/* --------------------------------------------------------------------------
   Column (医師監修コラム)
   -------------------------------------------------------------------------- */
.column {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.column__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.column__header {
  text-align: center;
  margin-bottom: 56px;
}

.column__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.column__card {
  display: block;
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.column__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.column__card-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--color-border-light);
  overflow: hidden;
}

.column__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column__card-body {
  padding: 20px;
}

.column__card-category {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 8px;
  border: 1px solid var(--color-primary);
  padding: 4px 12px;
  border-radius: 2px;
}

.column__card-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.column__card-date {
  display: block;
  font-family: var(--font-en);
  font-size: 1.2rem;
  color: var(--color-text-light);
  letter-spacing: 0.02em;
}

.column__more-wrap {
  text-align: right;
  margin-top: 40px;
}

.column__more {
  font-size: 1.5rem;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-primary);
  padding-bottom: 2px;
}

.column__more:hover {
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   CTA Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 365px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Inside column-cta-wrap (index.html): extra top padding for sunset gap */
.column-cta-wrap .cta-banner {
  padding-top: 400px;
  align-items: flex-end;
}

.cta-banner__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/images/cta-bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.faq-page .cta-banner__bg,
.menopause-page .cta-banner__bg,
.article-page .cta-banner__bg {
  background: url('assets/images/common/cta-bg.png') center/cover no-repeat;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(78, 63, 28, 0) 0%, rgba(78, 63, 28, 0.3) 66%);
  mix-blend-mode: multiply;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 80px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner__text {
  font-family: 'Zen Old Mincho', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #FEFDFB;
  margin-bottom: 20px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.cta-banner__subtext {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #FEFDFB;
  margin-bottom: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.cta-banner__subtext:last-child {
  margin-bottom: 0;
}

.btn--white {
  background-color: #FFFFFF;
  color: #546342;
  padding: 24px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.btn--white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------------------------------
   Subpage Hero
   -------------------------------------------------------------------------- */
.subpage-hero {
  position: relative;
  width: 100%;
  min-height: 616px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.subpage-hero__overlay {
  position: absolute;
  inset: 0;
}

.subpage-hero__content {
  position: relative;
  z-index: 1;
  background: #FEFDFB;
  text-align: center;
  padding: 40px 0;
  width: 100%;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.subpage-hero__title-en {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #B2A581;
  letter-spacing: 0.08em;
  line-height: 1;
}

.subpage-hero__title-ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Menopause Content Layout
   -------------------------------------------------------------------------- */
.menopause-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 160px;
  display: flex;
  gap: 80px;
}

.menopause-main {
  flex: 1 1 800px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menopause-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.menopause-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-decoration: none;
  color: inherit;
}

.menopause-card:hover {
  opacity: 0.8;
}

.menopause-card__img {
  width: 100%;
  aspect-ratio: 384 / 202;
  object-fit: cover;
  display: block;
}

.menopause-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menopause-card__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220F;
  margin: 0;
}

.menopause-card__date {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #B2A581;
  margin: 0;
}

.menopause-more {
  display: flex;
}

.menopause-more-btn {
  background: none;
  border: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.menopause-more-btn::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B2A581' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* --------------------------------------------------------------------------
   Sidebar
   -------------------------------------------------------------------------- */
.menopause-sidebar {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.menopause-sidebar__h2-en {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #B2A581;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
}

.menopause-sidebar__h2-ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: -12px 0 0;
}

.menopause-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menopause-tag {
  display: block;
  width: fit-content;
  padding: 8px 10px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid #D9D0C1;
}

.menopause-tag:hover {
  background: #42220F;
  color: #FEFDFB;
}

/* --------------------------------------------------------------------------
   Breadcrumb
   -------------------------------------------------------------------------- */
.breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 160px 40px;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.breadcrumb ol li {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #B2A581;
}

.breadcrumb ol li a {
  color: #42220F;
  text-decoration: none;
}

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

.breadcrumb ol li + li::before {
  content: '>';
  margin-right: 8px;
  color: #42220F;
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   FAQ Content Layout
   -------------------------------------------------------------------------- */
.faq-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 160px;
  display: flex;
  gap: 80px;
}

.faq-main {
  flex: 1 1 752px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  order: 1;
}

.faq-sidebar {
  flex: 0 0 288px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  order: 2;
}

/* FAQ Category Label */
.faq-category-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  color: #B2A581;
  line-height: 1;
  margin: 0;
}

/* FAQ List & Items */
.faq-list {
  border-top: 1px solid #E9E9E2;
}

.faq-item {
  border-bottom: 1px solid #E9E9E2;
}

.faq-item__q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 16px;
  cursor: pointer;
  user-select: none;
}

.faq-item__q-label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #B2A581;
  line-height: 1.7;
  flex-shrink: 0;
}

.faq-item__q-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #42220F;
  line-height: 1.7;
  flex: 1;
}

.faq-item__toggle {
  font-size: 2rem;
  color: #B2A581;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  line-height: 1.7;
}

.faq-item__a {
  display: none;
  padding: 0 16px 24px 47px;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

.faq-item__a p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}

/* FAQ More Button */
.faq-more-btn {
  background: none;
  border: 1px solid #B2A581;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.04em;
  cursor: pointer;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
}

.faq-more-btn::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23B2A581' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* FAQ Search Box */
.faq-search {
  display: flex;
  flex-direction: column;
}

.faq-search__label {
  display: none;
}

.faq-search__input-wrap {
  display: flex;
  height: 56px;
}

.faq-search__input {
  flex: 1;
  border: 1px solid #75612C;
  border-right: none;
  padding: 8px 16px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  background: transparent;
  outline: none;
}

.faq-search__input::placeholder {
  color: #B2A581;
}

.faq-search__btn {
  width: 56px;
  height: 56px;
  background: #75612C;
  border: 1px solid #75612C;
  color: #FEFDFB;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-search__btn:hover {
  background: #5E4D23;
}

/* FAQ Sidebar Category */
.faq-sidebar-category {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-sidebar-category__title-en {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #B2A581;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0;
}

.faq-sidebar-category__title-ja {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #42220F;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: -12px 0 0;
}

.faq-sidebar-category__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-sidebar-category__item {
  padding: 16px;
  border: 1px solid #B2A581;
  border-bottom: none;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  cursor: pointer;
}

.faq-sidebar-category__item:last-child {
  border-bottom: 1px solid #B2A581;
}

.faq-sidebar-category__item.is-active {
  background: #E9E9E2;
  color: #B2A581;
}

.faq-sidebar-category__item:hover:not(.is-active) {
  background: rgba(233, 233, 226, 0.5);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  padding: 60px 80px;
  background-color: #61482A;
  color: #FEFDFB;
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 56px;
}

.footer__brand {
  flex-shrink: 0;
}

.footer__logo {
  margin-bottom: 24px;
}

.footer__logo img {
  width: 280px;
  height: auto;
}

.footer__social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer__social a {
  display: flex;
  opacity: 0.9;
  transition: var(--transition);
}

.footer__social a:hover {
  opacity: 1;
}

.footer__social img {
  width: 28px;
  height: 28px;
}

.footer__nav {
  display: flex;
  gap: 60px;
  flex: 1;
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
}

.footer__nav-heading {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FEFDFB;
  margin-bottom: 16px;
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-list a {
  font-size: 1.4rem;
  font-weight: 400;
  color: #FEFDFB;
  transition: var(--transition);
}

.footer__nav-list a:hover {
  opacity: 0.7;
}

.footer__nav-column:first-child .footer__nav-list li {
  padding-left: 1.2em;
  position: relative;
}

.footer__nav-column:first-child .footer__nav-list li::before {
  content: "−";
  position: absolute;
  left: 0;
}

.footer__nav-column:first-child .footer__nav-list a {
  font-size: 1.2rem;
  font-weight: 500;
}

.footer__contact {
  flex-shrink: 0;
}

.footer__contact-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #FEFDFB;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  border: 1px solid #FEFDFB;
  color: #FEFDFB;
  font-size: 1.6rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer__contact-btn:hover {
  background: rgba(254, 253, 251, 0.1);
}

/* --------------------------------------------------------------------------
   Fixed CTA
   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .hero__content { padding: 100px 0 0 40px; }
  .hero__title-img { width: 380px; }
  .hero__achievement { width: 140px; height: 119px; right: -30px; top: 10px; }
  .hero__badges-img { height: 100px; }
  .about__inner { padding: 0; column-gap: 40px; grid-template-columns: 55% 1fr; }
  .about__stats { padding: 20px 40px 0 0; }
  .about__title { padding-right: 40px; }
  .about__text { padding-right: 40px; }
  .about__btn { padding-right: 40px; }
  .report__main { flex-direction: column; align-items: center; }
  .report__inner { padding: 0 40px; }
  .report__left { align-items: center; }
  .report__stat-ring { width: 320px; height: 320px; }
  .report__stat-value { font-size: 4.8rem; }
  .report__right { padding-top: 0; }
  .flow__steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .flow__inner { padding: 0 40px; }
  .mylily-care__card { flex: 0 0 calc(50% - 12px); }
  .mylily-care__inner { padding: 0 40px; }
  .doctor__doctors { flex-direction: column; gap: 48px; }
  .doctor__inner { padding: 0 40px; }
  .doctor__content { flex-direction: row; }
  .doctor__image { flex: 0 0 180px; }
  .pricing__cards { flex-direction: column; align-items: center; }
  .pricing__card { flex: none; width: 100%; max-width: 544px; }
  .pricing__services { flex-wrap: wrap; }
  .medicine__inner { padding: 0 40px; }
  .pricing__inner { padding: 0 40px; }
  .hours__inner { padding: 0 40px; }
  .faq__inner { padding: 0 40px; }
  .column__inner { padding: 0 40px; }
  .footer__inner { gap: 40px; }
  .pricing__service-card { flex: 0 0 calc(50% - 4px); }

  /* Menopause Tablet */
  .menopause-content { padding: 80px 40px; gap: 40px; }
  .menopause-main { flex: 1 1 auto; }
  .menopause-sidebar { flex: 0 0 200px; }
  .breadcrumb { padding: 0 40px 40px; }

  /* FAQ Tablet */
  .faq-content { padding: 80px 40px; gap: 40px; }
  .faq-main { flex: 1 1 auto; }
  .faq-sidebar { flex: 0 0 240px; }
}

@media (max-width: 768px) {
  html { font-size: 56.25%; }

  /* Section Utilities - Figma SP sections use gap=32 */
  .section-title-ja { font-size: 2.4rem; margin-bottom: 32px; }

  /* Header Mobile */
  .header__inner { padding: 0 16px; height: 56px; }
  .header__logo-img { height: 22px; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }

  /* Main flex for section reorder (Figma SP order) */
  main#main { display: flex; flex-direction: column; }
  .hero { order: 1; }
  .news { order: 2; }
  .about { order: 3; }
  .flow { order: 4; }
  .hours { order: 5; }
  .wheat-banner { order: 6; }
  .mylily-care { order: 7; }
  .doctor { order: 8; }
  .medicine { order: 9; }
  .pricing { order: 10; }
  .report { order: 11; }
  .story { order: 12; }
  .faq { order: 13; }
  .column-cta-wrap { order: 14; }

  /* Hero Mobile - Figma SP: 390x522, content at (24,91), achievement→brand→title→hours→badges */
  .hero { max-height: 522px; overflow: hidden; }
  .hero__bg img { width: 100%; height: 522px; object-fit: cover; object-position: 35% top; } /* SP: shift image left to reveal more doctor on right */
  .hero__overlay { width: 70%; background: linear-gradient(to left, rgba(251,253,249,0) 0%, rgba(251,253,249,0.7) 65%); } /* Narrower overlay so doctor is more visible on right */
  .hero__content { padding: 91px 24px 0; align-items: flex-start; }
  .hero__achievement {
    position: static;
    width: 123px;
    height: 105px;
  }
  .hero__main-text { padding-top: 0; gap: 8px; }
  .hero__title-img { width: 240px; }
  .hero__insurance-badge { height: 28px; }
  .hero__badges-img { height: 70px; }

  /* About Mobile - Figma SP: pad=T0 B48 L24 R24, gap=40, order: stats→title→image→text→CTA */
  .about { padding: 0 0 48px; }
  .about__inner { display: flex; flex-direction: column; padding: 0 24px; gap: 40px; min-height: auto; }
  .about__stats { grid-column: auto; grid-row: auto; gap: 16px; justify-content: center; order: 1; padding: 0; }
  .about__stat-img { height: 44px; }
  .about__title { grid-column: auto; grid-row: auto; margin-bottom: 0; order: 2; padding-right: 0; }
  .about__title-img { width: 100%; max-width: 342px; }
  .about__text { grid-column: auto; grid-row: auto; margin-bottom: 0; order: 4; padding-right: 0; }
  .about__text p { font-size: 1.4rem; line-height: 2; }
  .about__btn { grid-column: auto; grid-row: auto; display: inline-flex; width: 100%; order: 5; padding-right: 0; padding-bottom: 0; margin-top: 0; }
  .about__image { grid-column: auto; grid-row: auto; flex: none; width: 100%; order: 3; min-height: auto; overflow: visible; }
  .about__image img { height: auto; }

  /* News Mobile - Figma SP: 390x221, gap=20, pad=24 all */
  .news { padding: 24px 0; }
  .news__inner { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .news__body { flex-direction: column; align-items: flex-start; gap: 16px; padding-top: 16px; }
  .news__item { flex-direction: column; align-items: flex-start; gap: 8px; }
  .news__more { align-self: flex-end; }

  /* Report Mobile - Figma SP: gap=40, pad=T48 B48 L24 R24, text first then ring */
  .report { padding: 48px 0; }
  .report__inner { padding: 0 24px; }
  .report__main { flex-direction: column; gap: 40px; align-items: center; }
  .report__right { order: -1; padding-top: 0; }
  .report__left { align-items: center; }
  .report__stat-ring { width: 342px; height: 342px; }
  .report__stat-value { font-size: 5.6rem; }
  .report__stat-unit { font-size: 2.8rem; }
  .report__stat-desc { font-size: 1.3rem; line-height: 1.6; }
  .report__note p { font-size: 1.1rem; line-height: 1.5; }
  .report__heading { font-size: 2.2rem; }
  .report__subheading { font-size: 1.8rem; }
  .report__text p { font-size: 1.4rem; }
  .report__nav { margin-top: 24px; }

  /* Flow Mobile - Figma SP: 2-column grid, gap=32, pad=T48 L24 R24 */
  .flow { padding: 48px 0 0; }
  .flow__inner { padding: 0 24px; }
  .flow__header { margin-bottom: 32px; }
  .flow__steps {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 32px;
  }
  .flow__item-num { font-size: 2.4rem; margin-bottom: 4px; }
  .flow__item-title { font-size: 1.3rem; line-height: 1.5; margin-bottom: 8px; }
  .flow__item-image { aspect-ratio: 161 / 107; }

  /* Hours Mobile - Figma SP: gap=32, pad=T48 B48 L24 R24 */
  .hours { padding: 48px 0; }
  .hours__inner { padding: 0 24px; }
  .hours__header { text-align: left; margin-bottom: 32px; }
  .hours__table { font-size: 1.2rem; }
  .hours__table th, .hours__table td { padding: 10px 6px; font-size: 1.2rem; }
  .hours__info { text-align: left; }
  .hours__text { font-size: 1.5rem; }
  .hours__note { font-size: 1.2rem; }

  /* Wheat Banner Mobile - Figma SP: 390x124 */
  .wheat-banner { height: 124px; }

  /* MYLILY Care Mobile - Figma SP: gap=32, pad=T48 B48 L24 R24 */
  .mylily-care { padding: 48px 0; }
  .mylily-care__inner { padding: 0; }
  .mylily-care__header { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 32px; padding: 0 24px; }
  .mylily-care__lead { font-size: 1.6rem; line-height: 1.7; }
  .mylily-care__sp-label {
    display: block;
    padding: 0 24px;
    margin-bottom: 20px;
  }
  .mylily-care__sp-label-en {
    font-family: var(--font-en);
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--color-primary-light);
    margin-bottom: 4px;
  }
  .mylily-care__sp-label-ja {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-primary);
  }
  .mylily-care__cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 0 0 0 24px;
    scrollbar-width: none;
  }
  .mylily-care__cards::-webkit-scrollbar { display: none; }
  .mylily-care__card {
    flex: 0 0 293px;
    max-width: 293px;
    scroll-snap-align: start;
    padding: 48px 32px 32px;
    min-height: auto;
  }
  .mylily-care__card-title { font-size: 1.6rem; }
  .mylily-care__card-desc { font-size: 1.3rem; }
  .mylily-care__nav { margin-top: 16px; margin-bottom: 0; }

  /* Doctor Mobile - Figma SP: gap=32, pad=T48 B48 L24 R24 */
  .doctor { padding: 48px 0; }
  .doctor__inner { padding: 0 24px; }
  .doctor__header { margin-bottom: 32px; }
  .doctor__doctors { flex-direction: column; gap: 40px; }
  .doctor__content { flex-direction: column; gap: 32px; }
  .doctor__image { flex: none; width: 100%; max-width: none; } /* Figma SP: photo nearly full width */
  .doctor__image img { width: 100%; height: auto; aspect-ratio: 342 / 427; object-fit: cover; } /* Figma SP: ~342x427 */
  .doctor__info { text-align: left; }
  .doctor__name { font-size: 2.2rem; }
  .doctor__profile p { font-size: 1.4rem; line-height: 1.8; }
  /* Doctor order swap for SP (Figma SP: 小野陽子 first, then 北野理絵) */
  .doctor__doctors > .doctor__content:nth-child(1) { order: 2; }
  .doctor__doctors > .doctor__content:nth-child(2) { order: 1; }

  /* Medicine Mobile - Figma SP: gap=40, pad=T56 B56 L24 R24 */
  .medicine { padding: 56px 0; }
  .medicine__inner { padding: 0; }
  .medicine__header { flex-direction: column; gap: 24px; padding: 0 24px; margin-bottom: 32px; }
  .medicine__title { font-size: 2.2rem; }
  .medicine__lead { font-size: 1.4rem; }
  .medicine__cards { padding: 0 24px; gap: 16px; scroll-snap-type: x mandatory; }
  .medicine__card { flex: 0 0 293px; max-width: 293px; padding: 20px; scroll-snap-align: start; }
  .medicine__card-title { font-size: 1.8rem; }
  .medicine__card-text { font-size: 1.4rem; }
  .medicine__nav { padding: 0 24px; }

  /* Pricing Mobile - Figma SP: gap=32, pad=T48 B48 L24 R24 */
  .pricing { padding: 48px 0; }
  .pricing__inner { padding: 0 24px; }
  .pricing__description { font-size: 1.4rem; margin-top: 24px; margin-bottom: 32px; text-align: left; }
  .pricing__card { flex: none; width: 100%; }
  .pricing__card-body { padding: 24px; }
  .pricing__card-number { font-size: 2.8rem; }
  .pricing__services-title { font-size: 2rem; margin-top: 48px; }
  .pricing__service-card { flex: 0 0 calc(50% - 4px); padding: 16px; }
  .pricing__service-card img { width: 60px; height: 60px; }
  .pricing__service-name { font-size: 1.6rem; }
  .pricing__notes { flex-direction: column; gap: 16px; }
  .pricing__notes-list li { font-size: 1.1rem; }

  /* Story Mobile - Figma SP: cards 293px wide, gap=16, pad-L24 R24, horizontal scroll */
  .story { padding: 0; }
  .story__slides { flex-direction: row; padding: 0 24px; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .story__slides::-webkit-scrollbar { display: none; }
  .story__slide { flex: 0 0 293px; aspect-ratio: 293 / 626; scroll-snap-align: start; }
  .story__slide-header { top: 16px; left: 16px; }
  .story__slide-label { font-size: 1.2rem; }
  .story__slide-name { font-size: 2rem; }
  .story__slide-card { height: 70%; }
  .story__slide-card-inner { padding: 24px; }
  .story__slide-quote-mark { font-size: 3.6rem; margin-bottom: 4px; }
  .story__slide-heading { font-size: 1.4rem; line-height: 1.5; margin-bottom: 8px; }
  .story__slide-body { font-size: 1.2rem; line-height: 1.7; }
  .story__nav { margin-top: 16px; padding: 0 24px; justify-content: flex-start; }

  /* FAQ Mobile */
  .faq { padding: 48px 0; }
  .faq__inner { padding: 0 24px; }
  .faq__q-text { font-size: 1.4rem; }
  .faq__answer p { font-size: 1.3rem; }

  /* Column + CTA Wrapper Mobile */
  .column-cta-wrap__bg { top: 120px; height: calc(100% - 120px); }
  .column-cta-wrap__bg::before { top: -120px; height: 180px; }

  /* Column Mobile - Figma SP: gap=56, pad=T56 B56 L24 R24 */
  .column { padding: 56px 0; }
  .column__inner { padding: 0 24px; }
  .column__cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* CTA Banner Mobile - Figma SP: 390x694, padL=24 padR=24 padB=24, gap=32 */
  .cta-banner { min-height: auto; }
  .column-cta-wrap .cta-banner { padding-top: 250px; }
  .cta-banner__content { padding: 0 24px 24px; flex-direction: column; align-items: flex-start; gap: 32px; }
  .cta-banner__text { font-size: 2.8rem; }
  .cta-banner__subtext { font-size: 1.6rem; }
  .cta-banner .btn, .btn--white { width: 100%; justify-content: center; padding: 24px; font-size: 1.6rem; }

  /* Subpage Hero Mobile - Figma SP: 390x609, padB=24 */
  .subpage-hero { min-height: 609px; }
  .subpage-hero__content { padding: 24px; max-width: 342px; gap: 12px; }
  .subpage-hero__title-en { font-size: 1.3rem; }
  .subpage-hero__title-ja { font-size: 2.4rem; }

  /* Menopause Mobile - Figma SP: padL=24 padR=24, padT=56, padB=56, gap=56, tags above cards */
  .menopause-content { padding: 56px 24px; flex-direction: column; gap: 56px; }
  .menopause-main { flex: none; order: 2; gap: 32px; }
  .menopause-sidebar { flex: none; order: 1; }
  .menopause-tags { flex-direction: row; flex-wrap: wrap; gap: 8px; }
  .menopause-cards { gap: 16px; }
  .menopause-card { gap: 12px; }
  .menopause-card__img { aspect-ratio: 163 / 86; }
  .menopause-card__body { gap: 4px; }
  .menopause-card__title { font-size: 1.4rem; }
  .menopause-card__date { font-size: 1.2rem; }
  .menopause-more-btn { font-size: 1.4rem; gap: 8px; }
  .menopause-sidebar__h2-en { font-size: 1rem; }
  .menopause-sidebar__h2-ja { font-size: 2rem; }

  /* FAQ Mobile - Figma SP: padL=24 padR=24, padT=56 padB=56, gap=80 */
  .faq-content { padding: 56px 24px; flex-direction: column; gap: 80px; }
  .faq-main { flex: none; order: 2; gap: 32px; }
  .faq-sidebar { flex: none; order: 1; gap: 32px; }
  .faq-category-label { font-size: 2.4rem; }
  .faq-item__q { padding: 24px 8px; }
  .faq-item__q-text { font-size: 1.5rem; }
  .faq-item__a { padding: 0 8px 24px 39px; }
  .faq-item__a p { font-size: 1.4rem; }
  .faq-more-btn { font-size: 1.4rem; gap: 8px; }
  .faq-sidebar-category { gap: 20px; }
  .faq-sidebar-category__title-en { font-size: 1rem; }
  .faq-sidebar-category__title-ja { font-size: 2rem; }
  .faq-sidebar-category__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .faq-sidebar-category__item {
    font-size: 1.4rem;
    padding: 8px 12px;
    border: 1px solid #B2A581;
    flex: 0 0 auto;
  }
  .faq-sidebar-category__item:last-child { border-bottom: 1px solid #B2A581; }

  /* Breadcrumb Mobile */
  .breadcrumb { padding: 0 24px 40px; }
  .breadcrumb ol li { font-size: 1.2rem; }

  /* Footer Mobile - Figma SP: gap=56, pad=T56 B56 L24 R24 */
  .footer { padding: 56px 24px; }
  .footer__inner { flex-direction: column; gap: 56px; }
  .footer__logo img { width: 200px; }
  .footer__nav { flex-direction: column; gap: 32px; }
  .footer__contact { text-align: left; }

}

/* --------------------------------------------------------------------------
   Small Mobile (480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  html { font-size: 50%; }

  /* Hero - 480px fine-tuning */
  .hero__content { padding: 80px 24px 0; }

  /* About */
  .about__title-img { max-width: 280px; }

  /* Report - keep Figma SP size */
  .report__stat-ring { width: 342px; height: 342px; }
  .report__stat-value { font-size: 5.6rem; }
  .report__stat-unit { font-size: 3.6rem; }

  /* Hours */
  .hours__table th, .hours__table td { padding: 8px 4px; font-size: 1.1rem; }

  /* Carousel cards */
  .mylily-care__cards, .medicine__cards { gap: 12px; }

  /* Pricing */
  .pricing__card-body { padding: 16px; }

  /* FAQ */
  .faq__q-text { font-size: 1.3rem; }

  /* CTA Banner */
  .cta-banner__content { padding: 0 24px 24px; }
  .cta-banner__text { font-size: 2.4rem; }

}

/* --------------------------------------------------------------------------
   Scroll Animations
   -------------------------------------------------------------------------- */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-zoom-in {
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 1s ease;
}

.scroll-fade-up.is-visible,
.scroll-fade-in.is-visible,
.scroll-fade-left.is-visible,
.scroll-fade-right.is-visible,
.scroll-zoom-in.is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for child elements */
.scroll-stagger > :nth-child(1) { transition-delay: 0s; }
.scroll-stagger > :nth-child(2) { transition-delay: 0.1s; }
.scroll-stagger > :nth-child(3) { transition-delay: 0.2s; }
.scroll-stagger > :nth-child(4) { transition-delay: 0.3s; }
.scroll-stagger > :nth-child(5) { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   Reduced Motion
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   Article Page (menopause-article.html)
   -------------------------------------------------------------------------- */
.article-page main {
  padding-top: 72px; /* header height */
}

/* Article Header */
.article-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0 0;
}

.article-header__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #42220F;
  margin: 0 0 12px;
}

.article-header__date {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #B2A581;
  margin: 0 0 32px;
}

.article-header__eyecatch {
  width: 100%;
  border-radius: 0;
  margin-bottom: 32px;
}

.article-header__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.article-header__profile {
  border: 1px solid #B2A581;
  padding: 24px;
}

.article-header__profile-name {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #42220F;
  margin-bottom: 16px;
}

.article-header__profile-details dl {
  margin: 0;
}

.article-header__profile-row {
  display: flex;
  gap: 16px;
  margin-bottom: 4px;
}

.article-header__profile-row dt {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #B2A581;
  min-width: 160px;
  flex-shrink: 0;
}

.article-header__profile-row dd {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  margin: 0;
}

/* Article Body */
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 0;
}

.article-body > section {
  margin-bottom: 56px;
}

.article-body > section:last-child {
  margin-bottom: 0;
}

.article-body h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #42220F;
  border-left: 4px solid #E66D54;
  padding-left: 24px;
  margin: 0 0 32px;
}

.article-body h3 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #B2A581;
  margin: 0 0 16px;
  padding-left: 42px;
  position: relative;
}

.article-body h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 1px;
  background: #B2A581;
}

.article-body p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #42220F;
  margin: 0 0 12px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

/* Article Tags */
.article-tags {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.article-tags__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.article-tags__label {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #B2A581;
  letter-spacing: 0.08em;
  margin: 0;
}

.article-tags__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #42220F;
  margin: 0;
}

.article-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags__item {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #42220F;
  border: 1px solid #B2A581;
  padding: 8px 10px;
  text-decoration: none;
}

/* Article Promotion Section */
.article-promo {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.article-promo h2 {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #42220F;
  border-left: 4px solid #E66D54;
  padding-left: 24px;
  margin: 0 0 32px;
}

.article-promo__intro {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #42220F;
  margin: 0 0 36px;
}

.article-promo__features-title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #42220F;
  margin: 0 0 16px;
}

.article-promo__features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.article-promo__features li {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  color: #42220F;
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 4px;
}

.article-promo__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #B2A581;
}

.article-promo__enterprise {
  margin-top: 36px;
}

.article-promo__enterprise-text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  margin: 0 0 16px;
}

.article-promo__logos {
  display: flex;
  gap: 16px;
}

.article-promo__logo-box {
  width: 240px;
  height: 96px;
  border: 1px solid #E9E9E2;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-promo__logo-box img {
  max-width: 192px;
  height: auto;
}

/* Article CTA (in-article LINE button) */
.article-cta {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 80px;
  text-align: center;
}

.article-cta p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  color: #42220F;
  margin: 0 0 12px;
}

.article-cta__sub {
  font-size: 1.4rem !important;
  color: #B2A581 !important;
  margin-bottom: 16px !important;
}

.article-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 360px;
  max-width: 100%;
  height: 72px;
  background: #06C755;
  color: #FEFDFB;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
}

.article-cta__btn:hover {
  opacity: 0.9;
}

/* Article Basic Info */
.article-info {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 100px;
  border: 1px solid #B2A581;
  padding: 24px;
}

.article-info__title {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: #42220F;
  margin: 0 0 16px;
}

.article-info__table {
  width: 100%;
}

.article-info__row {
  display: flex;
  gap: 16px;
  margin-bottom: 4px;
}

.article-info__row dt {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #B2A581;
  min-width: 160px;
  flex-shrink: 0;
}

.article-info__row dd {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  margin: 0;
}

.article-info__row dd a {
  color: #42220F;
  text-decoration: underline;
}

/* Article Related Section */
.article-related {
  background: #FFFBF3;
  padding: 80px 160px;
}

.article-related__title {
  text-align: center;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #42220F;
  margin: 0 0 8px;
}

.article-related__label {
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #B2A581;
  letter-spacing: 0.08em;
  margin: 0 0 40px;
}

.article-related__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto 40px;
}

.article-related__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #42220F;
  text-decoration: none;
  border: 1px solid #B2A581;
  padding: 8px 16px;
  width: fit-content;
  margin-left: auto;
}

.article-related__more span {
  color: #B2A581;
}

/* Article Page - Breadcrumb override */
.article-page .breadcrumb {
  background: #FFFBF3;
  padding: 0 160px 40px;
}

/* Article Page - responsive */
@media (max-width: 1024px) {
  .article-header {
    padding: 80px 40px 0;
  }
  .article-body {
    padding: 60px 40px;
  }
  .article-tags {
    padding: 0 40px 60px;
  }
  .article-promo {
    padding: 0 40px 60px;
  }
  .article-cta {
    padding: 0 40px 60px;
  }
  .article-info {
    margin: 0 40px;
    padding-bottom: 60px;
  }
  .article-related {
    padding: 60px 40px;
  }
  .article-page .breadcrumb {
    padding: 0 40px 40px;
  }
}

@media (max-width: 768px) {
  .article-header__title {
    font-size: 2.4rem;
  }
  .article-header__profile-name {
    font-size: 2rem;
  }
  .article-header__profile-row {
    flex-direction: column;
    gap: 4px;
  }
  .article-header__profile-row dt {
    min-width: auto;
  }
  .article-body h2 {
    font-size: 2.2rem;
  }
  .article-body h3 {
    font-size: 1.6rem;
  }
  .article-header {
    padding: 60px 20px 0;
  }
  .article-body {
    padding: 40px 20px;
  }
  .article-tags {
    padding: 0 20px 40px;
  }
  .article-promo {
    padding: 0 20px 40px;
  }
  .article-cta {
    padding: 0 20px 40px;
  }
  .article-info {
    margin: 0 20px;
    padding-bottom: 40px;
  }
  .article-related {
    padding: 40px 20px;
  }
  .article-related__cards {
    grid-template-columns: 1fr;
  }
  .article-page .breadcrumb {
    padding: 0 20px 20px;
  }
  .article-promo__logos {
    flex-direction: column;
  }
  .article-promo__logo-box {
    width: 100%;
  }
  .article-cta__btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   About Page
   -------------------------------------------------------------------------- */

/* メッセージセクション全体 */
.about-message {
  position: relative;
}

/* クリーム背景エリア（ブランドテキスト） */
.about-message__cream {
  background: var(--color-bg);
  padding: 120px 80px 60px;
}

.about-message__brand {
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

.about-message__heading {
  font-family: var(--font-ja);
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #75612C;
  margin-bottom: 40px;
}

.about-message__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.about-message__body p {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #75612C;
}

/* 夕焼け山背景 + THE GOLDEN HOUR ウォーターマーク */
.about-message__sunset {
  position: relative;
  height: 860px;
  overflow: hidden;
}

.about-message__sunset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.about-message__sunset::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(
    to bottom,
    rgba(254, 253, 251, 1) 0%,
    rgba(254, 253, 251, 0.6) 40%,
    rgba(254, 253, 251, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.about-message__golden-text {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Lato', sans-serif;
  font-size: 160px;
  font-weight: 300;
  color: #FFD7B2;
  letter-spacing: -3.2px;
  line-height: 1;
  text-align: center;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0.8;
}

/* 院長メッセージ */
.about-director {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: -320px auto 0;
  padding: 100px 80px;
  background: var(--color-bg);
}

.about-director__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-director__label {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #B2A581;
  margin-bottom: 12px;
}

.about-director__title {
  font-family: var(--font-ja);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220F;
}

.about-director__content {
  display: flex;
  gap: 48px;
  max-width: 1120px;
  margin: 0 auto;
}

.about-director__photo {
  flex: 0 0 480px;
}

.about-director__photo img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.about-director__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 10px 0;
}

.about-director__quote {
  font-family: 'Zen Old Mincho', serif;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: #42220F;
}

.about-director__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-director__paragraphs p {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: #42220F;
}

.about-director__name {
  margin-top: auto;
}

.about-director__name-role {
  font-family: var(--font-ja);
  font-size: 1.6rem;
  color: #42220F;
}

.about-director__name-jp {
  font-family: var(--font-ja);
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220F;
}

/* 私たちのチーム */
.about-team {
  position: relative;
  overflow: hidden;
  padding: 100px 80px 80px;
}

.about-team__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-team__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-team__bg-dark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 650px;
  background: linear-gradient(
    to bottom,
    rgba(78, 63, 28, 0) 0%,
    rgba(78, 63, 28, 0.5) 66%,
    rgba(78, 63, 28, 0.5) 100%
  );
  mix-blend-mode: multiply;
}

.about-team__bg-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 580px;
  background: linear-gradient(
    to bottom,
    rgba(254, 253, 251, 1) 0%,
    rgba(245, 245, 245, 0) 100%
  );
}

.about-team__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.about-team__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-team__label {
  font-family: 'Lato', sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #B2A581;
  margin-bottom: 12px;
}

.about-team__title {
  font-family: var(--font-ja);
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220F;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 64px;
  row-gap: 80px;
  margin-bottom: 80px;
}

.about-team__card {
  display: flex;
  gap: 0;
  overflow: hidden;
}

.about-team__card-photo {
  flex: 0 0 260px;
}

.about-team__card-photo img {
  width: 260px;
  height: 100%;
  object-fit: cover;
}

.about-team__card-info {
  flex: 1;
  padding: 10px 0 10px 40px;
  display: flex;
  flex-direction: column;
}

.about-team__card-role {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  color: #B2A581;
  margin-bottom: 4px;
}

.about-team__card-name {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.about-team__card-name-jp {
  font-family: var(--font-ja);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #42220F;
}

.about-team__card-name-en {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  color: #42220F;
}

.about-team__card-quals {
  border-left: 2px solid #B2A581;
  padding-left: 20px;
  margin-bottom: 16px;
}

.about-team__card-quals p {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  line-height: 1.7;
  color: #42220F;
}

.about-team__card-quote {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  color: #42220F;
  margin-bottom: 12px;
}

.about-team__card-bio {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #42220F;
}

/* About CTA (within team section) */
.about-team__cta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}

.about-team__cta-heading {
  font-family: 'Zen Old Mincho', serif;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #FEFDFB;
  margin-bottom: 16px;
}

.about-team__cta-sub {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  line-height: 1.7;
  color: #FEFDFB;
}

.about-team__cta-btn {
  flex-shrink: 0;
}

/* About page breadcrumb spacing */
.about-page .breadcrumb {
  background: var(--color-bg);
}

/* --------------------------------------------------------------------------
   About Page Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .about-message__cream {
    padding: 100px 40px 40px;
  }

  .about-message__sunset {
    height: 600px;
  }

  .about-message__golden-text {
    font-size: 80px;
    bottom: 60px;
  }

  .about-director {
    padding: 80px 40px;
    margin-top: -200px;
  }

  .about-director__content {
    flex-direction: column;
    align-items: center;
  }

  .about-director__photo {
    flex: 0 0 auto;
    max-width: 400px;
    width: 100%;
  }

  .about-director__photo img {
    height: auto;
  }

  .about-team {
    padding: 80px 40px 60px;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .about-team__card {
    max-width: 640px;
    margin: 0 auto;
  }

  .about-team__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .about-message__cream {
    padding: 100px 20px 32px;
  }

  .about-message__heading {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }

  .about-message__body p {
    font-size: 1.5rem;
    line-height: 2;
  }

  .about-message__body p br {
    display: none;
  }

  .about-message__sunset {
    height: 400px;
  }

  .about-message__golden-text {
    font-size: 48px;
    bottom: 40px;
    letter-spacing: -1px;
  }

  .about-director {
    padding: 60px 20px;
    margin-top: -120px;
  }

  .about-director__header {
    margin-bottom: 32px;
  }

  .about-director__title {
    font-size: 2.4rem;
  }

  .about-director__content {
    flex-direction: column;
  }

  .about-director__photo {
    flex: 0 0 auto;
    width: 100%;
  }

  .about-director__photo img {
    height: auto;
    max-height: 400px;
  }

  .about-director__quote {
    font-size: 2rem;
  }

  .about-director__paragraphs p {
    font-size: 1.4rem;
  }

  .about-director__name-jp {
    font-size: 2.2rem;
  }

  .about-team {
    padding: 60px 20px 40px;
  }

  .about-team__header {
    margin-bottom: 32px;
  }

  .about-team__title {
    font-size: 2.4rem;
  }

  .about-team__grid {
    grid-template-columns: 1fr;
    row-gap: 24px;
    margin-bottom: 48px;
  }

  .about-team__card {
    flex-direction: column;
  }

  .about-team__card-photo {
    flex: 0 0 auto;
  }

  .about-team__card-photo img {
    width: 100%;
    height: 280px;
  }

  .about-team__card-info {
    padding: 20px;
  }

  .about-team__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-team__cta-heading {
    font-size: 2.4rem;
  }

  .about-team__cta-sub {
    font-size: 1.5rem;
  }

  .about-team__cta-sub br {
    display: none;
  }

  .about-team__cta-btn {
    width: 100%;
    justify-content: center;
  }

  .about-page .breadcrumb {
    padding: 0 20px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .scroll-fade-up,
  .scroll-fade-in,
  .scroll-fade-left,
  .scroll-fade-right,
  .scroll-zoom-in {
    opacity: 1 !important;
    transform: none !important;
  }
}
