@charset "UTF-8";
:root {
  --green-dark: #b84070;
  --green-primary: #d4688e;
  --green-mid: #e694b4;
  --green-light: #f0b8cf;
  --green-pale: #fad8e6;
  --cream: #fef9fb;
  --cream-dark: #fdf0f6;
  --brown-light: #f0b8cf;
  --text-dark: #3d2030;
  --text-mid: #6b4a58;
  --text-light: #9d8090;
  --white: #ffffff;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 17px;
  line-height: 1.7;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Shippori Mincho", serif;
  text-wrap: balance;
}

p, li, figcaption, blockquote {
  text-wrap: pretty;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}

.btn-header-line {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  color: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(200, 96, 144, 0.25);
}

.btn-header-line:hover {
  background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 96, 144, 0.35);
}

.header {
  background: var(--white);
  padding: 10px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--green-dark);
  text-decoration: none;
}

.logo__mark {
  width: clamp(43px, 4vw, 52px);
  height: auto;
  flex-shrink: 0;
}

.logo__name {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
  text-wrap: balance;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  gap: 2px;
  white-space: nowrap;
}

.nav ul li a:hover {
  color: var(--green-primary);
  background: var(--cream);
}

.nav ul li.active a {
  color: var(--green-primary);
}

.hamburger {
  display: none;
  position: relative;
  z-index: 102;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.hamburger:hover {
  background: var(--cream);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.25s, opacity 0.25s;
}

.hamburger--open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger--open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
}

.nav-overlay--visible {
  display: block;
}

@media (max-width: 767px) {
  .logo__mark {
    width: 42px;
  }
  .logo__name {
    font-size: 20px;
    letter-spacing: 0.03em;
  }
}
@media (max-width: 1099px) {
  .btn-header-line {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 100;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    transition: right 0.3s ease;
    padding: 80px 0 40px;
  }
  .nav--open {
    right: 0;
  }
  .nav ul {
    flex-direction: column;
    gap: 0;
  }
  .nav ul li a {
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    padding: 16px 28px;
    font-size: 15px;
    border-radius: 0;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav .nav__line-cta {
    display: block;
    padding: 24px 28px 0;
  }
  .nav .nav__line-cta .btn-nav-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
    color: var(--white);
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(200, 96, 144, 0.25);
  }
  .nav .nav__line-cta .btn-nav-line:hover {
    background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
    color: var(--white);
  }
  .nav .nav__line-cta .btn-nav-line svg {
    flex-shrink: 0;
  }
}
.nav__line-cta {
  display: none;
}

footer {
  background: linear-gradient(160deg, #e8b4cc 0%, #d494b8 100%);
  color: rgba(255, 255, 255, 0.88);
  padding: 56px 0 24px;
  overflow: hidden;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.5fr) minmax(210px, 0.8fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo h3 {
  color: var(--white);
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
  font-weight: 600;
}

.footer-address {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 2;
}

.footer-nav h4 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}

.footer-nav__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  list-style: none;
}

.footer-nav__list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-nav__list a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-contact > p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.footer-contact__button {
  display: inline-flex;
  width: min(100%, 240px);
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  box-shadow: 0 6px 16px rgba(115, 40, 77, 0.18);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-contact__button:hover {
  background: linear-gradient(135deg, #d784ab 0%, #b94f80 100%);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 959px) {
  .footer-inner {
    grid-template-columns: minmax(220px, 1fr) minmax(260px, 1fr);
    gap: 32px 28px;
  }
  .footer-nav {
    grid-column: 1/-1;
  }
}
@media (max-width: 767px) {
  footer {
    padding: 48px 0 22px;
  }
  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    margin-bottom: 32px;
  }
  .footer-info,
  .footer-nav {
    text-align: center;
  }
  .footer-address {
    font-size: 14px;
  }
  .footer-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
  }
  .footer-nav__list a {
    display: block;
    font-size: 14px;
    white-space: normal;
  }
  .footer-contact__button {
    width: 100%;
    max-width: 320px;
  }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  box-shadow: 0 4px 14px rgba(200, 96, 144, 0.22);
  color: white;
  padding: 14px 40px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
  box-shadow: 0 6px 22px rgba(200, 96, 144, 0.36);
  transform: translateY(-2px);
}

.btn-center {
  text-align: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  padding: 10px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  background: transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  width: fit-content;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 14px rgba(200, 96, 144, 0.22);
  transform: translateY(-1px);
}

.btn-green-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  box-shadow: 0 4px 14px rgba(200, 96, 144, 0.22);
  color: white;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  width: 100%;
}

.btn-green-lg:hover {
  background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
  box-shadow: 0 6px 22px rgba(200, 96, 144, 0.36);
  transform: translateY(-2px);
}

.btn-line-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1bdd6a 0%, #06c755 100%);
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.28);
  color: white;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  width: 100%;
}

.btn-line-lg:hover {
  background: linear-gradient(135deg, #06c755 0%, #05a847 100%);
  box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
  transform: translateY(-2px);
}

.btn-cta-white {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--green-primary);
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-cta-white:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.btn-cta-green {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  box-shadow: 0 4px 14px rgba(200, 96, 144, 0.22);
  color: white;
  padding: 18px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-cta-green:hover {
  background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
  box-shadow: 0 6px 22px rgba(200, 96, 144, 0.36);
  transform: translateY(-2px);
}

.btn-cta-green svg {
  width: 20px;
  height: 20px;
}

.btn-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--green-light);
  color: var(--text-mid);
  padding: 13px 48px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  margin: 0 auto;
  width: fit-content;
  transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  background: var(--white);
}

.btn-more:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  box-shadow: 0 3px 12px rgba(196, 75, 126, 0.14);
  transform: translateY(-1px);
}

.btn-web-reserve {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--green-primary);
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-web-reserve:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.btn-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1bdd6a 0%, #06c755 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.btn-line:hover {
  background: linear-gradient(135deg, #06c755 0%, #05a847 100%);
  transform: translateY(-1px);
}

.btn-line-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  box-shadow: 0 4px 14px rgba(200, 96, 144, 0.22);
  color: white;
  padding: 18px 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.btn-line-cta:hover {
  background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
  box-shadow: 0 6px 22px rgba(200, 96, 144, 0.36);
  transform: translateY(-2px);
}

.btn-line-cta svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-booking {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  box-shadow: 0 4px 14px rgba(200, 96, 144, 0.22);
  color: white;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  margin-bottom: 20px;
}

.btn-booking:hover {
  background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
  box-shadow: 0 6px 22px rgba(200, 96, 144, 0.36);
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary,
  .btn-outline,
  .btn-green-lg,
  .btn-line-lg,
  .btn-cta-white,
  .btn-cta-green,
  .btn-more,
  .btn-web-reserve,
  .btn-line,
  .btn-line-cta,
  .btn-booking {
    transition: none;
  }
  .btn-primary:hover,
  .btn-outline:hover,
  .btn-green-lg:hover,
  .btn-line-lg:hover,
  .btn-cta-white:hover,
  .btn-cta-green:hover,
  .btn-more:hover,
  .btn-web-reserve:hover,
  .btn-line:hover,
  .btn-line-cta:hover,
  .btn-booking:hover {
    transform: none;
  }
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(29px, 2.4vw, 30px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.section-ornament::before,
.section-ornament::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--green-light);
}

.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  transform: rotate(45deg);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero--home {
  height: clamp(560px, 47vw, 680px);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__slide picture,
.hero__slide .hero__content {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero__slide--active {
  pointer-events: auto;
}

.hero__slide--active picture,
.hero__slide--active .hero__content {
  opacity: 1;
}

.hero--home .hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 78, 60, 0.84) 0%, rgba(15, 78, 60, 0.56) 38%, rgba(15, 78, 60, 0) 68%);
  pointer-events: none;
}

.hero--home .hero-img {
  object-position: center center;
}

.hero__slide--fertility .hero-img {
  object-position: center 24%;
}

.hero__slide--postpartum .hero-img {
  object-position: center top;
}

.hero__slide--menopause .hero-img {
  object-position: center 22%;
}

.hero__catch-br-sp {
  display: none;
}

.hero--home .hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero__content-inner {
  transform: translateY(-62px);
  max-width: 760px;
}

.hero__actions {
  position: absolute;
  left: 80px;
  bottom: 52px;
  z-index: 3;
}

.hero--page {
  height: clamp(340px, 28vw, 420px);
}

.hero--page .hero-img {
  object-position: center top;
}

.hero--page .hero__overlay {
  display: none;
}

.hero--page .hero__content {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  background: radial-gradient(ellipse 55% 65% at 50% 50%, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 78%);
}

.hero--plain {
  height: 240px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
}

.hero__en-label {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-light);
  display: block;
}

.hero--page .hero__en-label::after,
.hero--plain .hero__en-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--green-light);
  margin: 10px auto 0;
}

.hero__catch {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(38px, 3.45vw, 46px);
  font-weight: 600;
  color: white;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.hero__title {
  font-family: "Shippori Mincho", serif;
  font-size: 36px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

.hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
  margin-bottom: 0;
}

.hero__hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

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

.hero__btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e096b8 0%, #c86090 100%);
  box-shadow: 0 4px 16px rgba(200, 96, 144, 0.3);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}

.hero__btn-line:hover {
  background: linear-gradient(135deg, #c86090 0%, #b05080 100%);
  box-shadow: 0 8px 24px rgba(200, 96, 144, 0.42);
  transform: translateY(-3px);
}

.hero__btn-menu {
  display: inline-flex;
  align-items: center;
  color: white;
  padding: 13px 28px;
  border-radius: 30px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-size: 15px;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

.hero__btn-menu:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767px) {
  .hero--home {
    height: 590px;
  }
  .hero--home .hero__content {
    padding: 0 28px;
    align-items: flex-start;
    padding-top: 86px;
  }
  .hero__content-inner {
    transform: none;
  }
  .hero__actions {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }
  .hero--home .hero-img {
    object-position: center center;
  }
  .hero__slide--fertility .hero-img {
    object-position: 50% center;
  }
  .hero__slide--postpartum .hero-img {
    object-position: 54% center;
  }
  .hero__slide--menopause .hero-img {
    object-position: right center;
  }
  .hero--home .hero__overlay {
    background: linear-gradient(135deg, rgba(15, 78, 60, 0.82) 0%, rgba(15, 78, 60, 0.62) 50%, rgba(15, 78, 60, 0.42) 100%);
  }
  .hero__catch-br-sp {
    display: inline;
  }
  .hero__catch {
    font-size: 30px;
    margin-bottom: 14px;
  }
  .hero__sub {
    font-size: 13px;
    line-height: 1.8;
  }
  .hero__cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero__btn-line,
  .hero__btn-menu {
    justify-content: center;
    width: 100%;
  }
  .hero--page {
    height: 400px;
  }
  .hero--page .hero-img {
    object-position: center center;
  }
  .hero__title {
    font-size: 26px;
  }
  .hero--plain {
    height: 400px;
  }
  .hero__en-label {
    font-size: 11px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hero__slide--fertility .hero-img {
    object-position: right center;
  }
  .hero__slide--postpartum .hero-img {
    object-position: 62% center;
  }
  .hero__slide--menopause .hero-img {
    object-position: right center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__slide picture,
  .hero__slide .hero__content {
    transition: none;
  }
}
.page-title-section {
  text-align: center;
  padding: 48px 40px 40px;
  background: var(--white);
}

.page-title-section p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 2;
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .page-title-section {
    padding: 36px 24px 28px;
  }
  .page-title-section p {
    font-size: 15px;
  }
}
.cta-bottom {
  background: var(--cream);
  padding: 72px 0;
  overflow: hidden;
  position: relative;
}

.cta-bottom-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 200px;
  align-items: center;
  gap: 40px;
}

.cta-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.cta-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
}

.cta-deco {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .cta-bottom-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 28px;
  }
  .cta-deco {
    justify-self: center;
    margin-top: 24px;
  }
  .cta-deco svg {
    width: 88px;
    height: auto;
  }
}
section {
  padding: 72px 0;
}

.trouble {
  background: var(--cream);
}

.trouble-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.trouble-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.trouble-icon {
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.trouble-icon svg {
  width: 40px;
  height: 40px;
  opacity: 0.7;
}

.trouble-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  outline: 1px solid rgba(61, 32, 48, 0.06);
  outline-offset: -1px;
}

.trouble-item--icon-zoom .trouble-icon img {
  transform: scale(1.2);
}

.trouble-item p {
  font-size: 14px;
  text-align: center;
  color: var(--text-mid);
  font-weight: 500;
}

@media (max-width: 959px) {
  .trouble-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.trouble-note {
  text-align: center;
  font-style: italic;
  color: var(--text-mid);
  font-size: 15px;
  margin-bottom: 36px;
}

.posture-analysis {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.posture-analysis__label {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--green-primary);
  letter-spacing: 0.16em;
}

.posture-analysis__eyebrow {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.posture-analysis__emphasis {
  margin: -18px auto 20px;
  color: var(--green-primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
}

.posture-analysis__copy {
  max-width: 840px;
  margin: 0 auto 28px;
  color: var(--text-mid);
  line-height: 2;
  text-wrap: pretty;
}

.posture-analysis__copy p {
  margin: 0;
}

.posture-analysis__copy p + p {
  margin-top: 16px;
}

.posture-analysis__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 0 auto 34px;
  padding: 11px 20px;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgba(212, 104, 142, 0.48);
  color: var(--green-primary);
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
  text-align: left;
}

.posture-analysis__badge-icon {
  display: grid;
  width: 42px;
  height: 36px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  line-height: 1;
}

.posture-analysis__result {
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.06), 0 2px 4px rgba(61, 32, 48, 0.04), 0 14px 36px rgba(61, 32, 48, 0.08);
}

.posture-analysis__result-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px 18px;
  background: linear-gradient(135deg, rgba(255, 245, 248, 0.95), rgba(249, 253, 251, 0.95));
}

.posture-analysis__result-heading > div > p {
  margin: 0;
  color: var(--green-dark);
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
}

.posture-analysis__result-heading > div > span {
  display: block;
  margin-top: 4px;
  color: var(--text-light);
  font-size: 13px;
}

.posture-analysis__result-intro {
  max-width: 390px;
  margin: 0;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.8;
  text-align: right;
}

.posture-analysis__tab-guide {
  display: flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin: 0 28px 10px;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.6;
}

.posture-analysis__tab-guide span {
  color: var(--green-primary);
  font-size: 16px;
  font-weight: 700;
}

.posture-analysis__tabs {
  display: flex;
  gap: 8px;
  padding: 0 28px 16px;
}

.posture-analysis__tab {
  min-width: 92px;
  min-height: 42px;
  padding: 8px 18px;
  border: 0;
  border-radius: 999px;
  background-color: var(--cream-dark);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.07);
  color: var(--text-mid);
  cursor: pointer;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.posture-analysis__tab[aria-selected=true] {
  background-color: var(--green-primary);
  box-shadow: 0 5px 12px rgba(212, 104, 142, 0.24);
  color: var(--white);
}

.posture-analysis__tab:focus-visible {
  outline: 3px solid rgba(212, 104, 142, 0.36);
  outline-offset: 3px;
}

.posture-analysis__tab:hover {
  transform: translateY(-1px);
}

.posture-analysis__tab--guide {
  animation: posture-tab-guide-pulse 0.85s ease-in-out;
}

@keyframes posture-tab-guide-pulse {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.07);
    transform: translateY(0);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(212, 104, 142, 0.18);
    transform: translateY(-2px);
  }
}
.posture-analysis__panels {
  padding: 0 28px 28px;
}

.posture-analysis__panel[hidden] {
  display: none;
}

.posture-analysis__panel {
  display: block;
}

.posture-analysis__app {
  overflow: hidden;
  width: 100%;
  border-radius: 16px;
  background: #f9fcfb;
  box-shadow: inset 0 0 0 1px rgba(36, 133, 117, 0.13), 0 9px 22px rgba(61, 32, 48, 0.05);
}

.posture-analysis__app-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--green-dark);
  color: var(--white);
}

.posture-analysis__app-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 20px;
  font-weight: 700;
}

.posture-analysis__app-heading p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.posture-analysis__app-heading span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.posture-analysis__app-content {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;
  gap: 20px;
  padding: 20px;
}

.posture-analysis__photo {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.1);
}

.posture-analysis__photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.posture-analysis__photo figcaption {
  padding: 8px 10px;
  color: var(--text-light);
  font-size: 12px;
  text-align: center;
}

.posture-analysis__metrics {
  display: grid;
  min-width: 0;
  margin: 0;
  gap: 9px;
}

.posture-analysis__metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(36, 133, 117, 0.13);
}

.posture-analysis__metric dt {
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.posture-analysis__metric dd {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
  margin: 0;
  text-align: right;
}

.posture-analysis__metric strong {
  color: var(--green-dark);
  font-size: clamp(16px, 2vw, 22px);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  white-space: nowrap;
}

.posture-analysis__metric span {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(36, 133, 117, 0.13);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.posture-analysis__metric--check span {
  background: rgba(218, 104, 73, 0.14);
  color: #b65336;
}

.posture-analysis__metric--mild span {
  background: rgba(218, 170, 58, 0.18);
  color: #987012;
}

.posture-analysis__app-note {
  margin: 0;
  padding: 13px 20px;
  border-top: 1px solid rgba(36, 133, 117, 0.12);
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}

.posture-analysis__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.posture-analysis__feature {
  display: flex;
  gap: 15px;
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.06), 0 2px 4px rgba(61, 32, 48, 0.04), 0 10px 24px rgba(61, 32, 48, 0.05);
}

.posture-analysis__feature-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-primary);
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
}

.posture-analysis__feature h3 {
  margin: 1px 0 7px;
  color: var(--green-dark);
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
}

.posture-analysis__feature p {
  margin: 0;
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.8;
}

.posture-analysis__details {
  max-width: 840px;
  margin: 0 auto 16px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
  text-wrap: pretty;
}

.posture-analysis__details p {
  margin: 0;
}

.posture-analysis__details p + p {
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 600;
}

.posture-analysis__note {
  max-width: 980px;
  margin: 0 auto 28px;
  padding: 13px 20px;
  border-radius: 12px;
  background-color: var(--cream-dark);
  color: var(--text-mid);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.posture-analysis__cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .posture-analysis__tab {
    transition: none;
  }
  .posture-analysis__tab--guide {
    animation: none;
  }
}
.about {
  background: var(--white);
  padding: 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}

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

.about-photo {
  aspect-ratio: 1;
  overflow: hidden;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo-1 {
  background: #e8c0cc;
}

.about-photo-2 {
  background: #d4a0b8;
}

.about-text {
  padding: 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.about-label {
  font-size: 12px;
  color: var(--green-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.about-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 32px;
}

.testimonials {
  background: var(--white);
}

.testimonials--draft {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.testimonial-card {
  background: var(--cream);
  border-radius: 8px;
  padding: 28px 24px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.avatar-1 {
  background: #f0c4cc;
}

.avatar-2 {
  background: #d8c0d8;
}

.avatar-3 {
  background: #e8c8d4;
}

.testimonial-meta h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
}

.testimonial-meta p {
  font-size: 12px;
  color: var(--text-light);
}

.testimonial-card p.body {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
}

.testimonial-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 12px;
}

.features-bar {
  background: linear-gradient(135deg, #fdf3f7 0%, #f8e8f2 100%);
  padding: 68px 0;
  border-top: 1px solid rgba(212, 104, 142, 0.12);
  border-bottom: 1px solid rgba(212, 104, 142, 0.12);
}

.features-bar .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.features-bar .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 16px 32px;
  border-right: 1px solid rgba(212, 104, 142, 0.15);
  color: var(--green-dark);
  text-align: center;
}

.features-bar .feature-item:last-child {
  border-right: none;
}

.features-bar .feature-icon {
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(212, 104, 142, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.features-bar .feature-icon svg {
  width: 34px;
  height: 34px;
}

.features-bar .feature-item h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  color: var(--green-dark);
}

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

.access {
  background: var(--cream);
}

.access-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
}

.access-inner > div {
  min-width: 0;
}

.access-info h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.access-detail {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 24px;
}

.access-detail p {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.access-detail p svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--green-light);
}

.access-map-placeholder {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #e0d0d8;
}

.access-map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.access-photo {
  background: #d8b4c4;
  width: 100%;
  height: 280px;
  border-radius: 6px;
  overflow: hidden;
}

.access-contact {
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
}

.access-contact h4 {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.access-contact__lead {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.womens-care {
  background: var(--white);
}

.womens-care-lead {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 2.1;
  margin-bottom: 56px;
  letter-spacing: 0.04em;
  overflow-wrap: normal;
  text-wrap: pretty;
  word-break: keep-all;
}

.womens-care .section-title h2 {
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

.womens-care__phrase {
  white-space: nowrap;
}

.womens-care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.womens-care-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 40px 28px 36px;
  text-align: center;
}

.womens-care-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  overflow: hidden;
}

.womens-care-icon svg {
  width: 34px;
  height: 34px;
  color: var(--green-primary);
}

.womens-care-icon__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.womens-care-card h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}

.womens-care-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.95;
  text-align: left;
}

.logo-story {
  background: var(--cream-dark);
}

.logo-story-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: center;
}

.logo-story-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.logo-story-img {
  width: 170px;
  height: auto;
  object-fit: contain;
}

.logo-story-brand {
  color: var(--green-dark);
  text-align: center;
}

.logo-story-brand .logo-story-brand__tagline {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-family: "Shippori Mincho", serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-align: center;
}

.logo-story-brand .logo-story-brand__name {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-family: "Shippori Mincho", serif;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-align: center;
  text-wrap: balance;
}

.logo-story-brand .logo-story-brand__origin {
  margin-bottom: 0;
  color: var(--green-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-align: center;
}

.logo-story-brand__origin span {
  color: var(--green-light);
}

.logo-story-sub {
  font-size: 12px;
  color: var(--green-light);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.logo-story-title {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.logo-story-text .logo-story-en {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  color: var(--green-primary);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.logo-story-en span {
  margin: 0 8px;
  color: var(--text-light);
}

.logo-story-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2.1;
  margin-bottom: 16px;
}

.logo-story-text em {
  color: var(--green-dark);
  font-style: normal;
  font-weight: 600;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.leaf-divider svg {
  width: 24px;
  height: 24px;
  opacity: 0.5;
}

@media (max-width: 959px) {
  .trouble-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 24px;
  }
  .trouble-item {
    width: auto;
  }
}
@media (max-width: 767px) {
  .posture-analysis__features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .posture-analysis__result-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px;
  }
  .posture-analysis__result-intro {
    max-width: none;
    text-align: left;
  }
  .posture-analysis__tabs {
    gap: 6px;
    padding: 0 16px 12px;
  }
  .posture-analysis__tab-guide {
    margin: 0 16px 10px;
    font-size: 12px;
  }
  .posture-analysis__tab {
    min-width: 0;
    flex: 1;
    padding: 8px 6px;
  }
  .posture-analysis__panels {
    padding: 0 16px 16px;
  }
  .posture-analysis__app-content {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }
  .posture-analysis__photo {
    width: min(100%, 260px);
    margin: 0 auto;
  }
  .posture-analysis__metric {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
  .posture-analysis__metric dd {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }
  .posture-analysis__app-note {
    padding: 12px 16px;
    text-align: left;
  }
  .posture-analysis__badge {
    margin-bottom: 26px;
    padding: 10px 16px;
    font-size: 15px;
  }
  .posture-analysis__details,
  .posture-analysis__note {
    text-align: left;
  }
  .posture-analysis__cta .btn-primary {
    box-sizing: border-box;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-right: 16px;
    padding-left: 16px;
    text-align: center;
    gap: 0.4em;
    font-size: clamp(14px, 3.75vw, 16px);
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .trouble-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .features-bar {
    padding: 48px 0;
  }
  .features-bar .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-bar .feature-item {
    padding: 24px 20px;
    gap: 16px;
    border-right: none;
    border-bottom: 1px solid rgba(212, 104, 142, 0.15);
  }
  .features-bar .feature-item:nth-child(odd) {
    border-right: 1px solid rgba(212, 104, 142, 0.15);
  }
  .features-bar .feature-item:last-child,
  .features-bar .feature-item:nth-last-child(2) {
    border-bottom: none;
  }
  .features-bar .feature-icon {
    width: 64px;
    height: 64px;
  }
  .features-bar .feature-icon svg {
    width: 28px;
    height: 28px;
  }
  .features-bar .feature-item h3 {
    font-size: 15px;
  }
  .womens-care-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .womens-care-card {
    padding: 36px 20px 32px;
  }
  .womens-care-lead {
    font-size: 16px;
    margin-bottom: 36px;
  }
  .logo-story-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .logo-story-img {
    width: 132px;
    height: auto;
  }
  .logo-story-brand {
    display: none;
  }
  .logo-story-text p {
    text-align: left;
  }
  .logo-story-title {
    font-size: 22px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-text {
    padding: 40px 24px;
  }
  .access-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "photo contact" "info  contact";
    gap: 24px;
    align-items: start;
  }
  .access-inner > div:nth-child(1) {
    grid-area: info;
  }
  .access-inner > div:nth-child(2) {
    grid-area: photo;
  }
  .access-inner > div:nth-child(3) {
    grid-area: contact;
  }
  .access-map-placeholder,
  .access-photo {
    height: 180px;
  }
}
@media (max-width: 530px) {
  .access-inner {
    gap: 14px;
  }
  .access-contact {
    padding: 20px 14px;
  }
}
@media (max-width: 575px) {
  .access-inner {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    gap: 20px;
  }
  .access-inner > div:nth-child(1),
  .access-inner > div:nth-child(2),
  .access-inner > div:nth-child(3) {
    grid-area: auto;
  }
  .access-inner > div:nth-child(2) {
    order: -2;
  }
  .access-inner > div:nth-child(3) {
    order: -1;
  }
}
.about-hero .hero-img {
  object-position: 60% 48%;
}

@media (min-width: 768px) {
  .about-hero .hero-img {
    object-position: center top;
  }
}
.concept-section {
  padding: 80px 0;
  background: var(--cream);
}

.concept-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}

.concept-sub {
  font-size: 12px;
  color: var(--green-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.concept-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 28px;
}

.concept-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2.1;
  margin-bottom: 14px;
}

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

.concept-photo {
  width: 100%;
  max-width: 440px;
  justify-self: center;
  border-radius: 8px;
  overflow: hidden;
  height: 360px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.concept-photo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% 27%;
  outline: 1px solid rgba(61, 32, 48, 0.08);
  outline-offset: -1px;
}

.story-section {
  padding: 80px 0;
  background: var(--white);
}

.story-section__label {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  color: var(--green-primary);
  letter-spacing: 0.16em;
}

.story-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.story-section__item {
  padding: 28px 24px;
  background: var(--cream);
  border-radius: 16px;
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.05), 0 2px 4px rgba(61, 32, 48, 0.04);
}

.story-section__number {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  color: var(--green-primary);
  font-size: 16px;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

.story-section__item h3 {
  min-height: 3.2em;
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 17px;
  line-height: 1.6;
}

.story-section__item p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.9;
}

.values-section {
  padding: 80px 0;
  background: var(--white);
}

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

.value-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
}

.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-icon svg {
  width: 36px;
  height: 36px;
}

.value-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.value-card h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
}

.greeting-section {
  padding: 80px 0;
  background: var(--cream);
}

.greeting-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.greeting-photo {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.greeting-photo img {
  width: 100%;
  height: auto;
  outline: 1px solid rgba(61, 32, 48, 0.08);
  outline-offset: -1px;
}

.greeting-sub {
  font-size: 12px;
  color: var(--green-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.greeting-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.greeting-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2.2;
  margin-bottom: 18px;
}

.greeting-text p:last-of-type {
  margin-bottom: 28px;
}

.greeting-signature {
  text-align: right;
  border-top: 1px solid var(--green-pale);
  padding-top: 20px;
}

.greeting-signature .clinic-name {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.greeting-signature .director {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.greeting-signature .director-label {
  font-size: 12px;
  color: var(--text-light);
  margin-right: 6px;
}

.overview-section {
  padding: 72px 0;
  background: var(--white);
}

.overview-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  align-items: start;
}

.overview-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
}

.overview-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-icon svg {
  width: 36px;
  height: 36px;
}

.overview-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.overview-icon-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-dark);
  letter-spacing: 0.04em;
}

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

.overview-table tr {
  border-bottom: 1px solid #eaeaea;
}

.overview-table tr:first-child {
  border-top: 1px solid #eaeaea;
}

.overview-table th {
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--cream);
  width: 160px;
  vertical-align: top;
  white-space: nowrap;
  text-align: left;
}

.overview-table td {
  padding: 18px 20px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.8;
  vertical-align: top;
}

.overview-table td .highlight {
  color: var(--green-primary);
  font-weight: 600;
}

.map-embed {
  border-radius: 6px;
  overflow: hidden;
  margin-top: 8px;
  border: 1px solid #e0d0d8;
}

.map-embed iframe {
  width: 100%;
  display: block;
  border: 0;
}

.bottom-cta {
  background: var(--green-primary);
  padding: 36px 0;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bottom-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bottom-cta-text svg {
  width: 32px;
  height: 32px;
  opacity: 0.8;
  color: white;
  flex-shrink: 0;
}

.bottom-cta-text p {
  font-size: 16px;
  color: var(--cream);
  line-height: 1.6;
}

.bottom-cta .btn-cta-white {
  margin-bottom: 4px;
}

@media (max-width: 959px) {
  .story-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .story-section__grid {
    grid-template-columns: 1fr;
  }
  .story-section__item h3 {
    min-height: 0;
  }
  .concept-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .concept-photo {
    max-width: 440px;
    height: 220px;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .greeting-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .greeting-photo {
    width: 100%;
    max-width: 260px;
    justify-self: center;
  }
  .overview-inner {
    grid-template-columns: 1fr;
  }
  .overview-icon-col {
    display: none;
  }
  .overview-table th {
    padding: 12px 10px;
    font-size: 13px;
    width: 90px;
  }
  .overview-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
  .bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.services-hero .hero-img {
  object-position: center top;
}

@media (max-width: 767px) {
  .services-hero .hero-img {
    object-position: 72% top;
  }
}
.about-treatment {
  padding: 72px 0;
  background: var(--cream);
}

.about-treatment-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
}

.treatment-photo {
  border-radius: 8px;
  overflow: hidden;
  height: 300px;
}

.treatment-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-pale);
}

.treatment-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 14px;
}

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

.price-section {
  padding: 80px 0;
  background: var(--white);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 16px;
}

.price-table__course-column {
  width: 24%;
}

.price-table__amount-column {
  width: 22%;
}

.price-table thead tr {
  background: var(--green-primary);
  color: white;
}

.price-table thead th {
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  letter-spacing: 0.03em;
}

.price-table thead th:nth-child(2) {
  text-align: center;
}

.price-table tbody tr {
  border-bottom: 1px solid #e8e8e8;
}

.price-table tbody tr:hover {
  background: var(--cream);
}

.price-table tbody td {
  padding: 18px 18px;
  font-size: 15px;
  vertical-align: top;
}

.price-table tbody td:nth-child(2) {
  text-align: center;
}

.price-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.5;
}

.price-rec {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.course-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.price-discount {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 8px;
  box-shadow: 0 0 0 1px var(--green-pale);
}

.price-discount__label {
  flex: 0 0 auto;
  padding: 4px 10px;
  color: var(--white);
  background: var(--green-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.price-discount__amount {
  margin: 0;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 600;
}

.price-discount__amount strong {
  margin-left: 4px;
  color: var(--green-primary);
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-discount__note {
  margin: 0 0 0 auto;
  color: var(--text-mid);
  font-size: 13px;
}

.price-notes {
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
}

.features-section {
  padding: 72px 0;
  background: var(--cream);
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.features-section .feature-item {
  grid-column: span 2;
}

.features-section .feature-item:nth-child(4) {
  grid-column: 2/span 2;
}

.features-section .feature-item:nth-child(5) {
  grid-column: 4/span 2;
}

.features-section .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--white);
  border-radius: 10px;
}

.features-section .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-section .feature-icon svg {
  width: 30px;
  height: 30px;
}

.features-section .feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.features-section .feature-item h3 {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  text-wrap: balance;
}

.features-section .feature-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.info-section {
  padding: 48px 0;
  background: var(--white);
}

.info-box {
  border: 2px solid var(--green-pale);
  border-radius: 10px;
  padding: 36px 40px;
  background: var(--cream);
}

.info-box h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--green-primary);
  border-radius: 2px;
}

.info-list {
  list-style: none;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  padding: 8px 0;
  line-height: 1.7;
}

.info-list li::before {
  content: "✓";
  color: var(--green-primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.bottom-cta {
  background: var(--cream);
  padding: 48px 0;
  border-top: 1px solid #e8e8e8;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-left h4 {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.cta-phone {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.cta-phone svg {
  width: 20px;
  height: 20px;
  color: var(--green-mid);
}

.cta-hours {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .about-treatment-inner {
    grid-template-columns: 1fr;
  }
  .treatment-photo {
    height: 220px;
  }
  .price-table,
  .price-table tbody {
    display: block;
  }
  .price-table thead {
    display: none;
  }
  .price-table tbody {
    display: grid;
    gap: 10px;
  }
  .price-table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 16px;
    padding: 16px 14px;
    background: var(--white);
    border-bottom: 0;
    border-radius: 8px;
    box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.1);
  }
  .price-table tbody td {
    padding: 0;
    font-size: 14px;
  }
  .price-table tbody td:nth-child(2) {
    text-align: right;
  }
  .course-name {
    margin: 0;
    font-size: 16px;
  }
  .price-amount {
    font-size: 18px;
  }
  .price-sub {
    font-size: 11px;
  }
  .price-rec {
    grid-column: 1/-1;
    padding-top: 10px !important;
    box-shadow: inset 0 1px 0 rgba(61, 32, 48, 0.1);
    font-size: 13px;
    line-height: 1.7;
  }
  .price-discount {
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 12px 14px;
  }
  .price-discount__amount {
    font-size: 15px;
  }
  .price-discount__amount strong {
    font-size: 18px;
  }
  .price-discount__note {
    flex-basis: 100%;
    margin-left: 0;
  }
  .features-section .features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .features-section .feature-item,
  .features-section .feature-item:nth-child(4),
  .features-section .feature-item:nth-child(5) {
    grid-column: auto;
    padding: 20px 12px;
  }
}
.faq-hero .hero-img {
  object-position: 52% 23%;
}

@media (min-width: 768px) {
  .faq-hero .hero-img {
    object-position: center top;
  }
}
@media (min-width: 768px) {
  .faq-hero .hero-img {
    transform: scale(1.38);
    transform-origin: center top;
  }
}
.page-title-section {
  padding: 64px 40px 48px;
  background: transparent;
}

.cat-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cat-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ddd;
  color: var(--text-mid);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cat-tab svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.cat-tab:hover {
  border-color: var(--green-light);
  color: var(--green-primary);
}

.cat-tab.active {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
}

.cat-tab.active svg {
  color: white;
}

.faq-section {
  padding: 0 0 80px;
  background: var(--white);
}

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

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green-pale);
}

.faq-category-title svg {
  width: 20px;
  height: 20px;
  color: var(--green-primary);
  flex-shrink: 0;
}

.faq-category-title .title-line {
  width: 24px;
  height: 2px;
  background: var(--green-pale);
  margin-left: 4px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

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

.faq-item:first-child {
  border-top: 1px solid #eaeaea;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}

.faq-q-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.faq-q-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.faq-q-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.6;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border: 1px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 42px;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.24s ease, padding 0.3s ease;
}

.faq-answer-inner {
  background: var(--cream);
  border-radius: 8px;
  padding: 20px 24px;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.95;
}

.faq-answer-inner .a-badge {
  display: inline-block;
  background: var(--green-light);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.faq-item.open .faq-answer {
  max-height: 32rem;
  padding-bottom: 24px;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-toggle {
    transition: none;
  }
}
.line-cta-section {
  background: var(--cream);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.line-cta-section::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: url("images/deco-leaf.webp") no-repeat center/contain;
  opacity: 0.18;
  pointer-events: none;
}

.line-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.line-cta-content {
  flex: 1;
}

.line-cta-label {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.line-cta-heading {
  font-family: "Shippori Mincho", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.line-cta-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.line-cta-feature {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 500;
}

.line-cta-feature::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url("images/icon-checkmark.webp") no-repeat center/contain;
  flex-shrink: 0;
}

.line-cta-visual {
  flex-shrink: 0;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-cta-phone-mock {
  width: 120px;
  height: 200px;
  background: var(--green-dark);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 12px 40px rgba(58, 74, 32, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.line-cta-phone-mock::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.line-cta-phone-mock .mock-line-icon {
  width: 48px;
  height: 48px;
  background: #06c755;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-cta-phone-mock .mock-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
}

.consult-section {
  padding: 72px 0;
  background: var(--cream);
}

.first-visit-hero .hero-img {
  object-position: 72% 44%;
}

@media (min-width: 768px) {
  .first-visit-hero .hero-img {
    object-position: center top;
  }
}
.consult-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.consult-photo {
  width: 100%;
  max-width: 520px;
  justify-self: start;
  border-radius: 8px;
  overflow: hidden;
  height: clamp(280px, 28vw, 340px);
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.08);
}

.consult-photo__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 43% 30%;
}

.consult-text .sub-label {
  font-size: 13px;
  color: var(--green-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.consult-text h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.6;
}

.consult-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
}

.flow-section {
  padding: 80px 0;
  background: var(--white);
}

.flow-section .section-title {
  margin-bottom: 52px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.flow-item:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -12px;
  top: 52px;
  color: var(--green-light);
  font-size: 20px;
}

.flow-num {
  color: var(--green-primary);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.flow-icon {
  width: 64px;
  height: 64px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.flow-icon svg {
  width: 32px;
  height: 32px;
}

.flow-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.flow-item h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.5;
}

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

.flow-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 8px;
}

.items-section {
  padding: 72px 0;
  background: var(--cream);
}

.items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.item-card {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 36px;
}

.item-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.item-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-icon-circle svg {
  width: 24px;
  height: 24px;
}

.item-icon-circle img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.item-card h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.item-list {
  list-style: none;
}

.item-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  line-height: 1.6;
}

.item-list li:last-child {
  border-bottom: none;
}

.item-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  margin-top: 8px;
  flex-shrink: 0;
}

.child-visit-guidance {
  margin-top: 24px;
  padding: 28px 32px;
  border-radius: 10px;
  background: var(--white);
}

.child-visit-guidance h3 {
  margin: 0 0 12px;
  color: var(--text-dark);
  font-family: "Shippori Mincho", serif;
  font-size: 19px;
  font-weight: 600;
}

.child-visit-guidance p {
  margin: 0;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
}

.child-visit-guidance p + p {
  margin-top: 12px;
}

.faq-section {
  padding: 80px 0;
  background: var(--white);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-list__more {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.faq-list__more .btn-outline {
  align-items: center;
  text-wrap: balance;
}

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

.faq-item:first-child {
  border-top: 1px solid #e8e8e8;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}

.faq-q-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-q-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  border: 1px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq-answer {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding: 0 0 0 36px;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.24s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 32rem;
  padding-bottom: 20px;
  opacity: 1;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--green-primary);
  color: white;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-toggle {
    transition: none;
  }
}
.faq-contact {
  background: var(--cream);
  border-radius: 10px;
  padding: 32px 28px;
}

.faq-contact p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 20px;
}

.faq-contact .phone-large {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.faq-contact .hours {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .consult-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .consult-photo {
    max-width: none;
    height: 220px;
  }
  .consult-photo__image {
    object-position: 43% 27%;
  }
  .items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .child-visit-guidance {
    margin-top: 20px;
    padding: 24px 20px;
  }
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq-list__more {
    margin-top: 24px;
  }
  .faq-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .faq-contact .phone-large {
    font-size: 17px;
    justify-content: center;
  }
  .faq-contact .btn-primary {
    margin-bottom: 12px;
  }
}
@media (min-width: 600px) and (max-width: 1099px) {
  .flow-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }
  .flow-item:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 599px) {
  .flow-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
  .flow-item:not(:last-child)::after {
    display: none;
  }
}
.testimonials-hero .hero-img {
  object-position: 52% 28%;
}

@media (min-width: 768px) {
  .testimonials-hero .hero-img {
    object-position: center top;
  }
}
.person-photo {
  width: 100%;
  height: 100%;
}

.notice-box {
  background: var(--cream-dark);
  border: 1px solid var(--green-pale);
  border-radius: 6px;
  padding: 14px 20px;
  margin: 0 0 36px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.notice-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.notice-box p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.7;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #ddd;
  color: var(--text-mid);
  background: var(--white);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.filter-tab:hover {
  border-color: var(--green-light);
  color: var(--green-primary);
}

.filter-tab.active {
  background: var(--green-primary);
  color: white;
  border-color: var(--green-primary);
}

.voice-section {
  padding: 80px 0;
  background: var(--cream);
}

.voice-inner {
  padding-top: 0;
}

.voice-section__dummy-notice {
  max-width: 720px;
  margin: 0 auto 32px;
}

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.voice-card {
  position: relative;
  padding: 50px 40px 40px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.05), 0 4px 14px rgba(61, 32, 48, 0.05);
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 24px;
  left: 28px;
  color: #d9ddd4;
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1;
}

.voice-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.voice-card__avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}

.voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.voice-card__meta {
  min-width: 0;
}

.voice-card__meta h3 {
  color: var(--text-dark);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.voice-card__meta p {
  margin-top: 6px;
  color: var(--text-mid);
  font-size: 14px;
}

.voice-card__stars {
  margin-bottom: 24px;
  color: #f6b900;
  font-size: 24px;
  letter-spacing: 0.12em;
  line-height: 1;
}

.voice-card__body {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.9;
}

.voice-card-photo {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.voice-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green-primary);
  color: white;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}

.voice-card-body {
  padding: 20px 20px 24px;
}

.voice-card-body h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 12px;
}

.voice-card-body p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.voice-card-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.voice-card-meta::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--green-pale);
}

.bottom-cta {
  background: var(--cream);
  padding: 72px 0 0;
}

.bottom-cta-title {
  text-align: center;
  margin-bottom: 48px;
}

.bottom-cta-title h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.6;
}

.bottom-cta-title p {
  font-size: 14px;
  color: var(--text-mid);
}

.cta-icons-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.cta-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--white);
  border-radius: 10px;
  text-align: center;
}

.cta-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-circle svg {
  width: 28px;
  height: 28px;
}

.cta-icon-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.cta-icon-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
}

.booking-bar {
  background: var(--green-primary);
  margin-top: 40px;
  padding: 28px 40px;
}

.booking-bar-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.booking-phone-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

.booking-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.booking-phone-info {
  color: white;
}

.booking-phone-info .label {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.booking-phone-num {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-phone-num svg {
  width: 18px;
  height: 18px;
  opacity: 0.8;
}

.booking-phone-info .hours {
  font-size: 11px;
  opacity: 0.7;
  margin-top: 2px;
}

@media (max-width: 767px) {
  .voice-section {
    padding: 56px 0;
  }
  .voice-section__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .voice-card {
    padding: 46px 24px 28px;
  }
  .voice-card__meta h3 {
    font-size: 16px;
  }
  .voice-card__body {
    font-size: 15px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .cta-icons-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .booking-bar {
    padding: 28px 20px;
  }
  .booking-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .booking-bar .btn-web-reserve {
    width: 100%;
    justify-content: center;
  }
  .booking-phone-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .booking-divider {
    display: none;
  }
  .booking-phone-num {
    font-size: 22px;
  }
}
.voice-section--draft {
  display: none;
}

.voice-preparation {
  padding: 88px 0;
  background: var(--cream);
}

.voice-preparation__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: var(--white);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.05), 0 12px 32px rgba(61, 32, 48, 0.06);
}

.voice-preparation__label {
  display: block;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  color: var(--green-primary);
  font-size: 16px;
  letter-spacing: 0.16em;
}

.voice-preparation__inner h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 26px;
}

.voice-preparation__inner p {
  margin-bottom: 28px;
  color: var(--text-mid);
  line-height: 2;
}

@media (max-width: 767px) {
  .voice-preparation__inner {
    padding: 36px 24px;
  }
  .voice-preparation__inner p br {
    display: none;
  }
}
.access-hero .hero-img {
  object-position: center 45%;
}

.page-title-section {
  padding: 64px 40px 48px;
  background: transparent;
}

.page-title-section .deco-icon {
  margin: 0 auto 16px;
  display: flex;
  justify-content: center;
}

.map-section {
  padding: 0 0 72px;
}

.map-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}

.map-frame {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.clinic-info-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 32px 28px;
}

.clinic-info-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green-pale);
}

.clinic-info-heading img {
  width: 24px;
  height: 24px;
}

.clinic-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.clinic-info-list li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}

.clinic-info-list li::before {
  content: "●";
  color: var(--green-light);
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 0.55em;
}

.access-route-section {
  padding: 0 0 72px;
}

.access-route-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  background: var(--cream);
  border-radius: 16px;
  outline: 1px solid rgba(79, 58, 68, 0.08);
  outline-offset: -1px;
}

.access-route-photo {
  min-height: 100%;
}

.access-route-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: 8% center;
}

.access-route-content {
  padding: 36px 40px;
}

.access-route-label {
  margin-bottom: 8px;
  color: var(--green-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.access-route-content h2 {
  margin-bottom: 18px;
  color: var(--text-dark);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  line-height: 1.5;
}

.access-route-lead {
  margin-bottom: 18px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.9;
}

.access-route-list {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
  list-style: none;
}

.access-route-list li {
  position: relative;
  padding-left: 16px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.8;
}

.access-route-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  content: "";
}

.access-route-note {
  color: var(--text-mid);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.hours-section {
  padding: 0 0 72px;
}

.hours-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid #f0d0dc;
}

.hours-table th {
  background: var(--cream-dark);
  color: var(--green-dark);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #f0d0dc;
  width: 130px;
}

.hours-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #f0d0dc;
  color: var(--text-mid);
  background: var(--white);
}

.hours-table .sun-holiday {
  color: #c0392b;
}

.mark-open {
  color: var(--green-primary);
  font-weight: 700;
}

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

.mark-partial {
  color: #e67e22;
  font-weight: 700;
}

.hours-notes {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
}

.hours-notes li {
  margin-bottom: 4px;
  list-style: none;
  color: var(--text-light);
}

.booking-card {
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
}

.booking-card h3 {
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.booking-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.booking-tel-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.booking-tel {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: 0.02em;
}

.booking-tel svg {
  width: 18px;
  height: 18px;
  color: var(--green-mid);
}

.booking-tel-hours {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

@media (max-width: 1099px) {
  .map-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .clinic-info-card {
    padding: 28px;
  }
}
@media (max-width: 767px) {
  .page-title-section {
    padding: 40px 20px 32px;
  }
  .map-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .map-frame {
    height: 240px;
  }
  .hours-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hours-inner > div:first-child {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .access-route-card {
    grid-template-columns: 1fr;
  }
  .access-route-photo img {
    min-height: 220px;
    height: 220px;
  }
  .access-route-content {
    padding: 28px 24px;
  }
  .access-route-content h2 {
    font-size: 22px;
  }
  .access-route-lead,
  .access-route-list li,
  .access-route-note {
    font-size: 15px;
  }
}
.legal-section {
  padding: 72px 0 96px;
  background: var(--white);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}

.legal-block {
  margin-bottom: 48px;
}

.legal-block h2 {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-pale);
}

.legal-block p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 12px;
}

.legal-block ul {
  list-style: none;
  margin-bottom: 12px;
}

.legal-block ul li {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 2;
  padding-left: 20px;
  position: relative;
}

.legal-block ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--green-light);
}

.legal-updated {
  font-size: 13px;
  color: var(--text-light);
  text-align: right;
  margin-bottom: 40px;
}

.blog-hero .hero-img {
  object-position: 60% 24%;
}

@media (min-width: 768px) {
  .blog-hero .hero-img {
    object-position: center top;
  }
}
@media (min-width: 768px) {
  .blog-hero .hero-img {
    transform: scale(1.25);
    transform-origin: center top;
  }
}
.blog-list {
  padding: 80px 0;
  background: var(--cream);
}

.blog-list__notice {
  margin: 0 auto 32px;
  color: var(--text-mid);
  font-size: 14px;
  text-align: center;
}

.blog-list__filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.blog-list__filter {
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid var(--green-pale);
  border-radius: 999px;
  background: var(--white);
  color: var(--text-mid);
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-list__filter.is-active {
  border-color: var(--green-primary);
  background: var(--green-primary);
  color: var(--white);
}

.blog-list__filter:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 3px;
}

.blog-list__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-list__card {
  min-height: 260px;
  padding: 28px 24px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.05), 0 4px 14px rgba(61, 32, 48, 0.05);
}

.blog-list__thumbnail {
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  overflow: hidden;
  margin: -28px -24px 20px;
  border-radius: 14px 14px 0 0;
  background: var(--cream-dark);
}

.blog-list__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: 1px solid rgba(61, 32, 48, 0.08);
  outline-offset: -1px;
}

.blog-list__category {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-dark);
  color: var(--green-primary);
  font-size: 12px;
  font-weight: 600;
}

.blog-list__card time {
  display: block;
  margin-bottom: 12px;
  color: var(--text-light);
  font-size: 13px;
}

.blog-list__card h3 {
  margin-bottom: 14px;
  color: var(--text-dark);
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.blog-list__card p {
  color: var(--text-mid);
  font-size: 14px;
  line-height: 1.9;
}

.blog-entry-page {
  padding: 80px 0;
  background: var(--cream);
}

.blog-entry-page__container {
  max-width: 960px;
}

.blog-entry {
  padding: clamp(28px, 4vw, 56px);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(61, 32, 48, 0.06), 0 8px 22px rgba(61, 32, 48, 0.06);
}

.blog-entry__header {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.blog-entry__date {
  display: block;
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.blog-entry__title {
  color: var(--text-dark);
  font-family: "Shippori Mincho", serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.32;
  text-wrap: balance;
}

.blog-entry__title::after {
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--green-primary);
  content: "";
}

.blog-entry__body {
  color: var(--text-mid);
  font-size: 16px;
  line-height: 2;
}

.blog-entry__body p {
  margin: 0 0 1.5em;
  text-wrap: pretty;
}

.blog-entry__body .wp-block-image {
  width: 70%;
  max-width: 720px;
  margin: 0 auto 1.5em;
}

.blog-entry__body .wp-block-image img {
  width: 100%;
  border-radius: 8px;
  outline: 1px solid rgba(61, 32, 48, 0.08);
  outline-offset: -1px;
}

.blog-entry__body .wp-block-image + p {
  margin-top: 2em;
}

.blog-entry__back {
  margin: clamp(36px, 5vw, 56px) 0 0;
}

.blog-entry__back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--green-pale);
  border-radius: 999px;
  background: var(--cream);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.blog-entry__back-link:hover {
  border-color: var(--green-primary);
  background: var(--cream-dark);
  color: var(--green-dark);
}

.blog-entry__back-link:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 3px;
}

.blog-entry__back-icon {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 959px) {
  .blog-list__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .blog-list {
    padding: 56px 0;
  }
  .blog-list__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .blog-list__card {
    min-height: 0;
    padding: 24px 20px;
  }
  .blog-list__thumbnail {
    margin: -24px -20px 18px;
  }
  .blog-entry-page {
    padding: 40px 0;
  }
  .blog-entry-page__container {
    padding: 0 20px;
  }
  .blog-entry {
    padding: 28px 20px;
  }
  .blog-entry__title {
    font-size: clamp(24px, 6.5vw, 30px);
    line-height: 1.42;
  }
  .blog-entry__body .wp-block-image {
    width: 100%;
  }
  .blog-entry__body {
    font-size: 15px;
    line-height: 1.95;
  }
  .blog-list__filters {
    gap: 8px;
  }
  .blog-list__filter {
    padding: 8px 14px;
  }
}

/* 長文の文単位表示とスマホ見出しの改行位置を整える */
.reading-copy {
  text-wrap: pretty;
}

.reading-copy__sentence {
  display: block;
}

.reading-copy__sentence + .reading-copy__sentence {
  margin-top: 0.45em;
}

.reading-copy > p + p {
  margin-top: 1.15em;
}

.reading-copy strong {
  color: var(--green-primary);
  font-weight: 700;
}

.responsive-heading__mobile-break {
  display: none;
}

.flow-item h3 {
  text-wrap: balance;
}

.flow-item p {
  text-wrap: pretty;
}

.story-section__item h3 {
  text-wrap: balance;
}

@media (max-width: 767px) {
  .responsive-heading__mobile-break {
    display: block;
  }
}

/* お子様連れ案内の見出しを意味のまとまりで整える */
.child-visit-guidance h3 {
  text-wrap: balance;
}
