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

:root {
  --teal: #4EA99E;
  --teal-light: #7DCEC4;
  --teal-soft: #EDF7F5;
  --mint: #C8EDE7;
  --pink: #E4A0AC;
  --pink-soft: #FDF2F4;
  --pink-light: #F5D6DE;
  --yellow: #ECC872;
  --yellow-soft: #FDF6EC;
  --orange-soft: #FFF3E8;
  --blue-soft: #E8F2FF;
  --white: #FFFFFF;
  --cream: #FFFDF8;
  --dark: #333;
  --dark-sub: #555;
  --gray: #7A7A7A;
  --gray-light: #ABABAB;
  --gray-border: #ECECEC;
  --round: 'Shippori Mincho B1', 'YuMincho', serif;
  --sans: 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', sans-serif;
  --sans-en: 'DM Sans', sans-serif;
  --nav-height: 64px;
  --radius: 10px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); font-weight: 400; color: var(--dark); background: var(--cream); line-height: 1.9; font-size: 15px; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-height); display: flex; align-items: center; transition: background 0.4s, box-shadow 0.4s; }
.nav--scrolled { background: rgba(255,253,248,0.95); backdrop-filter: blur(16px); box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.nav__logo { font-family: var(--round); font-size: 14px; font-weight: 700; color: var(--white); transition: color 0.4s; letter-spacing: 0.04em; }
.nav--scrolled .nav__logo { color: var(--dark); }
.nav__links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav__links a { font-family: var(--round); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85); transition: color 0.3s; }
.nav--scrolled .nav__links a { color: var(--dark-sub); }
.nav__links a:hover { color: var(--teal); }
.nav__cta { background: var(--pink); color: var(--white) !important; padding: 8px 22px; border-radius: 24px; font-weight: 700; font-size: 13px; transition: background 0.3s, transform 0.3s; box-shadow: 0 3px 12px rgba(228,160,172,0.3); }
.nav__cta:hover { background: #D8949E; transform: translateY(-2px); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s, background 0.4s; }
.nav--scrolled .nav__hamburger span { background: var(--dark); }
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.nav__mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: rgba(255,253,248,0.98); backdrop-filter: blur(16px); z-index: 999; padding: 32px 24px; }
.nav__mobile.active { display: flex; flex-direction: column; }
.nav__mobile a { font-family: var(--round); font-size: 18px; font-weight: 500; padding: 18px 0; border-bottom: 1px solid var(--gray-border); display: block; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(228,160,172,0.88) 0%, rgba(78,169,158,0.85) 100%); z-index: 1; }
.hero__photos { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; z-index: 0; }
.hero__photo-slot { background: linear-gradient(135deg, var(--pink-soft) 0%, var(--teal-soft) 100%); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gray-light); overflow: hidden; }
.hero__photo-slot:nth-child(2) { background: linear-gradient(135deg, var(--teal-soft) 0%, var(--yellow-soft) 100%); }
.hero__photo-slot:nth-child(3) { background: linear-gradient(135deg, var(--yellow-soft) 0%, var(--pink-soft) 100%); }
.hero__content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 700px; margin: 0 auto; }
.hero__catch-en { font-family: var(--sans-en); font-size: 13px; font-weight: 500; letter-spacing: 0.2em; color: rgba(255,255,255,0.6); margin-bottom: 20px; text-transform: uppercase; }
.hero__title { font-family: var(--round); font-size: clamp(32px, 7vw, 52px); font-weight: 900; color: var(--white); line-height: 1.5; margin-bottom: 16px; }
.hero__title em { font-style: normal; color: var(--yellow); }
.hero__sub { font-family: var(--round); font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 36px; font-weight: 500; }
.hero__badges { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__badge { background: rgba(255,255,255,0.2); backdrop-filter: blur(6px); padding: 8px 20px; border-radius: 24px; font-family: var(--round); font-size: 13px; font-weight: 600; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.hero__stats { display: flex; justify-content: center; gap: 40px; }
.hero__stat { text-align: center; }
.hero__stat-num { font-family: var(--sans-en); font-size: 52px; font-weight: 700; color: var(--white); line-height: 1; }
.hero__stat-num small { font-size: 18px; font-weight: 500; opacity: 0.7; }
.hero__stat-label { font-family: var(--round); font-size: 12px; color: rgba(255,255,255,0.7); margin-top: 6px; font-weight: 500; }
.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.hero__scroll-text { font-family: var(--sans-en); font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 8px; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); margin: 0 auto; animation: scroll-anim 2s infinite; }
@keyframes scroll-anim { 0% { opacity: 1; transform: scaleY(1); } 100% { opacity: 0; transform: scaleY(0); transform-origin: top; } }

/* WAVE */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { display: block; width: 100%; height: auto; }

/* PHOTO BANNER */
.photo-banner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; height: 240px; overflow: hidden; }
.photo-banner--3col { grid-template-columns: repeat(3, 1fr); height: 280px; }
.photo-banner__item { background: linear-gradient(135deg, var(--teal-soft), var(--pink-soft)); display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--gray-light); overflow: hidden; position: relative; }
.photo-banner__item:nth-child(2) { background: linear-gradient(135deg, var(--pink-soft), var(--yellow-soft)); }
.photo-banner__item:nth-child(3) { background: linear-gradient(135deg, var(--yellow-soft), var(--teal-soft)); }
.photo-banner__item:nth-child(4) { background: linear-gradient(135deg, var(--cream), var(--teal-soft)); }
.photo-banner__item--overlay { position: relative; }
.photo-banner__item--overlay::after { content: ''; position: absolute; inset: 0; background: rgba(228,160,172,0.7); }
.photo-banner__text { position: relative; z-index: 1; text-align: center; color: var(--white); font-family: var(--round); font-weight: 700; font-size: 20px; line-height: 1.6; padding: 20px; }
.photo-banner__text small { display: block; font-size: 12px; font-weight: 400; opacity: 0.8; margin-top: 4px; }

/* SECTION */
.section { padding: 100px 24px; position: relative; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--pink { background: var(--pink-soft); }
.section--mint { background: var(--teal-soft); }
.section--yellow { background: var(--yellow-soft); }
.section__inner { max-width: 1000px; margin: 0 auto; }
.section-label { font-family: var(--sans-en); font-size: 13px; font-weight: 500; letter-spacing: 0.15em; color: var(--teal); text-transform: uppercase; margin-bottom: 12px; }
.section-heading { font-family: var(--round); font-size: clamp(24px, 5vw, 38px); font-weight: 900; line-height: 1.5; color: var(--dark); margin-bottom: 16px; }
.section-heading em { font-style: normal; color: var(--teal); }
.section-desc { font-size: 15px; line-height: 2; color: var(--gray); max-width: 600px; }
.section--center { text-align: center; }
.section--center .section-desc { margin: 0 auto; }

/* STATS */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 32px 20px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-6px); }
.stat-card__icon { margin-bottom: 12px; }
.stat-card__val { font-family: var(--sans-en); font-size: 36px; font-weight: 700; color: var(--teal); line-height: 1.2; }
.stat-card__val small { font-size: 14px; font-weight: 500; color: var(--gray); }
.stat-card__label { font-family: var(--round); font-size: 13px; color: var(--gray); margin-top: 8px; font-weight: 500; }

/* APPEAL */
.appeal-list { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.appeal-item { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: start; background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s; }
.appeal-item:hover { transform: translateY(-4px); }
.appeal-item:nth-child(even) { background: var(--teal-soft); }
.appeal-item__num { font-family: var(--sans-en); font-size: 56px; font-weight: 700; color: var(--teal); line-height: 1; opacity: 0.25; }
.appeal-item__icon { margin-bottom: 8px; }
.appeal-item__title { font-family: var(--round); font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.appeal-item__desc { font-size: 14px; line-height: 2; color: var(--gray); }
.appeal-item__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.appeal-tag { background: var(--teal-soft); color: var(--teal); font-family: var(--round); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }
.appeal-item:nth-child(even) .appeal-tag { background: var(--white); }

/* TABLES */
.info-table { width: 100%; border-collapse: separate; border-spacing: 0; margin-top: 48px; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); }
.info-table tr { border-bottom: 1px solid var(--gray-border); }
.info-table tr:last-child { border-bottom: none; }
.info-table th { font-family: var(--round); font-size: 14px; font-weight: 700; color: var(--teal); background: var(--teal-soft); padding: 16px 24px; text-align: left; width: 160px; vertical-align: top; }
.info-table td { font-size: 14px; color: var(--dark-sub); padding: 16px 24px; line-height: 1.8; }
.info-table--dark th { color: var(--white); background: var(--teal); }

/* DAY */
.day-timeline { max-width: 600px; margin: 48px auto 0; }
.day-entry { display: flex; gap: 14px; margin-bottom: 16px; position: relative; }
.day-entry::before { content: ''; position: absolute; left: 19px; top: 36px; bottom: -16px; width: 2px; background: var(--gray-border); }
.day-entry:last-child::before { display: none; }
.day-entry__time { font-family: var(--sans-en); font-size: 13px; font-weight: 700; color: var(--teal); min-width: 40px; padding-top: 8px; }
.day-entry__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--pink); margin-top: 12px; flex-shrink: 0; z-index: 1; }
.day-entry__box { flex: 1; background: var(--white); border-radius: 12px; padding: 12px 16px; box-shadow: 0 2px 8px rgba(0,0,0,0.03); }
.day-entry__title { font-family: var(--round); font-size: 14px; font-weight: 700; color: var(--dark); }
.day-entry__desc { font-size: 12px; color: var(--gray-light); margin-top: 2px; }

/* VOICE */
.voice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.voice-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.04); transition: transform 0.3s; }
.voice-card:hover { transform: translateY(-4px); }
.voice-card__photo { height: 200px; background: linear-gradient(135deg, var(--pink-soft) 0%, var(--teal-soft) 100%); display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--gray-light); position: relative; }
.voice-card__badge { position: absolute; top: 12px; right: 12px; background: var(--pink); color: var(--white); font-family: var(--round); font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; }
.voice-card__body { padding: 24px; }
.voice-card__headline { font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.6; }
.voice-card__text { font-size: 13px; line-height: 2; color: var(--gray); margin-bottom: 20px; }
.voice-card__person { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--gray-border); }
.voice-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--teal-soft); flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 9px; color: var(--gray-light); }
.voice-card__role { font-family: var(--sans-en); font-size: 10px; font-weight: 500; color: var(--pink); letter-spacing: 0.1em; text-transform: uppercase; }
.voice-card__name { font-family: var(--round); font-size: 13px; font-weight: 700; color: var(--dark); margin-top: 1px; }
.voice-card__clinic { font-size: 11px; color: var(--gray-light); }
.voice-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.voice-icon--dh { background: linear-gradient(135deg, var(--pink), var(--pink-light)); }
.voice-icon--da { background: linear-gradient(135deg, var(--yellow), #FFE08A); }

/* FAQ */
.faq-list { max-width: 720px; margin: 48px auto 0; }
.faq-item { background: var(--white); border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.03); overflow: hidden; }
.faq-q { display: flex; align-items: center; gap: 14px; padding: 20px 24px; cursor: pointer; font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--dark); width: 100%; background: none; border: none; text-align: left; line-height: 1.6; transition: color 0.3s; }
.faq-q:hover { color: var(--teal); }
.faq-q__icon { width: 30px; height: 30px; border-radius: 50%; background: var(--teal-soft); color: var(--teal); display: flex; align-items: center; justify-content: center; font-family: var(--sans-en); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.faq-q__text { flex: 1; }
.faq-q__arrow { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; color: var(--gray-light); }
.faq-item.active .faq-q__arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-a { max-height: 300px; }
.faq-a__inner { padding: 0 24px 20px 68px; font-size: 14px; line-height: 2; color: var(--gray); text-align: left; }

/* MID CTA */
.mid-cta { background: linear-gradient(135deg, var(--teal-soft), var(--pink-soft)); border-radius: var(--radius); padding: 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 56px; }
.mid-cta__text { font-family: var(--round); font-size: 20px; font-weight: 700; color: var(--dark); }
.mid-cta__text small { display: block; font-family: var(--sans); font-size: 13px; font-weight: 400; color: var(--gray); margin-top: 6px; }
.mid-cta__btn { display: inline-flex; align-items: center; gap: 8px; background: #06C755; color: var(--white); padding: 14px 32px; border-radius: 24px; font-family: var(--round); font-size: 15px; font-weight: 700; white-space: nowrap; transition: transform 0.3s; box-shadow: 0 4px 16px rgba(6,199,85,0.3); }
.mid-cta__btn:hover { transform: translateY(-2px); }

/* CTA */
.cta { position: relative; padding: 80px 24px; background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%); text-align: center; overflow: hidden; }
.cta__deco1 { position: absolute; top: -60px; right: -60px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,214,102,0.12); }
.cta__deco2 { position: absolute; bottom: -80px; left: -60px; width: 350px; height: 350px; border-radius: 50%; background: rgba(228,160,172,0.1); }
.cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.cta__title { font-family: var(--round); font-size: clamp(22px, 4vw, 34px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.6; }
.cta__desc { font-size: 14px; color: rgba(255,255,255,0.8); margin-bottom: 36px; line-height: 1.9; }
.btn-line { display: inline-flex; align-items: center; gap: 8px; background: #06C755; color: var(--white); padding: 16px 36px; border-radius: 24px; font-family: var(--round); font-size: 15px; font-weight: 700; transition: transform 0.3s; box-shadow: 0 4px 16px rgba(6,199,85,0.3); }
.btn-line:hover { transform: translateY(-2px); }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.5); padding: 56px 24px 36px; }
.footer__inner { max-width: 1000px; margin: 0 auto; }
.footer__top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__brand-name { font-family: var(--round); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer__brand-desc { font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.35); }
.footer__links h4 { font-family: var(--sans-en); font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 12px; color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__links a:hover { color: var(--teal-light); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__copy { font-family: var(--sans-en); font-size: 11px; color: rgba(255,255,255,0.2); }

/* FIXED BAR */
.fixed-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900; background: var(--white); border-top: 1px solid var(--gray-border); padding: 10px 16px; box-shadow: 0 -4px 16px rgba(0,0,0,0.08); }
.fixed-bar__inner { display: flex; gap: 8px; max-width: 480px; margin: 0 auto; }
.fixed-bar__btn { flex: 1; padding: 12px; border-radius: 24px; font-family: var(--round); font-size: 14px; font-weight: 700; text-align: center; display: inline-flex; align-items: center; justify-content: center; gap: 6px; }
.fixed-bar__btn--line { background: #06C755; color: var(--white); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .section { padding: 72px 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero__photos { grid-template-columns: 1fr; }
  .hero__photo-slot:nth-child(2), .hero__photo-slot:nth-child(3) { display: none; }
  .hero__stats { flex-direction: column; gap: 20px; }
  .hero__stat-num { font-size: 40px; }
  .hero__badges { gap: 6px; }
  .hero__badge { font-size: 11px; padding: 6px 14px; }
  .stats-row { grid-template-columns: 1fr; gap: 16px; }
  .appeal-item { grid-template-columns: 1fr; }
  .appeal-item__num { display: none; }
  .voice-grid { grid-template-columns: 1fr; }
  .photo-banner { grid-template-columns: 1fr 1fr; height: 160px; }
  .photo-banner--3col { grid-template-columns: 1fr; height: 200px; }
  .photo-banner__item:nth-child(3), .photo-banner__item:nth-child(4) { display: none; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding: 12px 20px 4px; }
  .info-table td { padding: 4px 20px 12px; }
  .mid-cta { flex-direction: column; text-align: center; padding: 28px 20px; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .fixed-bar { display: block; }
  body { padding-bottom: 64px; }
}
