/* ======================================
   01. Reset / Base
====================================== */
:root {
  --color-main: #24bcc4;
  --color-navy: #18346c;
  --color-text: #344055;
  --color-pink: #f17f9e;
  --color-yellow: #e5aa27;
  --color-bg-blue: #f4fbfd;
  --color-bg-pink: #fff8fa;
  --color-bg-yellow: #fffaf0;
}

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

html {
  scroll-behavior: smooth;
}

body {
  padding-bottom: 92px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #22335a;
  background: #fff;
}

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

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

/* ======================================
   02. Common Components
====================================== */
.section-heading {
  margin-bottom: clamp(60px, 7vw, 100px);
  text-align: center;
}

.section-heading__en {
  margin-bottom: 12px;
  color: var(--color-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .2em;
}

.section-heading__en--pink {
  color: #f286a3;
}

.section-heading__title {
  margin-bottom: 20px;
  color: var(--color-navy);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .12em;
}

.section-heading__title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--color-main);
}

.section-heading__lead {
  color: var(--color-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: .08em;
}

.c-link-button {
  --button-color: #27bec8;
  --button-bg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  width: fit-content;
  min-width: 280px;
  min-height: 64px;
  padding: 14px 30px 14px 38px;
  border: 2px solid var(--button-color);
  border-radius: 999px;
  color: var(--button-color);
  background: var(--button-bg);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
  text-align: center;
  transition: color .25s ease, background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.c-link-button__text {
  display: block;
}

.c-link-button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  transition: transform .25s ease;
}

.c-link-button:hover {
  color: #fff;
  background: var(--button-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 70, 100, .10);
}

.c-link-button:hover .c-link-button__arrow {
  transform: translateX(5px);
}

.c-link-button:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--button-color) 30%, transparent);
  outline-offset: 4px;
}

.c-link-button--turquoise {
  --button-color: #27bec8;
}

.c-link-button--pink {
  --button-color: #f28ca5;
}

.c-link-button--navy {
  --button-color: #24437e;
}

.c-link-button--yellow {
  --button-color: #e4aa2e;
}

.c-link-button--mint {
  --button-color: #68c8bd;
}

.c-link-button--small {
  min-width: 180px;
  min-height: 50px;
  padding: 10px 22px 10px 26px;
  gap: 24px;
  font-size: 14px;
}

.c-link-button--medium {
  min-width: 280px;
}

.c-link-button--large {
  min-width: 360px;
  min-height: 70px;
  padding-inline: 44px;
}

/* ======================================
   03. Header
====================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid #eef3f6;
}

.site-header-inner {
  display: flex;
  align-items: center;
  width: min(1600px, calc(100% - 60px));
  height: 90px;
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.logo img {
  display: block;
  width: 260px;
  height: auto;
}

/* Global navigation */
.gnav {
  margin-left: 40px;
}

.gnav__list,
.gnav__submenu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
}

.gnav__item {
  position: relative;
}

.gnav__parent {
  display: flex;
  align-items: center;
}

.gnav__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 90px;
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.gnav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  width: 0;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--color-main);
  transition: width .25s ease;
}

.gnav__item:hover>.gnav__link::after,
.gnav__item:hover .gnav__parent>.gnav__link::after,
.gnav__item:focus-within .gnav__parent>.gnav__link::after {
  width: 100%;
}

/* Submenu button */
.gnav__submenu-button {
  position: relative;
  width: 20px;
  height: 32px;
  margin-left: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gnav__submenu-button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 6px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--color-main);
  border-bottom: 2px solid var(--color-main);
  transform: rotate(45deg);
  transition: transform .25s ease;
}

/* PC submenu */
.gnav__submenu {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  z-index: 10;
  width: max-content;
  min-width: 220px;
  padding: 12px;
  border: 1px solid #e8f2f4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 40px rgba(32, 65, 91, .12);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
}

.gnav__submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 0;
  left: 0;
  height: 16px;
}

.gnav__item--has-child:hover>.gnav__submenu,
.gnav__item--has-child:focus-within>.gnav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.gnav__submenu a {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  color: var(--color-navy);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
  transition: color .2s ease, background-color .2s ease;
}

.gnav__submenu a:hover,
.gnav__submenu a:focus-visible {
  color: var(--color-main);
  background: #f2fbfc;
}

/* Header contact buttons */
.header-btns {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  margin-left: clamp(20px, 2vw, 36px);
}

.tel-btn,
.reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  padding: 0 22px;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.tel-btn {
  border: 2px solid var(--color-main);
  color: var(--color-main);
  background: #fff;
}

.reserve-btn {
  border: 2px solid #f582a8;
  color: #fff;
  background: #f582a8;
}

/* Mobile menu button */
.menu-button {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid #dceff1;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-main);
  transition: top .25s ease, transform .25s ease, opacity .25s ease;
}

.menu-button span:nth-child(1) {
  top: 15px;
}

.menu-button span:nth-child(2) {
  top: 22px;
}

.menu-button span:nth-child(3) {
  top: 29px;
}

.menu-button.is-open span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-open span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

.gnav__contact {
  display: none;
}

/* ======================================
   04. Hero
====================================== */
.hero {
  padding: 0 20px;
  background: #fff;
}

.hero picture {
  display: block;
  max-width: 1500px;
  margin: 0 auto;
}

.hero img {
  width: 100%;
  height: auto;
}

/* ======================================
   05. Concept
====================================== */
.concept {
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  background: #fff;
}

.concept__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  width: min(1200px, calc(100% - 80px));
  margin: auto;
}

.concept__text {
  position: relative;
  z-index: 2;
  width: 42%;
}

.concept-bg {
  position: absolute;
  top: -110px;
  left: -60px;
  z-index: -1;
  color: #f3f6fb;
  font-family: "Cormorant Garamond", serif;
  font-size: 170px;
  font-weight: 600;
  letter-spacing: .05em;
  white-space: nowrap;
  user-select: none;
}

.concept-en {
  margin-bottom: 30px;
  color: #34bfd6;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .15em;
}

.concept h2 {
  margin-bottom: 40px;
  color: #22386f;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.45;
}

.concept .line {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 40px;
  border-radius: 10px;
  background: #34bfd6;
}

.concept .lead {
  margin-bottom: 55px;
  color: #4f5968;
  font-size: 18px;
  line-height: 2.2;
}

.concept__image {
  width: 58%;
}

.concept__image img {
  width: 100%;
}

/* ======================================
   06. Features
====================================== */
.features {
  overflow: hidden;
  padding: clamp(90px, 9vw, 140px) 0 0;
  background: #fff;
}

.features__inner {
  width: min(1500px, calc(100% - 60px));
  margin-inline: auto;
}

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

.feature {
  --feature-color: var(--color-main);
  --feature-number-color: #e5f5f5;
  --feature-background: #fff;
  position: relative;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: center;
  gap: clamp(70px, 7vw, 120px);
  min-height: 500px;
  padding: 55px clamp(45px, 5vw, 80px);
  background: var(--feature-background);
}

.feature--reverse {
  grid-template-columns: minmax(0, 1fr) 420px;
}

.feature--reverse .feature__text {
  grid-column: 2;
  grid-row: 1;
}

.feature--reverse .feature__visual {
  grid-column: 1;
  grid-row: 1;
}

.feature--01 {
  --feature-color: #21b9c2;
  --feature-number-color: #e6f6f6;
  --feature-background: #fff;
}

.feature--02 {
  --feature-color: #264d98;
  --feature-number-color: #e6effc;
  --feature-background: #f4fbff;
}

.feature--03 {
  --feature-color: #f17f9e;
  --feature-number-color: #fde7ed;
  --feature-background: #fff;
}

.feature--04 {
  --feature-color: #e2a928;
  --feature-number-color: #fff1ca;
  --feature-background: #fffaf0;
}

.feature--05 {
  --feature-color: #28b7b3;
  --feature-number-color: #e1f5f3;
  --feature-background: #f3fbfc;
}

.feature__text {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 420px;
  padding: 65px 0 35px;
}

.feature__number {
  position: absolute;
  top: -40px;
  left: -28px;
  z-index: -1;
  color: var(--feature-number-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(130px, 12vw, 200px);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.feature--reverse .feature__number {
  right: -20px;
  left: auto;
}

.feature__title {
  margin-bottom: 26px;
  color: var(--feature-color);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: .05em;
}

.feature__description {
  margin-bottom: 34px;
  color: var(--color-text);
  font-size: 16px;
  line-height: 2.05;
  letter-spacing: .04em;
}

.feature__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 190px;
  height: 54px;
  padding: 0 26px;
  border: 2px solid var(--feature-color);
  border-radius: 999px;
  color: var(--feature-color);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  transition: background-color .25s ease, color .25s ease;
}

.feature__button:hover {
  color: #fff;
  background: var(--feature-color);
}

.feature__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.feature__visual>img:not(.feature__character),
.feature__photo {
  width: 100%;
  max-width: 720px;
  height: auto;
  object-fit: contain;
}

.feature__character {
  position: absolute;
  z-index: 3;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.feature__character--02 {
  right: -35px;
  bottom: 2px;
  width: clamp(80px, 7vw, 112px);
}

.feature__character--04 {
  right: -40px;
  bottom: -4px;
  width: clamp(85px, 7.5vw, 118px);
}

/* ======================================
   07. Clinic Menu
====================================== */
.clinic-menu {
  padding: clamp(90px, 9vw, 140px) 0;
  background: #fff;
}

.clinic-menu__inner {
  width: min(1200px, calc(100% - 60px));
  margin-inline: auto;
}

.clinic-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(30px, 4vw, 64px);
  row-gap: clamp(42px, 5vw, 70px);
}

.clinic-menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  color: var(--color-navy);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .07em;
  text-align: center;
  transition: transform .25s ease, opacity .25s ease;
}

.clinic-menu__item:hover {
  transform: translateY(-5px);
  opacity: .85;
}

.clinic-menu__item img {
  width: 100%;
  max-width: 230px;
  height: auto;
}

.clinic-menu__button-wrap {
  margin-top: clamp(55px, 6vw, 80px);
  text-align: center;
}

/* ======================================
   08. For You
====================================== */
.for-you {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 140px) 0;
  background: linear-gradient(180deg, #f7fcff 0%, #eefaff 50%, #f7fcff 100%);
}

.for-you::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -2%;
  width: 104%;
  height: 70px;
  border-radius: 50%;
  background: #fff;
}

.for-you__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 60px));
  margin-inline: auto;
}

.for-you__visual {
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.for-you__visual img {
  width: 100%;
  height: auto;
}

.for-you__message {
  margin-top: clamp(50px, 6vw, 80px);
  text-align: center;
}

.for-you__message p {
  margin-bottom: 36px;
  color: var(--color-navy);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: .1em;
}

/* ======================================
   09. Doctor
====================================== */
.doctor-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 140px) 0;
  background: #fff;
}

.doctor-section__inner {
  width: min(1500px, calc(100% - 60px));
  margin-inline: auto;
}

.doctor-section__content {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(380px, 1fr) minmax(250px, .65fr);
  align-items: center;
  gap: clamp(45px, 5vw, 80px);
}

.doctor-section__visual img {
  width: 100%;
  max-width: 570px;
  height: auto;
  margin-inline: auto;
}

.doctor-section__message {
  max-width: 520px;
}

.doctor-section__catch {
  color: var(--color-navy);
  font-size: clamp(27px, 2.5vw, 38px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: .08em;
}

.doctor-section__line {
  width: 38px;
  height: 3px;
  margin: 30px 0;
  border-radius: 999px;
  background: var(--color-main);
}

.doctor-section__text {
  color: var(--color-text);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: .04em;
}

.doctor-profile {
  padding: 38px 34px;
  border: 1px solid #edf1f3;
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 12px 35px rgba(33, 68, 100, .06);
}

.doctor-profile__position {
  color: var(--color-navy);
  font-size: 15px;
  font-weight: 500;
}

.doctor-profile__name {
  margin-top: 8px;
  color: var(--color-navy);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .1em;
}

.doctor-profile__name-en {
  margin-top: 5px;
  color: var(--color-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
}

.doctor-profile__list {
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.doctor-profile__list li {
  position: relative;
  margin-top: 11px;
  padding-left: 16px;
  color: var(--color-text);
  font-size: 13px;
  line-height: 1.7;
}

.doctor-profile__list li::before {
  content: "";
  position: absolute;
  top: .7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-main);
}

/* ======================================
   10. Facilities
====================================== */
.facilities-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 140px) 0;
  background: linear-gradient(180deg, #fffdf8 0%, #fffaf4 50%, #fffdf8 100%);
}

.facilities-section__inner {
  width: min(1500px, calc(100% - 60px));
  margin-inline: auto;
}

.facilities-section .section-heading__title::after {
  background: #f286a3;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(50px, 5vw, 80px) clamp(35px, 4vw, 60px);
  align-items: start;
}

.facility-card {
  min-width: 0;
}

.facility-card__image {
  overflow: hidden;
  width: 100%;
  border-radius: 38px;
  background: #fff;
}

.facility-card__image img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  transition: transform .3s ease, opacity .3s ease;
}

.facility-card:hover .facility-card__image img {
  transform: scale(1.02);
  opacity: .96;
}

.facility-card__description {
  margin-top: 24px;
  color: var(--color-navy);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .05em;
}

.facilities-section__button {
  margin-top: clamp(55px, 6vw, 85px);
  text-align: center;
}

/* ======================================
   11. Access
====================================== */
.access-section {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 140px) 0;
  background: linear-gradient(180deg, #f5fbff 0%, #edf9ff 55%, #f6fcff 100%);
}

.access-section__inner {
  width: min(1500px, calc(100% - 60px));
  margin-inline: auto;
}

.access-section__main-visual {
  width: min(1200px, 100%);
  margin-inline: auto;
}

.access-section__main-visual img {
  width: 100%;
  height: auto;
}

.access-section__content {
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(500px, 1.1fr);
  align-items: stretch;
  gap: clamp(50px, 6vw, 90px);
  width: min(1200px, 100%);
  margin: clamp(55px, 6vw, 85px) auto 0;
}

.access-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.access-info__name {
  margin-bottom: 22px;
  color: var(--color-navy);
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
}

.access-info__address {
  color: var(--color-text);
  font-size: 16px;
  font-style: normal;
  line-height: 2;
  letter-spacing: .04em;
}

.access-info__tel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin-top: 24px;
  color: var(--color-main);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .03em;
}

.access-info__tel-icon {
  font-size: .8em;
}

.access-hours {
  margin-top: 34px;
}

.access-hours__title {
  margin-bottom: 14px;
  color: var(--color-main);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .08em;
}

.access-hours__scroll {
  width: 100%;
  overflow-x: auto;
}

.access-hours__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: var(--color-text);
  font-size: 14px;
  text-align: center;
}

.access-hours__table th,
.access-hours__table td {
  padding: 12px 10px;
  border-bottom: 1px solid #dceaf0;
}

.access-hours__table thead th {
  color: var(--color-main);
  font-weight: 700;
}

.access-hours__table th:first-child {
  width: 140px;
  text-align: left;
  white-space: nowrap;
}

.access-hours__table tbody td {
  color: var(--color-main);
  font-weight: 700;
}

.access-hours__table .is-closed {
  color: #f17f9e;
}

.access-hours__note {
  margin-top: 14px;
  color: #66717d;
  font-size: 13px;
  line-height: 1.8;
}

.access-map {
  min-height: 440px;
  overflow: hidden;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(47, 102, 132, .08);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

/* ======================================
   12. Reservation CTA
====================================== */
.reservation-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 8vw, 110px) 0;
  background: linear-gradient(180deg, #fff8dd 0%, #fffbed 100%);
}

.reservation-cta::before {
  content: "";
  position: absolute;
  top: -35px;
  left: -2%;
  width: 104%;
  height: 70px;
  border-radius: 50%;
  background: #f6fcff;
}

.reservation-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 180px minmax(0, 760px) 180px;
  align-items: center;
  justify-content: center;
  gap: clamp(35px, 5vw, 80px);
  width: min(1200px, calc(100% - 60px));
  margin-inline: auto;
}

.reservation-cta__character {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-inline: auto;
}

.reservation-cta__content {
  text-align: center;
}

.reservation-cta__title {
  color: #f06f94;
  font-size: clamp(28px, 3vw, 43px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .08em;
}

.reservation-cta__line {
  display: block;
  width: 38px;
  height: 3px;
  margin: 22px auto 26px;
  border-radius: 999px;
  background: #f06f94;
}

.reservation-cta__text {
  color: var(--color-text);
  font-size: 16px;
  line-height: 2;
  letter-spacing: .04em;
}

.reservation-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 35px;
}

.c-btn-pink {
  gap: 24px;
  color: #fff;
  border: 2px solid #f06f94;
  background: #f06f94;
}

.c-btn-pink:hover {
  color: #f06f94;
  background: #fff;
}

.c-btn-tel {
  color: #f06f94;
  border: 2px solid #f06f94;
  background: #fff;
}

.c-btn-tel:hover {
  color: #fff;
  background: #f06f94;
}

/* ======================================
   13. Fixed Contact
====================================== */
.fixed-contact {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .97);
  border-top: 1px solid #edf0f2;
  box-shadow: 0 -8px 30px rgba(33, 54, 83, .08);
  backdrop-filter: blur(8px);
}

.fixed-contact__inner {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(360px, 480px) 90px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: min(1200px, calc(100% - 40px));
  min-height: 92px;
  margin-inline: auto;
}

.fixed-contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 66px;
  border-radius: 16px;
  transition: transform .2s ease, opacity .2s ease;
}

.fixed-contact__item:hover {
  transform: translateY(-2px);
  opacity: .9;
}

.fixed-contact__item--web {
  color: #fff;
  background: #f06f94;
}

.fixed-contact__item--tel {
  color: #f06f94;
  border: 2px solid #f06f94;
  background: #fff;
}

.fixed-contact__icon {
  font-size: 28px;
  line-height: 1;
}

.fixed-contact__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fixed-contact__label strong {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: .04em;
}

.fixed-contact__label small {
  margin-top: 2px;
  font-size: 11px;
  font-weight: 700;
}

.fixed-contact__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-main);
  text-align: center;
}

.fixed-contact__top>span {
  font-size: 22px;
  line-height: 1;
}

.fixed-contact__top small {
  margin-top: 3px;
  font-size: 9px;
  line-height: 1.25;
}

/* ======================================
   14. Responsive
====================================== */
@media (max-width: 1200px) {
  .features__inner {
    width: min(1500px, calc(100% - 40px));
  }

  .feature {
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 55px;
    padding-inline: 40px;
  }

  .feature--reverse {
    grid-template-columns: minmax(0, 1fr) 380px;
  }

  .feature__text {
    max-width: 380px;
  }

  .feature__description {
    font-size: 15px;
  }

  .feature__character--02,
  .feature__character--04 {
    right: -15px;
  }
}

@media (max-width: 1100px) {

  .doctor-section__inner,
  .facilities-section__inner,
  .access-section__inner {
    width: calc(100% - 40px);
  }

  .doctor-section__content {
    grid-template-columns: minmax(300px, .9fr) minmax(350px, 1.1fr);
  }

  .doctor-profile {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
  }

  .access-section__content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .reservation-cta__inner {
    grid-template-columns: 130px minmax(0, 1fr) 130px;
    width: calc(100% - 40px);
    gap: 25px;
  }

  .fixed-contact__inner {
    grid-template-columns: 1fr 1fr 74px;
  }
}

@media (max-width: 991px) {
  .concept {
    padding: 90px 0;
  }

  .concept__inner {
    display: block;
    width: calc(100% - 40px);
  }

  .concept__text {
    width: 100%;
    margin-bottom: 60px;
  }

  .concept-bg {
    top: -55px;
    left: 0;
    font-size: 90px;
  }

  .concept-en {
    font-size: 15px;
  }

  .concept h2 {
    font-size: 42px;
  }

  .concept .lead {
    font-size: 16px;
    line-height: 2;
  }

  .concept__image {
    width: 100%;
  }

  .clinic-menu__inner,
  .for-you__inner {
    width: calc(100% - 40px);
  }

  .clinic-menu__grid {
    column-gap: 24px;
    row-gap: 45px;
  }

  .clinic-menu__item {
    font-size: 16px;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 46px 28px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 70px;
  }

  .section-heading {
    width: calc(100% - 40px);
    margin-inline: auto;
    margin-bottom: 55px;
  }

  .c-link-button {
    min-width: 0;
    max-width: 100%;
    min-height: 56px;
    padding: 12px 22px 12px 28px;
    gap: 24px;
    font-size: 15px;
    letter-spacing: .05em;
  }

  .c-link-button__arrow {
    font-size: 21px;
  }

  .c-link-button--large {
    width: 100%;
    max-width: 360px;
    min-height: 60px;
    padding-inline: 26px;
  }

  .features {
    padding-top: 80px;
  }

  .features__inner {
    width: 100%;
  }

  .feature,
  .feature--reverse {
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-height: 0;
    padding: 60px 20px 75px;
  }

  .feature__visual,
  .feature--reverse .feature__visual {
    order: 1;
    grid-column: auto;
    grid-row: auto;
  }

  .feature__text,
  .feature--reverse .feature__text {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    max-width: none;
    padding: 38px 0 0;
  }

  .feature__visual>img:not(.feature__character),
  .feature__photo {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
  }

  .feature__number,
  .feature--reverse .feature__number {
    top: -8px;
    right: auto;
    left: 0;
    font-size: clamp(90px, 28vw, 130px);
  }

  .feature__title {
    margin-bottom: 20px;
    font-size: 25px;
  }

  .feature__description {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 2;
  }

  .feature__button {
    min-width: 170px;
    height: 50px;
    padding-inline: 22px;
    font-size: 14px;
  }

  .feature__character--02 {
    right: 8px;
    bottom: -10px;
    width: 72px;
  }

  .feature__character--04 {
    right: 8px;
    bottom: -10px;
    width: 76px;
  }

  .clinic-menu,
  .for-you,
  .doctor-section,
  .facilities-section,
  .access-section {
    padding: 80px 0;
  }

  .clinic-menu__inner,
  .for-you__inner,
  .doctor-section__inner,
  .facilities-section__inner,
  .access-section__inner {
    width: calc(100% - 32px);
  }

  .clinic-menu__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 36px;
  }

  .clinic-menu__item {
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  .clinic-menu__item img {
    max-width: 180px;
  }

  .clinic-menu__button-wrap {
    margin-top: 50px;
  }

  .for-you::before {
    top: -20px;
    height: 40px;
  }

  .for-you__visual {
    max-width: 520px;
  }

  .for-you__message {
    margin-top: 45px;
  }

  .for-you__message p {
    margin-bottom: 28px;
    font-size: 21px;
    line-height: 1.8;
  }

  .doctor-section__content {
    display: flex;
    flex-direction: column;
    gap: 42px;
  }

  .doctor-section__visual {
    order: 1;
    width: 100%;
  }

  .doctor-section__message {
    order: 2;
    width: 100%;
    max-width: none;
  }

  .doctor-profile {
    order: 3;
    width: 100%;
    padding: 30px 24px;
  }

  .doctor-section__catch {
    font-size: 27px;
    line-height: 1.7;
  }

  .doctor-section__text {
    font-size: 15px;
    line-height: 2;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 14px;
  }

  .facility-card__image {
    border-radius: 22px;
  }

  .facility-card__description {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.75;
  }

  .facilities-section__button {
    margin-top: 50px;
  }

  .access-section__content {
    display: flex;
    flex-direction: column;
    gap: 45px;
    margin-top: 45px;
  }

  .access-info__name {
    font-size: 25px;
  }

  .access-info__address {
    font-size: 15px;
  }

  .access-info__tel {
    font-size: 28px;
  }

  .access-hours__table {
    font-size: 13px;
  }

  .access-map,
  .access-map iframe {
    min-height: 340px;
    border-radius: 24px;
  }

  .reservation-cta {
    padding: 70px 0 85px;
  }

  .reservation-cta::before {
    top: -20px;
    height: 40px;
  }

  .reservation-cta__inner {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 70px;
    align-items: end;
    gap: 8px;
    width: calc(100% - 24px);
  }

  .reservation-cta__content {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .reservation-cta__character {
    width: 70px;
  }

  .reservation-cta__character--left {
    grid-column: 1;
    grid-row: 2;
  }

  .reservation-cta__character--right {
    grid-column: 3;
    grid-row: 2;
  }

  .reservation-cta__title {
    font-size: 28px;
  }

  .reservation-cta__text {
    font-size: 15px;
  }

  .reservation-cta__buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
  }

  .fixed-contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    min-height: 70px;
  }

  .fixed-contact__item {
    height: 70px;
    border-radius: 0;
    gap: 8px;
  }

  .fixed-contact__item--tel {
    border-width: 0;
    border-left: 1px solid #f5b2c5;
  }

  .fixed-contact__icon {
    font-size: 21px;
  }

  .fixed-contact__label strong {
    font-size: 15px;
  }

  .fixed-contact__label small {
    font-size: 9px;
  }

  .fixed-contact__top {
    position: fixed;
    right: 12px;
    bottom: 82px;
    width: 50px;
    height: 50px;
    box-shadow: 0 5px 18px rgba(33, 54, 83, .16);
  }

  .fixed-contact__top small {
    display: none;
  }
}

@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .facility-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .facility-card__description {
    font-size: 14px;
  }
}




/*======================================
  Wave Divider
======================================*/

.section-wave {
  position: relative;
  height: 80px;
  overflow: hidden;
  background: #f4fbff;
}

.section-wave::before {
  content: "";
  position: absolute;
  top: -55px;
  left: -5%;
  width: 110%;
  height: 110px;

  background: #fff;

  border-radius:
    0 0 10% 10% / 0 0 100% 100%;
}


@media(max-width:767px) {

  .section-wave {
    height: 55px;
  }

  .section-wave::before {
    top: -38px;
    height: 80px;
  }

}



/* ======================================
   Wave Divider
   セクション間の波型区切り
====================================== */

.wave-divider {
  --wave-color: #eefaff;
  --wave-height: 100px;

  width: 100%;
  height: var(--wave-height);
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave-divider path {
  fill: var(--wave-color);
}


/* 色違い */
.wave-divider--blue {
  --wave-color: #eefaff;
}

.wave-divider--cream {
  --wave-color: #fff8e6;
}

.wave-divider--pink {
  --wave-color: #fff3f7;
}


/* スマホ */
@media (max-width: 767px) {

  .wave-divider {
    --wave-height: 55px;
  }

}

/* ======================================
   15. Header Responsive Navigation
====================================== */
@media (max-width: 1200px) {
  .site-header-inner {
    width: calc(100% - 40px);
    height: 76px;
  }

  .logo img {
    width: 220px;
  }

  .header-btns {
    display: none;
  }

  .menu-button {
    display: block;
    flex-shrink: 0;
    margin-left: auto;
  }

  .gnav {
    display: block;
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    z-index: 998;
    width: min(440px, 100%);
    margin: 0;
    padding: 22px 24px 120px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -12px 18px 40px rgba(33, 64, 90, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }

  .gnav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .gnav__list {
    display: block;
  }

  .gnav__item {
    border-bottom: 1px solid #edf3f5;
  }

  .gnav__parent {
    display: grid;
    grid-template-columns: 1fr 54px;
    align-items: stretch;
  }

  .gnav__link {
    height: auto;
    min-height: 60px;
    padding: 18px 8px;
    font-size: 16px;
  }

  .gnav__link::after {
    display: none;
  }

  .gnav__submenu-button {
    width: 54px;
    height: 60px;
    margin: 0;
  }

  .gnav__submenu-button::before {
    top: 23px;
    left: 22px;
  }

  .gnav__submenu-button[aria-expanded="true"]::before {
    top: 27px;
    transform: rotate(225deg);
  }

  .gnav__submenu {
    position: static;
    width: 100%;
    min-width: 0;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #f7fcfd;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .35s ease, padding .35s ease;
  }

  .gnav__item--has-child:hover>.gnav__submenu,
  .gnav__item--has-child:focus-within>.gnav__submenu {
    transform: none;
  }

  .gnav__submenu.is-open {
    max-height: 700px;
    padding: 8px;
  }

  .gnav__submenu a {
    padding: 13px 18px;
    font-size: 14px;
  }

  .gnav__contact {
    display: grid;
    gap: 12px;
    margin-top: 28px;
  }

  .gnav__contact-tel,
  .gnav__contact-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 10px 20px;
    border-radius: 14px;
    text-align: center;
  }

  .gnav__contact-tel {
    flex-direction: column;
    border: 2px solid var(--color-main);
    color: var(--color-main);
    background: #fff;
  }

  .gnav__contact-tel span {
    font-size: 11px;
  }

  .gnav__contact-tel strong {
    font-size: 21px;
  }

  .gnav__contact-reserve {
    color: #fff;
    background: #f582a8;
    font-size: 16px;
    font-weight: 700;
  }

  body.is-menu-open {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .site-header-inner {
    width: calc(100% - 28px);
    height: 68px;
  }

  .logo img {
    width: min(210px, 65vw);
  }

  .gnav {
    top: 68px;
    padding: 16px 18px 110px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .menu-button span {
    left: 12px;
  }

  .menu-button span:nth-child(1) {
    top: 13px;
  }

  .menu-button span:nth-child(2) {
    top: 20px;
  }

  .menu-button span:nth-child(3) {
    top: 27px;
  }

  .menu-button.is-open span:nth-child(1),
  .menu-button.is-open span:nth-child(3) {
    top: 20px;
  }
}