/* =========================================================
HANAFUSA CHILDREN'S CLINIC
Template Plan
========================================================= */


/* =========================================================
RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  padding: 0;
  color: #514d43;
  background: #fcfaf4;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.035em;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

address {
  font-style: normal;
}

h1,
h2,
h3,
p,
figure,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sp-only {
  display: none;
}


/* =========================================================
VARIABLES
========================================================= */

:root {
  --ivory: #fcfaf4;
  --ivory-deep: #f4efe2;
  --white: #ffffff;

  --sage: #9caf91;
  --sage-light: #e8eee2;
  --sage-pale: #f0f4ec;

  --yellow: #e7cf74;
  --yellow-light: #f8edbf;

  --beige: #e9dfcc;
  --beige-light: #f4eee4;

  --brown: #514d43;
  --brown-dark: #3f4136;
  --brown-soft: #777369;

  --line: #ded9ce;

  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 42px;

  --container: 1240px;

  --font-round:
    "Zen Maru Gothic",
    "Hiragino Maru Gothic ProN",
    "Hiragino Sans",
    sans-serif;

  --shadow:
    0 24px 70px rgba(82, 72, 52, 0.09);
}


/* =========================================================
COMMON
========================================================= */

.section-en {
  display: block;
  margin-bottom: 10px;
  color: #8b927d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.news-heading h2,
.symptoms-heading h2,
.medical-heading h2,
.fever-copy h2,
.first-heading h2,
.doctor-heading h2,
.clinic-heading h2,
.faq-heading h2,
.access-heading h2,
.reservation-copy h2,
.medical-card h3,
.bring-title h3 {
  font-family: var(--font-round);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
HEADER
========================================================= */

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(252, 250, 244, 0.93);
  box-shadow: 0 1px 0 rgba(76, 70, 58, 0.07);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 64px), 1440px);
  height: 94px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-flower {
  position: relative;
  display: block;
  width: 37px;
  height: 37px;
}

.brand-flower i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 20px;
  background: var(--sage);
  border-radius: 70% 70% 60% 60%;
  transform-origin: 50% 100%;
}

.brand-flower i:nth-child(1) {
  transform: translate(-50%, -100%) rotate(0deg);
}

.brand-flower i:nth-child(2) {
  transform: translate(-50%, -100%) rotate(72deg);
}

.brand-flower i:nth-child(3) {
  transform: translate(-50%, -100%) rotate(144deg);
}

.brand-flower i:nth-child(4) {
  transform: translate(-50%, -100%) rotate(216deg);
}

.brand-flower i:nth-child(5) {
  transform: translate(-50%, -100%) rotate(288deg);
}

.brand-flower::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-ja {
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.055em;
}

.brand-en {
  margin-top: 4px;
  color: #99968b;
  font-size: 7px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.17em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 38px);
}

.desktop-nav a {
  position: relative;
  color: #69685e;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  width: 0;
  height: 1px;
  margin: auto;
  background: var(--sage);
  content: "";
  transition: width 0.25s ease;
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-reserve {
  display: inline-flex;
  align-items: center;
  gap: 25px;
  height: 50px;
  padding-inline: 21px;
  color: var(--brown-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.header-reserve:hover {
  background: #dfc45f;
  transform: translateY(-2px);
}

.header-reserve b {
  font-size: 14px;
  font-weight: 400;
}

.menu-button {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 13px;
  width: 22px;
  height: 1px;
  background: var(--brown-dark);
  transition:
    top 0.3s ease,
    transform 0.3s ease;
}

.menu-button span:first-child {
  top: 20px;
}

.menu-button span:last-child {
  top: 27px;
}

.menu-button.is-active span:first-child {
  top: 24px;
  transform: rotate(45deg);
}

.menu-button.is-active span:last-child {
  top: 24px;
  transform: rotate(-45deg);
}


/* =========================================================
MOBILE MENU
========================================================= */

.mobile-menu {
  display: none;
}


/* =========================================================
HERO
========================================================= */

.hero {
  padding:
    112px
    34px
    38px;
  background: var(--ivory);
}

.hero-photo {
  position: relative;
  width: min(100%, 1440px);
  height: 720px;
  margin-inline: auto;
  overflow: hidden;
  border-radius:
    38px
    38px
    105px
    38px;
}

.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(63, 58, 46, 0.12) 0%,
      rgba(63, 58, 46, 0.02) 46%,
      transparent 70%
    );
  content: "";
  pointer-events: none;
}

.hero-message {
  position: absolute;
  z-index: 3;
  left: 42px;
  bottom: 42px;
  width: min(630px, calc(100% - 84px));
  padding:
    36px
    42px
    35px;
  background: rgba(255, 253, 247, 0.95);
  border-radius:
    30px
    30px
    30px
    8px;
  box-shadow:
    0 22px 60px rgba(71, 63, 48, 0.13);
  backdrop-filter: blur(12px);
}

.hero-kicker {
  margin-bottom: 17px;
  color: #89937f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-message h1 {
  margin-bottom: 20px;
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.hero-title-main {
  display: block;
  font-size: clamp(34px, 3vw, 43px);
  line-height: 1.55;
  white-space: nowrap;
}

.hero-title-sub {
  display: block;
  margin-top: 5px;
  color: #65665c;
  font-size: clamp(23px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.55;
  white-space: nowrap;
}

.hero-description {
  max-width: 510px;
  margin-bottom: 23px;
  color: #7d786d;
  font-size: 11px;
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  gap: 9px;
}

.hero-reserve,
.hero-phone {
  min-height: 58px;
  border-radius: 999px;
}

.hero-reserve {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 170px;
  padding: 9px 18px 9px 21px;
  color: var(--brown-dark);
  background: var(--yellow);
}

.hero-reserve span {
  grid-column: 1;
  font-size: 12px;
  font-weight: 700;
}

.hero-reserve small {
  grid-column: 1;
  color: #786f4f;
  font-size: 8px;
}

.hero-reserve b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 15px;
  font-weight: 400;
}

.hero-phone {
  display: flex;
  min-width: 170px;
  flex-direction: column;
  justify-content: center;
  padding-inline: 20px;
  border: 1px solid #dad3c5;
  background: rgba(255, 255, 255, 0.75);
}

.hero-phone span {
  color: var(--brown-dark);
  font-size: 12px;
  font-weight: 700;
}

.hero-phone small {
  color: #9b978d;
  font-size: 8px;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.23em;
  writing-mode: vertical-rl;
}


/* =========================================================
TODAY PANEL
========================================================= */

.today-panel {
  display: grid;
  grid-template-columns:
    1.15fr
    1.15fr
    1fr
    auto;
  align-items: stretch;
  width: min(calc(100% - 88px), 1220px);
  margin:
    42px
    auto
    0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e6e0d5;
  border-radius: 28px;
  box-shadow:
    0 15px 50px rgba(75, 66, 49, 0.055);
}

.today-main,
.today-special,
.today-access {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 112px;
  padding: 23px 27px;
  border-right: 1px solid #e6e0d5;
}

.today-eyebrow {
  color: #a09b90;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.today-panel strong {
  display: block;
  margin-bottom: 2px;
  color: var(--brown-dark);
  font-size: 13px;
}

.today-panel p {
  margin: 0;
  color: #8a867d;
  font-size: 10px;
}

.today-special > span {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: #74672f;
  background: var(--yellow-light);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.today-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  min-width: 165px;
  padding-inline: 25px;
  color: var(--brown-dark);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.25s ease;
}

.today-reserve:hover {
  background: #dfc45f;
}

.today-reserve b {
  font-size: 17px;
  font-weight: 400;
}

.today-status.is-closed {
  color: #a2685e;
}


/* =========================================================
NEWS
========================================================= */

.news {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 75px;
  max-width: var(--container);
  margin-inline: auto;
  padding:
    110px
    44px
    120px;
}

.news-heading h2 {
  margin-bottom: 0;
  color: var(--brown-dark);
  font-size: 34px;
  font-weight: 500;
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns:
    100px
    88px
    1fr
    auto;
  align-items: center;
  gap: 13px;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  transition:
    padding-left 0.25s ease,
    color 0.25s ease;
}

.news-list a:hover {
  padding-left: 7px;
  color: #747c67;
}

.news-list time {
  color: #99958c;
  font-size: 10px;
}

.news-tag {
  justify-self: start;
  padding: 4px 9px;
  color: #6e7967;
  background: var(--sage-light);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.news-tag-yellow {
  color: #7c6b31;
  background: var(--yellow-light);
}

.news-tag-beige {
  color: #776f61;
  background: var(--beige-light);
}

.news-list p {
  margin: 0;
  color: #646159;
  font-size: 12px;
}

.news-list b {
  font-size: 15px;
  font-weight: 400;
}


/* =========================================================
SYMPTOMS
========================================================= */

.symptoms {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding:
    100px
    max(
      44px,
      calc((100vw - var(--container)) / 2)
    )
    90px;
  background: #f5f2e9;
}

.symptoms::before {
  position: absolute;
  top: -190px;
  right: -150px;
  width: 340px;
  height: 340px;
  background: rgba(231, 207, 116, 0.12);
  border-radius: 50%;
  content: "";
}

.symptoms::after {
  position: absolute;
  bottom: -205px;
  left: -180px;
  width: 310px;
  height: 310px;
  background: rgba(156, 175, 145, 0.11);
  border-radius: 50%;
  content: "";
}

.symptoms-heading {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.symptoms-heading h2 {
  margin-bottom: 18px;
  color: var(--brown-dark);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.5;
}

.symptoms-heading h2 span {
  display: block;
}

.symptoms-heading p {
  max-width: 480px;
  margin: 0;
  color: var(--brown-soft);
  font-size: 12px;
  line-height: 2;
}

.symptom-orbit {
  position: relative;
  z-index: 2;
  width: min(100%, 930px);
  height: 370px;
  margin:
    30px
    auto
    0;
}

.symptom-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid rgba(108, 104, 89, 0.07);
  box-shadow:
    0 16px 40px rgba(87, 78, 56, 0.045);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.symptom-bubble:hover {
  z-index: 3;
  box-shadow:
    0 24px 54px rgba(87, 78, 56, 0.09);
  transform: translateY(-6px) rotate(0deg);
}

.symptom-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  color: #727666;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 12px;
}

.symptom-bubble strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 14px;
}

.symptom-bubble p {
  margin: 0;
  color: #858076;
  font-size: 8px;
}

.symptom-fever {
  top: 22px;
  left: 3%;
  width: 180px;
  height: 165px;
  background: #f7e7c2;
  border-radius:
    49%
    51%
    47%
    53%;
  transform: rotate(-3deg);
}

.symptom-cough {
  top: 0;
  left: 35%;
  width: 195px;
  height: 175px;
  background: #e5eee0;
  border-radius:
    53%
    47%
    51%
    49%;
  transform: rotate(2deg);
}

.symptom-throat {
  top: 32px;
  right: 2%;
  width: 170px;
  height: 155px;
  background: #eee5d7;
  border-radius:
    45%
    55%
    51%
    49%;
  transform: rotate(-2deg);
}

.symptom-stomach {
  bottom: 0;
  left: 18%;
  width: 190px;
  height: 170px;
  background: #eee7d5;
  border-radius:
    52%
    48%
    45%
    55%;
  transform: rotate(2deg);
}

.symptom-skin {
  bottom: 4px;
  left: 50%;
  width: 175px;
  height: 160px;
  background: #f4e6da;
  border-radius:
    47%
    53%
    54%
    46%;
  transform: rotate(-3deg);
}

.symptom-allergy {
  right: 4%;
  bottom: 0;
  width: 190px;
  height: 170px;
  background: #dfe9dc;
  border-radius:
    54%
    46%
    49%
    51%;
  transform: rotate(2deg);
}


/* =========================================================
MEDICAL
========================================================= */

.medical {
  max-width: var(--container);
  margin-inline: auto;
  padding:
    130px
    44px;
}

.medical-heading {
  max-width: 630px;
  margin-bottom: 60px;
}

.medical-heading h2 {
  margin-bottom: 18px;
  color: var(--brown-dark);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
}

.medical-heading > p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 12px;
  line-height: 2;
}

.medical-bento {
  display: grid;
  grid-template-columns:
    1.25fr
    0.75fr;
  grid-template-rows:
    250px
    250px
    225px;
  gap: 14px;
}

.medical-card {
  position: relative;
  overflow: hidden;
  padding: 31px;
  border-radius: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.medical-card:hover {
  box-shadow:
    0 22px 55px rgba(77, 69, 53, 0.08);
  transform: translateY(-4px);
}

.medical-main {
  display: flex;
  grid-row: 1 / 3;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  padding: 45px;
  background: #e6eee1;
}

.medical-main > p {
  max-width: 360px;
}

.medical-vaccine {
  background: #f7edc8;
}

.medical-checkup {
  background: #eee5d6;
}

.medical-allergy {
  display: flex;
  grid-column: 1 / 3;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  background: #f1e8e0;
}

.medical-allergy > p {
  max-width: 480px;
}

.medical-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: #6c7164;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: Georgia, serif;
}

.medical-en {
  margin-bottom: 7px;
  color: #858779;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.medical-card h3 {
  margin-bottom: 9px;
  color: var(--brown-dark);
  font-size: 25px;
  font-weight: 500;
}

.medical-card > p,
.medical-card div + p {
  margin-bottom: 0;
  color: #716e64;
  font-size: 11px;
  line-height: 1.9;
}


/* =========================================================
FEVER
========================================================= */

.fever {
  padding:
    50px
    34px
    125px;
}

.fever-inner {
  display: grid;
  grid-template-columns:
    0.8fr
    1.2fr;
  gap: 80px;
  width: min(100%, var(--container));
  margin-inline: auto;
  padding: 62px;
  background: #f8edc9;
  border-radius:
    40px
    40px
    105px
    40px;
}

.fever-copy {
  max-width: 440px;
}

.fever-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 28px;
  color: #76692e;
  background: #e8cf74;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 20px;
}

.fever-copy .section-en {
  color: #81743d;
}

.fever-copy h2 {
  margin-bottom: 22px;
  color: #5c5438;
  font-size: clamp(30px, 3.3vw, 43px);
  font-weight: 500;
  line-height: 1.5;
}

.fever-copy p {
  margin: 0;
  color: #766d4c;
  font-size: 11px;
  line-height: 2;
}

.fever-steps {
  display: grid;
  align-content: center;
  gap: 9px;
}

.fever-steps article {
  display: grid;
  grid-template-columns:
    55px
    150px
    1fr;
  align-items: center;
  min-height: 98px;
  padding: 17px 23px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
}

.fever-steps article > span {
  color: #968344;
  font-family: Georgia, serif;
  font-size: 10px;
}

.fever-steps strong {
  color: #5f583e;
  font-size: 13px;
}

.fever-steps p {
  margin: 0;
  color: #827a5d;
  font-size: 10px;
}


/* =========================================================
FIRST VISIT
========================================================= */

.first {
  padding:
    125px
    max(
      44px,
      calc((100vw - var(--container)) / 2)
    );
  background: #fff;
}

.first-heading {
  max-width: 590px;
  margin-bottom: 55px;
}

.first-heading h2 {
  margin-bottom: 17px;
  color: var(--brown-dark);
  font-size: clamp(35px, 3.8vw, 50px);
  font-weight: 500;
}

.first-heading p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 12px;
}

.first-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.first-step {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background: #f8f6f0;
  border-radius: 24px;
}

.first-step:nth-child(2) {
  margin-top: 35px;
}

.first-step:nth-child(3) {
  margin-top: 70px;
}

.first-step:nth-child(4) {
  margin-top: 105px;
}

.first-step > span {
  display: block;
  margin-bottom: 70px;
  color: #a09b90;
  font-family: Georgia, serif;
  font-size: 11px;
}

.first-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 15px;
}

.first-step p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 10px;
}

.bring-card {
  display: grid;
  grid-template-columns:
    0.55fr
    1.45fr;
  gap: 60px;
  margin-top: 50px;
  padding: 39px 42px;
  background: var(--sage-pale);
  border-radius:
    22px
    55px
    22px
    22px;
}

.bring-title h3 {
  margin: 0;
  color: var(--brown-dark);
  font-size: 20px;
  font-weight: 500;
}

.bring-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.bring-items span {
  display: grid;
  place-items: center;
  min-height: 62px;
  padding-inline: 15px;
  border-right: 1px solid #d7dfd3;
  color: #69685f;
  font-size: 10px;
  text-align: center;
}

.bring-items span:last-child {
  border-right: 0;
}


/* =========================================================
DOCTOR
========================================================= */

.doctor {
  padding:
    130px
    34px;
  background: var(--ivory);
}

.doctor-intro {
  display: grid;
  grid-template-columns:
    0.78fr
    0.85fr
    0.9fr;
  align-items: center;
  gap: clamp(38px, 5vw, 80px);
  width: min(100%, 1180px);
  margin-inline: auto;
}

.doctor-heading h2 {
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(31px, 3.5vw, 45px);
  font-weight: 500;
  line-height: 1.55;
}

.doctor-portrait {
  position: relative;
  margin: 0;
}

.doctor-portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius:
    160px
    160px
    35px
    35px;
}

.doctor-portrait figcaption {
  position: absolute;
  right: -15px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  min-width: 145px;
  padding: 13px 17px;
  background: #fff;
  border-radius: 16px;
  box-shadow:
    0 12px 35px rgba(75, 68, 55, 0.08);
}

.doctor-portrait figcaption span {
  color: #969289;
  font-size: 8px;
}

.doctor-portrait figcaption strong {
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 600;
}

.doctor-message {
  padding-top: 70px;
}

.doctor-message p {
  margin-bottom: 19px;
  color: #737067;
  font-size: 12px;
  line-height: 2.05;
}

.doctor-consultation {
  position: relative;
  width: min(100%, 1180px);
  height: 580px;
  margin: 100px auto 0;
  overflow: hidden;
  border-radius:
    38px
    100px
    38px
    38px;
}

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

.consultation-caption {
  position: absolute;
  right: 28px;
  bottom: 27px;
  width: min(390px, calc(100% - 50px));
  padding: 25px 28px;
  background: rgba(255, 253, 247, 0.92);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.consultation-caption span {
  display: block;
  margin-bottom: 6px;
  color: #8f9083;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.consultation-caption strong {
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}


/* =========================================================
CLINIC
========================================================= */

.clinic {
  max-width: var(--container);
  margin-inline: auto;
  padding:
    130px
    44px;
}

.clinic-heading {
  max-width: 610px;
  margin-bottom: 60px;
}

.clinic-heading h2 {
  margin-bottom: 20px;
  color: var(--brown-dark);
  font-size: clamp(34px, 3.9vw, 51px);
  font-weight: 500;
  line-height: 1.5;
}

.clinic-heading p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 12px;
}

.clinic-gallery {
  display: grid;
  grid-template-columns:
    0.85fr
    1.15fr;
  gap: 17px;
  align-items: end;
}

.clinic-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.clinic-room {
  height: 460px;
  border-radius:
    110px
    28px
    28px
    28px;
}

.clinic-kids {
  height: 590px;
  border-radius:
    28px
    28px
    110px
    28px;
}

.clinic-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.clinic-gallery figure:hover img {
  transform: scale(1.025);
}

.clinic-gallery figcaption {
  position: absolute;
  right: 18px;
  bottom: 17px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  color: #66655d;
  font-size: 9px;
  backdrop-filter: blur(8px);
}

.clinic-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.clinic-features article {
  padding: 30px;
  background: #f8f6f0;
  border-radius: 24px;
}

.clinic-features article:nth-child(2) {
  background: #eef3ea;
}

.clinic-features article:nth-child(3) {
  background: #f7edcf;
}

.clinic-features span {
  display: block;
  margin-bottom: 35px;
  color: #9d988e;
  font-family: Georgia, serif;
  font-size: 10px;
}

.clinic-features strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 14px;
}

.clinic-features p {
  margin: 0;
  color: var(--brown-soft);
  font-size: 10px;
}


/* =========================================================
FAQ
========================================================= */

.faq {
  padding:
    120px
    max(
      44px,
      calc((100vw - 1030px) / 2)
    );
  background: #f5f2e9;
}

.faq-heading {
  margin-bottom: 48px;
}

.faq-heading h2 {
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(33px, 3.8vw, 48px);
  font-weight: 500;
}

.faq-list {
  border-top: 1px solid #d8d2c6;
}

.faq-list details {
  border-bottom: 1px solid #d8d2c6;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 25px;
  cursor: pointer;
  list-style: none;
  color: var(--brown-dark);
  font-size: 13px;
  font-weight: 600;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary b {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 750px;
  margin:
    -5px
    0
    30px;
  color: var(--brown-soft);
  font-size: 11px;
  line-height: 2;
}


/* =========================================================
ACCESS
========================================================= */

.access {
  padding:
    130px
    34px;
  background: #fff;
}

.access-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
}

.access-heading {
  margin-bottom: 52px;
}

.access-heading h2 {
  margin: 0;
  color: var(--brown-dark);
  font-size: clamp(34px, 3.9vw, 50px);
  font-weight: 500;
}

.access-content {
  display: grid;
  grid-template-columns:
    0.9fr
    1.1fr;
  gap: 28px;
}

.access-info {
  padding: 42px;
  background: #f7f5ef;
  border-radius:
    30px
    30px
    80px
    30px;
}

.hours-scroll {
  overflow-x: auto;
}

.access-info table {
  width: 100%;
  min-width: 530px;
  border-collapse: collapse;
  text-align: center;
}

.access-info th,
.access-info td {
  padding: 12px 6px;
  border-bottom: 1px solid #ded9cf;
  font-size: 10px;
}

.access-info thead th {
  color: #918d83;
  font-weight: 500;
}

.access-info tbody th {
  color: var(--brown-dark);
  font-weight: 600;
  text-align: left;
}

.access-info td {
  color: #73786b;
}

.hours-note {
  margin:
    12px
    0
    20px;
  color: #8d887f;
  font-size: 9px;
}

.special-time {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 17px;
  background: var(--yellow-light);
  border-radius: 15px;
}

.special-time > span {
  flex: 0 0 auto;
  padding: 4px 8px;
  background: var(--yellow);
  border-radius: 999px;
  color: #6d6238;
  font-size: 8px;
  font-weight: 700;
}

.special-time p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 15px;
  margin: 0;
  color: #706a52;
  font-size: 10px;
}

.special-time strong {
  color: #5d583f;
  font-size: 11px;
}

.address {
  margin-top: 38px;
  padding-top: 31px;
  border-top: 1px solid #ded9cf;
}

.address h3 {
  margin-bottom: 14px;
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 18px;
  font-weight: 500;
}

.address address {
  margin-bottom: 22px;
  color: #77736b;
  font-size: 11px;
}

.address dl {
  margin: 0;
}

.address dl > div {
  display: grid;
  grid-template-columns:
    65px
    1fr;
  margin-bottom: 5px;
}

.address dt {
  color: #8b8a80;
  font-size: 10px;
}

.address dd {
  margin: 0;
  color: #67655d;
  font-size: 10px;
}

.map {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius:
    90px
    30px
    30px
    30px;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter:
    saturate(0.65)
    contrast(0.94);
}

.map-link {
  position: absolute;
  right: 20px;
  bottom: 19px;
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow:
    0 10px 28px rgba(72, 64, 51, 0.09);
  color: #5f5d56;
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}


/* =========================================================
RESERVATION
========================================================= */

.reservation {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  overflow: hidden;
  padding:
    80px
    max(
      44px,
      calc((100vw - var(--container)) / 2)
    );
  background: #dfe9d9;
}

.reservation-decoration span {
  position: absolute;
  border-radius: 50%;
}

.reservation-decoration span:nth-child(1) {
  top: -120px;
  right: 18%;
  width: 260px;
  height: 260px;
  background: rgba(255, 255, 255, 0.22);
}

.reservation-decoration span:nth-child(2) {
  right: -45px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  background: rgba(231, 207, 116, 0.28);
}

.reservation-decoration span:nth-child(3) {
  bottom: -80px;
  left: 34%;
  width: 170px;
  height: 170px;
  background: rgba(255, 255, 255, 0.16);
}

.reservation-copy,
.reservation-actions {
  position: relative;
  z-index: 2;
}

.reservation-copy {
  max-width: 570px;
}

.reservation-copy h2 {
  margin-bottom: 13px;
  color: var(--brown-dark);
  font-size: clamp(31px, 3.6vw, 45px);
  font-weight: 500;
}

.reservation-copy p {
  margin: 0;
  color: #737466;
  font-size: 10px;
}

.reservation-actions {
  display: flex;
  gap: 10px;
}

.reservation-web,
.reservation-phone {
  min-width: 205px;
  min-height: 72px;
  border-radius: 22px;
}

.reservation-web {
  display: grid;
  grid-template-columns:
    1fr
    auto;
  padding: 14px 20px;
  color: var(--brown-dark);
  background: var(--yellow);
  border: 0;
  cursor: pointer;
  text-align: left;
}

.reservation-web span {
  grid-column: 1;
  font-size: 13px;
  font-weight: 700;
}

.reservation-web small {
  grid-column: 1;
  color: #776f4f;
  font-size: 8px;
}

.reservation-web b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  font-size: 16px;
  font-weight: 400;
}

.reservation-phone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.reservation-phone small {
  color: #85877b;
  font-size: 8px;
}

.reservation-phone strong {
  color: var(--brown-dark);
  font-size: 14px;
  font-weight: 600;
}


/* =========================================================
FOOTER
========================================================= */

.site-footer {
  padding:
    65px
    max(
      44px,
      calc((100vw - var(--container)) / 2)
    )
    28px;
  background: #f7f4ec;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-nav {
  display: grid;
  grid-template-columns:
    1fr
    1fr;
  gap: 13px 42px;
}

.footer-nav a {
  color: #77756c;
  font-size: 10px;
}

.footer-nav a:hover {
  color: #686d5e;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
  border-top: 1px solid #ded9cf;
}

.footer-bottom p {
  margin: 0;
  color: #9a968d;
  font-size: 8px;
}


/* =========================================================
MOBILE FIXED ACTIONS
========================================================= */

.mobile-fixed-actions {
  display: none;
}


/* =========================================================
DEMO MODAL
========================================================= */

.demo-modal {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.3s ease,
    opacity 0.3s ease;
}

.demo-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.demo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 58, 50, 0.42);
  backdrop-filter: blur(5px);
}

.demo-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 43px;
  background: #fffdfa;
  border-radius: 28px;
  box-shadow:
    0 30px 80px rgba(58, 52, 42, 0.16);
}

.demo-modal-panel h2 {
  margin-bottom: 15px;
  color: var(--brown-dark);
  font-family: var(--font-round);
  font-size: 27px;
  font-weight: 500;
}

.demo-modal-panel p {
  margin-bottom: 27px;
  color: var(--brown-soft);
  font-size: 11px;
}

.demo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: #f4f1e8;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.demo-close-button {
  width: 100%;
  min-height: 50px;
  color: var(--brown-dark);
  background: var(--yellow);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}


/* =========================================================
1180
========================================================= */

@media (max-width: 1180px) {

  .desktop-nav {
    gap: 19px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .hero-message {
    width: 590px;
  }

  .hero-title-main {
    font-size: 36px;
  }

  .hero-title-sub {
    font-size: 24px;
  }

  .today-panel {
    width: calc(100% - 60px);
  }

  .today-main,
  .today-special,
  .today-access {
    padding-inline: 20px;
  }

}


/* =========================================================
1020
========================================================= */

@media (max-width: 1020px) {

  .desktop-nav,
  .header-reserve {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    display: flex;
    width: min(430px, 100%);
    height: 100dvh;
    flex-direction: column;
    justify-content: center;
    padding: 90px 45px 50px;
    background: #f8f5ec;
    transform: translateX(100%);
    transition:
      transform
      0.4s
      cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
  }

  .mobile-menu nav a {
    padding: 16px 1px;
    border-bottom: 1px solid var(--line);
    color: var(--brown-dark);
    font-size: 16px;
  }

  .mobile-menu-reserve {
    display: grid;
    place-items: center;
    min-height: 56px;
    background: var(--yellow);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
  }

  .hero-photo {
    height: 700px;
  }

  .hero-message {
    left: 30px;
    bottom: 30px;
    width: min(570px, calc(100% - 60px));
  }

  .hero-title-main {
    font-size: 34px;
  }

  .hero-title-sub {
    font-size: 23px;
  }

  .today-panel {
    grid-template-columns:
      1fr
      1fr;
  }

  .today-main,
  .today-special {
    border-bottom: 1px solid #e6e0d5;
  }

  .today-special {
    border-right: 0;
  }

  .today-reserve {
    min-height: 100px;
  }

  .news {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .symptoms {
    min-height: auto;
  }

  .symptom-orbit {
    display: grid;
    grid-template-columns:
      repeat(3, 1fr);
    gap: 12px;
    width: min(100%, 820px);
    height: auto;
    margin-top: 45px;
  }

  .symptom-bubble,
  .symptom-fever,
  .symptom-cough,
  .symptom-throat,
  .symptom-stomach,
  .symptom-skin,
  .symptom-allergy {
    position: static;
    width: 100%;
    height: 165px;
    transform: none;
  }

  .medical-bento {
    grid-template-columns: 1fr 1fr;
  }

  .fever-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .doctor-intro {
    grid-template-columns: 1fr 1fr;
  }

  .doctor-heading {
    grid-column: 1 / 3;
  }

  .doctor-message {
    padding-top: 20px;
  }

  .access-content {
    grid-template-columns: 1fr;
  }

  .map {
    min-height: 550px;
  }

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

}


/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  html {
    scroll-padding-top: 78px;
  }

  body {
    padding-bottom: 68px;
    font-size: 14px;
  }

  .sp-only {
    display: block;
  }

  .header-inner {
    width: calc(100% - 34px);
    height: 76px;
  }

  .brand {
    gap: 10px;
  }

  .brand-flower {
    width: 30px;
    height: 30px;
  }

  .brand-flower i {
    width: 12px;
    height: 16px;
  }

  .brand-flower::after {
    width: 7px;
    height: 7px;
  }

  .brand-ja {
    font-size: 12px;
  }

  .brand-en {
    font-size: 6px;
  }

  .hero {
    padding:
      88px
      14px
      20px;
  }

  .hero-photo {
    height: 690px;
    border-radius:
      24px
      24px
      55px
      24px;
  }

  .hero-photo > img {
    object-position: center center;
  }

  .hero-message {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding:
      25px
      22px
      23px;
    border-radius:
      24px
      24px
      24px
      7px;
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 8px;
  }

  .hero-message h1 {
    margin-bottom: 17px;
  }

  .hero-title-main {
    font-size: clamp(27px, 8vw, 34px);
    line-height: 1.5;
    white-space: normal;
  }

  .hero-title-sub {
    margin-top: 5px;
    font-size: clamp(19px, 5.8vw, 24px);
    line-height: 1.55;
    white-space: normal;
  }

  .hero-description {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 7px;
  }

  .hero-reserve,
  .hero-phone {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-caption {
    display: none;
  }

  .today-panel {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: 24px;
    border-radius: 20px;
  }

  .today-main,
  .today-special,
  .today-access {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid #e6e0d5;
  }

  .today-reserve {
    min-height: 68px;
  }

  .news {
    gap: 24px;
    padding:
      80px
      20px
      90px;
  }

  .news-heading h2 {
    font-size: 29px;
  }

  .news-list a {
    grid-template-columns:
      78px
      auto
      1fr
      auto;
    gap: 8px;
    min-height: 79px;
  }

  .news-list time {
    font-size: 8px;
  }

  .news-tag {
    font-size: 7px;
  }

  .news-list p {
    font-size: 10px;
  }

  .symptoms {
    padding:
      82px
      20px
      85px;
  }

  .symptoms::before {
    top: -110px;
    right: -105px;
    width: 230px;
    height: 230px;
  }

  .symptoms::after {
    bottom: -140px;
    left: -120px;
    width: 220px;
    height: 220px;
  }

  .symptoms-heading h2 {
    font-size: 30px;
  }

  .symptoms-heading p {
    font-size: 10px;
  }

  .symptom-orbit {
    grid-template-columns:
      1fr
      1fr;
    gap: 9px;
    width: 100%;
    margin-top: 36px;
  }

  .symptom-bubble,
  .symptom-fever,
  .symptom-cough,
  .symptom-throat,
  .symptom-stomach,
  .symptom-skin,
  .symptom-allergy {
    height: 150px;
  }

  .symptom-bubble:nth-child(even) {
    margin-top: 14px;
  }

  .symptom-mark {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    font-size: 11px;
  }

  .symptom-bubble strong {
    font-size: 13px;
  }

  .symptom-bubble p {
    font-size: 8px;
  }

  .medical {
    padding:
      90px
      20px;
  }

  .medical-heading {
    margin-bottom: 38px;
  }

  .medical-heading h2 {
    font-size: 31px;
  }

  .medical-bento {
    display: flex;
    flex-direction: column;
  }

  .medical-card,
  .medical-main,
  .medical-allergy {
    display: block;
    min-height: 210px;
    padding: 27px;
  }

  .medical-card h3 {
    font-size: 21px;
  }

  .medical-icon {
    margin-bottom: 22px;
  }

  .fever {
    padding:
      10px
      14px
      90px;
  }

  .fever-inner {
    gap: 35px;
    padding:
      36px
      22px;
    border-radius:
      27px
      27px
      58px
      27px;
  }

  .fever-copy h2 {
    font-size: 28px;
  }

  .fever-steps article {
    grid-template-columns:
      45px
      1fr;
    gap: 3px 10px;
  }

  .fever-steps article p {
    grid-column: 2;
  }

  .first {
    padding:
      90px
      20px;
  }

  .first-heading h2 {
    font-size: 30px;
  }

  .first-flow {
    grid-template-columns:
      1fr
      1fr;
    gap: 8px;
  }

  .first-step,
  .first-step:nth-child(2),
  .first-step:nth-child(3),
  .first-step:nth-child(4) {
    min-height: 188px;
    margin-top: 0;
    padding: 21px;
  }

  .first-step > span {
    margin-bottom: 45px;
  }

  .first-step strong {
    font-size: 13px;
  }

  .first-step p {
    font-size: 9px;
  }

  .bring-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 27px 21px;
  }

  .bring-items {
    grid-template-columns: 1fr 1fr;
  }

  .bring-items span {
    border-right: 0;
    border-bottom: 1px solid #d7dfd3;
  }

  .doctor {
    padding:
      90px
      20px;
  }

  .doctor-intro {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .doctor-heading {
    grid-column: auto;
  }

  .doctor-heading h2 {
    font-size: 29px;
  }

  .doctor-portrait {
    width: min(82%, 340px);
    margin-inline: auto;
  }

  .doctor-portrait figcaption {
    right: -10px;
  }

  .doctor-message {
    padding-top: 0;
  }

  .doctor-message p {
    font-size: 10px;
  }

  .doctor-consultation {
    height: 390px;
    margin-top: 65px;
    border-radius:
      24px
      58px
      24px
      24px;
  }

  .consultation-caption {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .consultation-caption strong {
    font-size: 14px;
  }

  .clinic {
    padding:
      90px
      20px;
  }

  .clinic-heading h2 {
    font-size: 30px;
  }

  .clinic-gallery {
    grid-template-columns: 1fr;
  }

  .clinic-room,
  .clinic-kids {
    height: 320px;
  }

  .clinic-room {
    border-radius:
      60px
      22px
      22px
      22px;
  }

  .clinic-kids {
    border-radius:
      22px
      22px
      60px
      22px;
  }

  .clinic-features {
    grid-template-columns: 1fr;
  }

  .clinic-features article {
    padding: 23px;
  }

  .clinic-features span {
    margin-bottom: 22px;
  }

  .faq {
    padding:
      85px
      20px;
  }

  .faq-heading h2 {
    font-size: 30px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 11px;
  }

  .access {
    padding:
      90px
      14px;
  }

  .access-heading {
    padding-inline: 6px;
  }

  .access-heading h2 {
    font-size: 30px;
  }

  .access-info {
    padding: 25px 20px;
    border-radius:
      22px
      22px
      50px
      22px;
  }

  .map {
    min-height: 430px;
    border-radius:
      50px
      22px
      22px
      22px;
  }

  .map-link {
    right: 13px;
    bottom: 13px;
    font-size: 8px;
  }

  .reservation {
    gap: 30px;
    padding:
      60px
      20px;
  }

  .reservation-copy h2 {
    font-size: 30px;
  }

  .reservation-actions {
    width: 100%;
    flex-direction: column;
  }

  .reservation-web,
  .reservation-phone {
    width: 100%;
  }

  .site-footer {
    padding:
      55px
      20px
      25px;
  }

  .footer-main {
    flex-direction: column;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .mobile-fixed-actions {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns:
      1.2fr
      0.8fr
      0.9fr;
    min-height: 68px;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    box-shadow:
      0 -8px 30px rgba(61, 56, 45, 0.06);
    backdrop-filter: blur(14px);
  }

  .mobile-fixed-actions a {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    color: var(--brown-dark);
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-fixed-actions a:first-child {
    background: var(--yellow);
  }

  .mobile-fixed-actions a:last-child {
    border-right: 0;
  }

  .demo-modal-panel {
    padding:
      39px
      24px
      25px;
  }

}


/* =========================================================
VERY SMALL
========================================================= */

@media (max-width: 390px) {

  .brand-en {
    display: none;
  }

  .hero-photo {
    height: 670px;
  }

  .hero-title-main {
    font-size: 27px;
  }

  .hero-title-sub {
    font-size: 19px;
  }

  .symptom-orbit {
    grid-template-columns: 1fr;
  }

  .symptom-bubble,
  .symptom-fever,
  .symptom-cough,
  .symptom-throat,
  .symptom-stomach,
  .symptom-skin,
  .symptom-allergy {
    height: 135px;
    margin-top: 0 !important;
  }

  .first-flow {
    grid-template-columns: 1fr;
  }

  .bring-items {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}