/* =============================== */
/*         CSS VARIABLES          */
/* =============================== */
:root {
  --main-bg: linear-gradient(180deg, #a7cbe7 0%, #fff 90%);
  --card-bg: #f6f5ee;
  --border: #e5e2d8;
  --gold: #d6c79a;
  --button-bg: #b7d2e6;
  --button-hover: #8bbad8;
  --button-color: #fff;
  --shadow: 0 0.2vw 1vw rgba(0, 0, 0, 0.06);
  --font-jp: 'Noto Serif JP', serif;
  --font-en: 'Montserrat', 'Yu Gothic', 'Meiryo', sans-serif;
}

/* =============================== */
/*         GLOBAL RESET           */
/* =============================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: #fff;
  color: #000;
  width: 100vw;
  overflow-x: hidden;
  max-width: 100vw;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  /* height: auto; */
}

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


/* =============================== */
/*         HEADER NAVIGATION      */
/* =============================== */
.header {
  position: sticky;
  top: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1000;
  height: 4.5rem;
  display: flex;
  flex-direction: column;
}

.header-inner {
  width: 100vw;
  max-width: 96vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 4.5rem;
  padding: 0 2vw;
  justify-content: space-between;
}

.logo img {
  height: 3rem;
  margin-right: 8rem;
}

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

.nav {
  display: flex;
  gap: 2.5vw;
  flex: 1 1 auto;
}

.nav a {
  color: #333;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.nav a:hover {
  color: #bfa76a;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 1.2vw;
}

.contact {
  font-size: 1.1rem;
  margin-left: 0.25vw;
  color: #444;
  display: flex;
  align-items: center;
}

.phone-icon {
  margin-right: 0.1em;
  margin-top: 0.2vw;
  font-size: 1.1em;
}

#treatment>section.menu-section>div.menu-cards>div:nth-child(2)>div.icon-bg>span>img {
  border-radius: 50%;
}

.hours {
  display: block;
  font-size: 0.85em;
  color: #888;
  /* margin-left: 0.5em; */
}

.web-btn {
  background: linear-gradient(90deg, #D6C17E 0%, #706542 100%);
  color: #fff;
  font-size: 1.1rem;
  padding: 0.7em 2.2em;
  border-radius: 0.7em;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.web-btn:hover {
  background: #a08a4c;
}

/* =============================== */
/*          HERO SECTION           */
/* =============================== */
.heroSection {
  width: 100vw;
  overflow: hidden;
  position: relative;
}

.heroVideo {
  width: 100vw;
  height: 43vw;
  object-fit: cover;
}

/* =============================== */
/*      GOOGLE REVIEWS SECTION     */
/* =============================== */
.reviewsSection {
  padding: 3vw 0vw;
  padding-left: 0;
  background: #fff;
  max-width: 100vw;
  margin: 0 auto;
  margin-left: 0;
  margin-right: 0;
}

.quoteBanner {
  background: linear-gradient(90deg, #C0B89E 0%, #F8F4E8 50%, #FFF 100%);
  margin-bottom: 2vw;
  width: 70rem;
  height: 6.5rem;
  margin-left: 0;
  display: flex;
  flex-shrink: 0;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

.quoteText {
  font-size: 1.4vw;
  font-weight: 500;
  text-align: left;
  max-width: 90vw;
  margin-left: 16rem;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.2rem;
}

.headingText {
  padding-left: 0vw;
  padding-right: 15rem;
}

.carouselWrapper {
  --gutter: 1.5vw;
  /* display: flex; */
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin: 0 auto 3vw;
  max-width: 70vw;
  width: 70vw;
  overflow-x: hidden;
  /* overflow-x: auto; */
}

.carousel {
  display: flex;
  transition: transform 0.3s ease;
  width: fit-content;
  gap: 2vw;
}

.carouselItem {
  margin-bottom: 1vw;
  margin-top: 1vw;
  flex: 0 0 calc((70vw - (3 * 2vw)) / 4);
  /* border-radius: 0.8vw; */
  scroll-snap-align: start;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
  padding: 2vw;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  margin-right: 0;
  padding-top: 1em;
}

.carouselItem:last-child {
  margin-right: 0;
}

.carouselItem .reviewText {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  font-size: 0.8vw;
  margin-top: 1vw;
}

.carouselPrev,
.carouselNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 2vw;
  padding: 0.5vw;
  cursor: pointer;
  border-radius: 4px;
  z-index: 1;
}

.carouselPrev {
  left: -3vw;
}

.carouselNext {
  right: -3vw;
}

.reviewsButton {
  background-color: #D6C17E;
  color: #fff;
  padding: 1vw 3vw;
  font-size: 1.1vw;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
  margin-top: -1.5vw;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 15vw;
}

/* =============================== */
/*     STAFF TESTIMONIAL SECTION   */
/* =============================== */
.staffTreatmentSection {
  background: #fdfbf5;
  text-align: center;
  margin: 0;
  padding-bottom: 3.5vw;
}

.staffHeadingGradient {
  background: linear-gradient(310deg, #C0B89E 0%, #F8F4E8 50%, #FFF 100%);
  margin-bottom: 4vw;
  height: 6.5rem;
  display: flex;
  flex-shrink: 0;
  align-content: center;
  justify-content: flex-end;
  text-align: right;
  margin-right: 0;
  align-items: center;
}

.staffImages {
  display: flex;
  justify-content: center;
  gap: 2vw;
  flex-wrap: wrap;
  margin-bottom: 3vw;
}

.staffCard {
  flex: 1 1 22vw;
  max-width: 24vw;
}

.staffImage {
  width: 100%;
  object-fit: cover;
}

.reviewDate {
  font-size: 0.9vw;
}

.carouselItem img {
  width: 5vw;
  margin-bottom: 1vw;
}

.ctaWrapper {
  display: flex;
  justify-content: center;
}

.ctaButton {
  background-color: #D6C17E;
  color: #fff;
  padding: 1.2vw 2.5vw;
  font-size: 1.1vw;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.ctaButton:hover {
  background-color: #bfa14f;
}

/* =============================== */
/*     TREATMENT MENU SECTION      */
/* =============================== */
#treatment {
  position: relative;
  overflow-x: hidden;
}

.menu-section {
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 35vw;
}

.side-title {
  position: absolute;
  left: 0;
  top: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 999;
  height: 90vw;
  padding-top: 1.5vw;
  padding-left: 0;
  user-select: none;
  opacity: 0.95;
  line-height: 1.1;
  color: #F8F4E8;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 6.25rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.625rem;
}

.menu-header-inner {
  background: linear-gradient(0deg, #FFF 0%, #61A8D3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  max-width: 100vw;
  /* margin-top: 3vw; */
  margin-bottom: 0;
  padding-left: 5vw;
  padding-right: 5vw;
  padding-top: 5vw;
  padding-bottom: 4vw;
}

.menu-header-line {
  flex: 1 1 0;
  border-top: 0.15vw solid #e5e2d8;
  height: 0;
  margin: 0 2vw;
}

.menu-header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 20vw;
}

.jp-title {
  font-family: "Hiragino Mincho Pro";
  font-size: 3rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.1vw;
  color: white;
  line-height: 1.2;
}

.en-title {
  font-family: "Hiragino Mincho Pro";
  font-size: 1.5625rem;
  color: white;
  margin-top: 0.5vw;
  letter-spacing: 0.1vw;
  line-height: 1.2;
}

.menu-cards {
  display: flex;
  justify-content: center;
  gap: 3vw;
  margin: 0 auto 3vw auto;
  max-width: 70vw;
  flex-wrap: wrap;
  z-index: 1;
  position: relative;
}

.menu-card {
  border-radius: 2.6875rem;
  border: 5px solid #FFF;
  background: #EFEBDE !important;
  border-radius: 1.2vw;
  box-shadow: var(--shadow);
  width: 17vw;
  height: 15vw;
  min-width: 220px;
  padding: 2vw 1vw 2vw 1vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1vw;
  transition: box-shadow 0.2s;
}

.menu-card:hover {
  box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.10);
}

.menu-card .icon-bg {
  background: #f0eee7;
  border-radius: 50%;
  width: 5vw;
  height: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1vw;
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.04);
}

.menu-card .icon {
  font-size: 2.5vw;
  color: #b7b7b7;
}

.menu-card .jp {
  font-size: 1vw;
  line-height: 2;
  font-family: var(--font-jp);
  font-weight: 500;
  margin-bottom: 0.3vw;
  color: #444;
  font-family: "Kozuka Gothic Pr6N";
}

.menu-card .en {
  font-size: 0.95vw;
  font-family: var(--font-en);
  color: #888;
  font-weight: 400;
  line-height: 1.3;
}

.menu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4vw;
  margin: 0 auto;
  max-width: 100vw;
  z-index: 1;
  position: relative;
  z-index: 2;
}

.menu-row {
  display: flex;
  align-items: center;
  margin-bottom: 1vw;
  margin-right: 8vw;
}

.menu-img {
  flex: 1.2 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.menu-img img {
  width: 100%;
  max-width: 40vw;
  min-width: 220px;
  border-radius: 0;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: none;
  z-index: 999;
}

.menu-article {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  position: relative;
  border: 0.12vw solid var(--gold);
  background: transparent;
  border-radius: 0;
  padding: 5vw;
  padding-left: 5vw;
  margin-right: 4vw;
  margin-left: -2vw;
  min-width: 320px;
  max-width: 40vw;
  z-index: 3;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
}

.menu-article h4 {
  color: #352302;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  margin: 0 0 0.5vw 0;
  letter-spacing: 0.05vw;
  margin-bottom: 2vw;
}

.menu-article p {
  margin: 0 0 2vw 0;
  color: #352302;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.01vw;
}

.menu-row.reverse {
  flex-direction: row-reverse;
}

.menu-article .menu-btn {
  width: 20rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 1.5rem;
  background: #9CC8E4;
  color: #fff;
  border: none;
  padding: 0.7vw 3vw;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  cursor: pointer;
  align-self: flex-end;
  margin-top: 0.5vw;
  transition: background 0.2s;
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.4);
  text-align: center;
  align-self: center;
}

.menu-article .menu-btn:hover {
  background: var(--button-hover);
}

.norightmargin {
  margin-right: -2vw !important;
  margin-left: 4vw !important;
}

.menu-bottom-btn {
  border: 2px solid #D6C17E;
  background: #D6C17E;
  display: block;
  margin: 0vw auto 0 auto;
  color: #FFF;
  text-align: center;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 1rem;
  border: none;
  padding: 1vw 3vw;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0.1vw 0.5vw rgba(0, 0, 0, 0.04);
  transition: background 0.2s;
}

.menu-bottom-btn:hover {
  background: #d6d2b7;
}

/* ==========================================================================
   Director & Chairman Sections – Fresh Start
   ========================================================================== */
/* =============================== */
/*       DIRECTOR SECTION         */
/* =============================== */
.saiwai-block.director-block {
  /* ensure no old backgrounds remain */
  /* background: none; */
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  background: linear-gradient(0deg, #FFF 0%, #EFEBDE 100%);

}

/* 1) Inner wrapper: flex layout + relative positioning */
.saiwai-block.director-block .saiwai-block-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100vw;
  margin: 0;
  padding: 5vw 4vw;
  /* vertical / horizontal padding */
  gap: 8vw;
}

/* 2) Pale panel behind text (and behind image but image floats on top) */
.saiwai-block.director-block .saiwai-block-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  /* covers 55% of the inner wrapper from left */
  height: 100%;
  /* background: #fdfaf0; */
  /* pale background color */
  z-index: -1;
}

/* 3) Text column sizing */
.saiwai-block.director-block .saiwai-block-text {
  flex: 1 1 0;
  max-width: 35vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 4) Photo card styling */
.saiwai-block.director-block .saiwai-block-img img {
  display: block;
  width: 100%;
  max-width: 25vw;
  margin-bottom: 1vw;
  /* border-radius: 1rem; */
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

/* 5) Typography */
.saiwai-block.director-block .saiwai-block-text h3 {
  color: #352302;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.8125rem;
  /* 93.75% */
  display: flex;
  /* width: 41.3125rem; */
  height: 7rem;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  align-items: center;
  margin: auto;
  align-content: center;
}

.saiwai-block.director-block .saiwai-block-text .subtitle {
  margin-bottom: 2rem;
  margin-top: -2rem;
  color: #352302;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2rem;
  text-align: center;
}

.saiwai-block.director-block .saiwai-block-text p {
  color: #352302;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 0.9rem;
  line-height: 2;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

hr {
  padding-top: 3px;
  padding-bottom: 3px;
}

/* 6) Button styling */
.saiwai-block.director-block .saiwai-btn {
  display: flex;
  margin-top: 2rem;
  border: 1px solid #d6c79a;
  background: transparent;
  color: #d6c79a;
  padding: 1rem 3rem;
  font-family: var(--font-jp);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background .2s, color .2s;
  flex-direction: column;
  max-width: 15vw;
  align-content: center;
  align-items: center;
}

.saiwai-block.director-block .saiwai-btn:hover {
  background: #d6c79a;
  color: #fff;
}

.littlenote {
  font-size: 0.6rem !important;
}

/* 7) Responsive: stack on mobile */
@media (max-width: 900px) {
  .saiwai-block.director-block .saiwai-block-inner {
    flex-direction: column;
    text-align: center;
    padding: 4vw 2vw;
  }

  .saiwai-block.director-block .saiwai-block-img img {
    max-width: 80%;
    margin-bottom: 2rem;
  }
}

/* =============================== */
/*      CHAIRMAN SECTION           */
/* =============================== */
.saiwai-block.chairman-block {
  position: relative;
  background-image: url("../img/background.png");
  /* we’ll paint panels via pseudos */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  object-fit: cover;
  background-size: cover;
  margin-bottom: 0;
}

/* 1) Inner wrapper: flex & relative */
.saiwai-block.chairman-block .saiwai-block-inner.reverse {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 3vw;
  padding: 5vw 4vw;
  gap: 4vw;
  max-width: 80vw;
  flex-direction: row;
  align-items: flex-start;
}

/* 2) Top-right full-height panel */
/*
.saiwai-block.chairman-block .saiwai-block-inner.reverse::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;          /* adjust for coverage */
/*height: 100%;
  background: #fdfaf0;
  z-index: -1;
}
*/

/* 3) Bottom-left shorter panel */
/*
.saiwai-block.chairman-block .saiwai-block-inner.reverse::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;          /* same width, adjust if needed */
/*height: 40%;         /* covers 40% of wrapper’s height at bottom */
/*background: #fdfaf0;
  z-index: -1;
}
*/

/* 4) Photo container: fixed aspect-ratio 9:16 */
.saiwai-block.chairman-block .saiwai-block-img {
  flex: 0 0 auto;
  width: 25vw;
  /* or whichever max you want */
  max-width: 25vw;
  /* aspect-ratio: 9 / 16; */
  /* portrait ratio */
  overflow: hidden;
  /* border-radius: 1rem; */
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.05); */
  height: auto;
}

.saiwai-block.chairman-block .saiwai-block-img img {
  /* width: 100%; */
  /* height: 100%; */
  object-fit: fill;
  display: block;
  max-width: 22vw;
  /* aspect-ratio: 9/16; */
}

.saiwai-block.chairman-block .saiwai-block-text .subtitle {
  font-size: 1.3rem;
  text-align: center;
}

/* 5) Text & button remain as before */
/* (no changes needed on typography or button) */
.saiwai-block-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: -2vw;
  z-index: 999;
}

.saiwai-block-text {
  max-width: 30vw;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.saiwai-block-text p {
  color: #352302;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 1.5rem;
}

.saiwai-block-text h3 {
  color: #352302;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.8rem;
  margin-left: -3vw;
  font-style: normal;
  font-weight: 300;
  line-height: 2.2rem;
  z-index: 999;
}

.subtitle {
  color: #352302;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.5625rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.25rem;
  margin-bottom: 3vw;
  margin-top: 1vw;
}

/* 6) Responsive fallback */
@media (max-width: 900px) {
  .saiwai-block.chairman-block .saiwai-block-inner.reverse {
    flex-direction: column;
    text-align: center;
    padding: 4vw 2vw;
  }

  .saiwai-block.chairman-block .saiwai-block-img {
    width: 60vw;
    max-width: none;
    margin: 0 auto 2rem;
  }
}

.margin-right {
  margin-right: 4vw;
}

/* =============================== */
/*     STAFF INTRO SECTION         */
/* =============================== */
.saiwai-section {
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
  margin-top: 4vw;
  overflow-x: hidden;
}

.saiwai-header {
  background: #61a8d7;
  /* height: 240px; */
  position: relative;
  height: 9rem;
}

.saiwai-header h2 {
  display: flex;
  width: 80.3125rem;
  height: 11.8125rem;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  color: #9CC8E4;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.75rem;
  position: absolute;
  top: 0;
  left: 15vw;
  margin: 0;
  opacity: 1;
  align-items: flex-end;
  z-index: 999;
}

/* =============================== */
/*       DIRECTOR SECTION         */
/* =============================== */
/* =============================== */
/*       DIRECTOR SECTION         */
/* =============================== */
/* hide old full‐height shapes */
.director-block::before,
.director-block::after {
  display: none !important;
}

/* inject panel behind the inner wrapper */
.director-block .saiwai-block-inner {
  position: relative;
  z-index: 1;
}

.director-block .saiwai-block-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  /* adjust width as needed */
  height: 100%;
  /* background: #F8F4E8; */
  z-index: -1;
}

/* =============================== */
/*      CHAIRMAN SECTION           */
/* =============================== */
/* hide old full‐height shapes */
.chairman-block::before,
.chairman-block::after,
.chairman-block .chairman-bg-outer,
.chairman-block .chairman-bg-inner {
  display: none !important;
}

/* inject panel behind the inner wrapper */
.chairman-block .saiwai-block-inner.reverse {
  position: relative;
  z-index: 1;
}

.phone-icon img {
  width: 2.5vw;
}

/* ─────────────────────────────────────────── */
/*      RESPONSIVE STACKING (unchanged)      */
/* ─────────────────────────────────────────── */
@media (max-width: 900px) {

  .director-block .saiwai-block-inner,
  .chairman-block .saiwai-block-inner.reverse {
    flex-direction: column;
    text-align: center;
    padding: 4vw 2vw;
  }

  .director-block .saiwai-block-img,
  .chairman-block .saiwai-block-img {
    margin-bottom: 2rem;
  }
}

/* =============================== */
/*      STAFF INTRO SECTION       */
/* =============================== */
.saiwai-block.staff-block {
  position: relative;
  background: none;
  overflow: visible;
}

/* 1) Paint the two beige panels behind */
.saiwai-block.staff-block .saiwai-block-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5vw 4vw;
  gap: 4vw;
  flex-direction: row;
  min-height: 50vw;
  align-content: center;
}


/* 2) Elevate actual content */
.saiwai-block.staff-block .saiwai-block-inner>* {
  position: relative;
  z-index: 1;
}

/* 3) Text column (no change) */
.saiwai-block.staff-block .saiwai-block-text {
  flex: 1 1 0;
}

.saiwai-block.staff-block .saiwai-block-text h3 {
  /* etc */
}

.saiwai-block.staff-block .saiwai-block-text .subtitle {
  /* etc */
  font-size: 1.3rem;
  text-align: center;
}

.saiwai-block.staff-block .saiwai-block-text p {
  /* etc */
}

.saiwai-block.staff-block .saiwai-btn {
  /* etc */
}

/* 4) Image stack container */
.saiwai-block.staff-block .saiwai-staff-imgs {
  position: relative;
  flex: 1 1 0;
  width: fit-content;
  margin-left: auto;
  top: -10vw;
}

#topPage .saiwai-block.staff-block .saiwai-staff-imgs {
  top: 0;
}

/* 5) First (horizontal) image */
.saiwai-block.staff-block .saiwai-staff-imgs img:nth-child(1) {
  display: block;
  width: 60vw;
  max-width: 500px;
  /* border-radius: 1rem; */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

#topPage .saiwai-block.staff-block .saiwai-staff-imgs img:nth-child(2) {
  width: 35vw;
  max-width: 50vw;
  z-index: 1;
  top: -5vw;
}

#topPage>section.saiwai-section>div.saiwai-block.staff-block>div.saiwai-block-inner>div.saiwai-staff-imgs>img:nth-child(3) {
  width: 22vw;
  max-width: 50vw;
  z-index: 1;
  position: relative;
  top: 8vw;
  right: -15vw;
}

/* 6) Second (vertical) image overlapping */
.saiwai-block.staff-block .saiwai-staff-imgs img:nth-child(2) {
  position: absolute;
  top: 55%;
  right: -15%;
  display: block;
  width: 22vw;
  max-width: 300px;
  /* aspect-ratio: 9 / 16; */
  /* border-radius: 1rem; */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* 7) Responsive collapse */
@media (max-width: 900px) {
  .saiwai-block.staff-block .saiwai-block-inner {
    flex-direction: column;
    text-align: center;
    padding: 4vw 2vw;
  }

  .saiwai-block.staff-block .saiwai-staff-imgs {
    width: 80%;
    margin: 2rem auto 0;
  }

  .saiwai-block.staff-block .saiwai-staff-imgs img:nth-child(1),
  .saiwai-block.staff-block .saiwai-staff-imgs img:nth-child(2) {
    position: static;
    width: 100%;
    max-width: none;
    margin-bottom: 2rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────────── */
/*   ACCESS PAGE                                                         */
/* ─────────────────────────────────────────────────────────────────────────── */



/* ── Map panel ───────────────────────────────────────────────────────────── */
.access-map {
  flex: 1;
  border: 2px solid #d6c17e;
  border-radius: .5rem;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ── Details column ──────────────────────────────────────────────────────── */
.access-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Address */
.access-address p {
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #352302;
}

/* Info list */
.access-info-list {
  list-style: none;
  text-decoration: none;
  padding: 0;
  margin: 0;
  font-size: 1rem;
  line-height: 3;
  color: #352302;
  margin-top: 2vw;
  margin-bottom: 4rem;
}

.access-info-list li {
  margin-bottom: .4rem;
  text-decoration: none;
  list-style: none;
  padding-left: 1rem;
  position: relative;
}

.access-info-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #352302;
}

/* ── Contact card (moved here for visual flow) ───────────────────────────── */
.access-contact {
  margin-top: auto;
  /* push to bottom when details column is tall */
}

#accessPage .accessSection {
  background: linear-gradient(0deg, #FFF -1.5%, #EFEBDE 98.5%);
  display: flex;
  flex-direction: column;
  margin-top: 0;
  padding: 0;
}

.access-info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #352302;
}

#accessPage .accessSection .contact-card {
  flex: 50vw;
  max-width: 30vw;
}

#accessPage .accessSection .hours-table {
  flex: 40vw;
  max-width: 30vw;
}

#accessPage .saiwai-section {
  height: 15rem;
  display: block;
  max-height: 15rem;
  max-width: 100vw;
  width: 100vw;
  padding-left: 0;
  padding-top: 0;
  margin-top: 0;
}

#accessPage {
  max-width: 100vw;
  overflow-x: hidden;
}

.accessPage-inner {
  padding: 3vw 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-around;
}

#accessPage .saiwai-header h2 {
  background: none;
  top: 0.5rem;
  font-size: 5rem;
  z-index: 999;
  width: 90vw;
  letter-spacing: 0.2vw;
  margin-left: -8vw;
}

#accessPage .accessSection .access-map {
  display: flex;
  aspect-ratio: 1/1;
  max-height: 40vw;
  height: 40vw;
  width: 60vw;
  max-width: 60vw;
  align-items: center;
  justify-content: center;
}

#accessPage .access-details {
  color: #000;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#accessPage .access-address {
  color: #000;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}







/* ─── MOBILE ADJUSTMENTS (≤480px) ────────────────────────────────────────── */
@media (max-width: 480px) {
  .access-inner {
    flex-direction: column;
    margin: 1rem auto;
    gap: 1.5rem;
  }

  .access-map iframe {
    height: 200px;
  }

  .access-address p {
    font-size: .85rem;
  }

  .access-info-list {
    font-size: .85rem;
  }

  .littlenote {}


}

/* =============================== */
/*        CLINIC INFO SECTION      */
/* =============================== */
.clinicInfoSection {
  position: relative;
  background: #fff;
  padding: 0;
  max-width: 100vw;
  margin: 0;
  margin-top: 4vw;
  overflow: visible;
  box-sizing: border-box;
  overflow-x: visible;
}

/* Vertical Side Title */
.side-title {
  position: absolute;
  left: 1vw;
  top: 30px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  /* font-size: 2.6rem; */
  font-size: 3.5rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: #e3d6b2;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  /* z-index: 2; */
  height: 90vw;
  user-select: none;
  z-index: 999;
}

/* Section Header */
.clinic-header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 32px 0;
  padding-top: 48px;
}

.clinic-header-line {
  flex: 1;
  height: 1px;
  background: #dbe6ef;
  margin: 0 18px;
}

.clinic-header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.jp-title {
  font-family: "Hiragino Mincho Pro";
  font-size: 2rem;
  color: #fff;
  /* background: #8eb6d8; */
  padding: 0 32px 2px 32px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.en-title {
  color: white;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  margin-top: 2px;
}

/* Top Content Layout */
.clinic-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
  margin-bottom: 0;
  padding-left: 14vw;
  /* space for side-title */
  gap: 6vw;
  overflow: visible;
  margin-bottom: 4vw;
  /* margin-top: 4vw; */
}

.clinic-text {
  font-size: 1.08rem;
  color: #444;
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
  margin-top: 8px;
  width: 30vw;
  margin-left: 6vw;
  /* padding-bottom: 10vw; */
}

.clinic-image-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* gap: 18px; */
  /* min-width: 320px; */
  overflow: visible;
  max-width: 25vw;
}

.clinic-image-stack img {
  width: 100%;
  /* border-radius: 6px; */
  /* object-fit: cover; */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
  /* height: auto; */
  overflow: visible;
  top: 0vw;
  display: block;
}

.top-img {
  /* height: 170px; */
  position: relative;
  top: -5vw;
  z-index: 999;
}

.bottom-img {
  /* height: 140px; */
  position: relative;
  top: -5vw !important;
  right: -10vw;
}

/* Gallery Row */
.clinic-gallery {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2vw;
  padding: 32px 2vw 0 2vw;
}

.clinic-gallery figure {
  flex: 1;
  margin: 0;
  background: none;
}

.clinic-gallery img {
  width: 100%;
  height: 20vw;
  object-fit: fill;
  /* border-radius: 6px; */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
}

/* CTA Button Area */
.clinic-cta {
  margin: 0;
  padding: 4vw 0 0 0;
  /* background: linear-gradient(to bottom, #fff 0%, #e3d6b2 100%); */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 5vw;
}

.clinic-btn {
  display: inline-block;
  padding: 1.5rem 4rem;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 1rem;
  border-radius: 3px;
  text-decoration: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(230, 226, 215, 0.10);
  /* background: rgba(182,167,124,0.7); */
}

.clinic-btn:hover {
  background: #fff;
  color: #b6a77c;
  border: 1px solid #b6a77c;
}

/* Responsive */
@media (max-width: 1100px) {
  .clinicInfoSection {
    max-width: 100vw;
    padding: 0 0 32px 0;
  }

  .side-title {
    left: 0;
    top: 40px;
    font-size: 2rem;
    height: 320px;
  }

  .clinic-top,
  .clinic-gallery {
    padding-left: 60px;
    margin-left: 0;
  }
}

@media (max-width: 800px) {
  .clinic-top {
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
  }

  .clinic-gallery {
    flex-direction: column;
    gap: 18px;
    padding-left: 0;
    margin-left: 0;
  }

  .side-title {
    position: static;
    writing-mode: horizontal-tb;
    text-align: center;
    width: 100%;
    height: auto;
    margin: 24px 0 0 0;
    font-size: 1.5rem;
  }
}

/* =============================== */
/*        NEWS          */
/* =============================== */
.newsSection {
  background: #f7f6f3;
  border-top: 2px solid #e3d6b2;
  padding: 15vw 0 15vw 0;
  /* max-width: 1100px; */
  margin: 0 auto;
  font-family: 'Noto Sans JP', serif;
  overflow-x: hidden;
}

.news-grid {
  display: grid;
  grid-template-columns: 20vw 1fr;
  gap: 32px 48px;
  align-items: start;
  padding: 0 15vw;
}

.news-header-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
  gap: 0.5em;
}

.news-header-title h2 {
  font-size: 2rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  color: #3a2d1a;
  margin: 0 0 4px 0;
  letter-spacing: 0.04em;
}

.news-header-title small {
  font-size: 1.05rem;
  color: #b6a77c;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.news-more-btn {
  display: inline-block;
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  padding: 0.6em 2.2em;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(182, 167, 124, 0.10);
  transition: background 0.2s, color 0.2s;
  text-align: center;
  border-radius: 1.4375rem;
  background: linear-gradient(90deg, #D6C17E 0%, #706542 100%);
}

.news-more-btn:hover {
  background: linear-gradient(90deg, #e3d6b2 0%, #b6a77c 100%);
  color: #b6a77c;
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 1.08rem;
  color: #3a2d1a;
  padding: 0 0 8px 0;
  border-bottom: 2px solid #e3d6b2;
}

.news-date {
  min-width: 90px;
  color: #7c6a4d;
  font-size: 1.05rem;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.04em;
}

.news-tag {
  display: inline-block;
  background: #e3e3e3;
  color: #888;
  font-size: 0.98rem;
  border-radius: 12px;
  padding: 0.2em 1.1em;
  margin-right: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 0.04em;
}

.news-link {
  color: #3a2d1a;
  text-decoration: none;
  font-size: 1.08rem;
  transition: color 0.2s;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-link:hover {
  color: #b6a77c;
}

/* Responsive: stack columns on mobile */
@media (max-width: 800px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
    padding: 0 16px;
  }

  .news-header-title {
    margin-top: 0;
    align-items: flex-start;
  }
}

/* =============================== */
/*         SNS         */
/* =============================== */

.snsSection {
  background: #fff;
  padding: 8vw 0 8vw 0;
  max-width: 100vw;
  margin: 0 auto;
  font-family: 'Noto Sans JP', serif;
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

.sns-grid {
  display: grid;
  grid-template-columns: 38vw 1fr 2fr;
  gap: 32px 32px;
  align-items: center;
  padding: 0;
}

.sns-title-bg {
  background: #EFEBDE;
  border-radius: 40vw;
  align-items: center;
  min-height: 140px;
  font-size: 1.5rem;
  color: #3a2d1a;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  width: 40.5rem;
  height: 10.3125rem;
  flex-direction: column;
  justify-content: center;
  margin-left: -5vw;
  flex-shrink: 0;
}

.sns-title-bg span {
  display: block;
  width: 100%;
}

.sns-images {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: flex-start;
}

.sns-img-bg {
  background: #EFEBDE;
  border-radius: 8px;
  padding: 18px 18px 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 320px;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  width: 25vw;
}

.sns-img-bg img {
  display: block;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #fff;
}

@media (max-width: 900px) {
  .sns-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
    padding: 0 16px;
  }

  .sns-title-bg {
    min-width: 0;
    max-width: 100%;
    font-size: 1.3rem;
    min-height: 80px;
    margin-bottom: 12px;
  }

  .sns-images {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .sns-img-bg {
    min-width: 0;
    width: 100%;
    max-width: 340px;
    min-height: 180px;
    padding: 10px;
  }

  .sns-img-bg img {
    max-width: 100%;
    max-height: 220px;
  }
}

/* =============================== */
/*         Recruit          */
/* =============================== */

.recruitSection {
  background: #0079C3;
  position: relative;
  width: 100%;
  min-height: 320px;
  padding: 60px 0 40px 0;
  overflow: visible;
  z-index: 1;
  border: none;
  /* overflow-x: hidden; */
}

.recruit-inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-bg {
  position: relative;
  max-width: 80vw;
  max-height: 30vw;
  height: 28vw;
  border-radius: 60px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  z-index: 2;
  margin-left: -4vw;
  justify-content: center;
}

.recruit-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) opacity(0.45);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.recruit-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 48px 0 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.recruit-content h2 {
  font-size: 2rem;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  color: #3a2d1a;
  margin: 0 0 0.3em 0;
  letter-spacing: 0.04em;
}

.recruit-sub {
  font-size: 1.2rem;
  color: #b6a77c;
  margin-bottom: 1.5em;
  display: block;
  letter-spacing: 0.08em;
}

.recruit-btn {
  display: inline-block;
  background: #d7bc6b;
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
  border: none;
  border-radius: 24px;
  padding: 0.8em 2.8em;
  margin-top: 8px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(182, 167, 124, 0.10);
  transition: background 0.2s, color 0.2s;
  text-align: center;
  letter-spacing: 0.08em;
}

.recruit-btn:hover {
  background: #b6a77c;
  color: #fff;
}

/* Vertical reversed title using your Figma CSS */
.recruit-vertical-title {
  display: flex;
  position: absolute;
  right: -38vw;
  top: -10vw;
  transform: translateY(-50%) rotate(-90deg);
  width: 82rem;
  /* height: 12.6925rem; */
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #D7BC6B;
  font-family: "Kozuka Gothic Pr6N", 'Noto Sans JP', sans-serif;
  font-size: 4.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.625rem;
  z-index: 999;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.side2 {
  padding-top: 0;
  margin-top: 2vw;
}

.gallery {
  background: linear-gradient(180deg, #FFF 0%, #BEAE7A 100%);
}

.clinic-text p {
  color: #352302;
  margin-bottom: 1vw;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 0.9rem;
  font-style: normal;
}

#clinicInfo .menu-section {
  /* height: 48vw; */
}

/* Responsive */
@media (max-width: 1100px) {
  .recruit-bg {
    width: 98%;
    border-radius: 36px;
    min-height: 160px;
  }

  .recruit-vertical-title {
    font-size: 3.2rem;
    right: -40px;
    width: 40rem;
    height: 6rem;
  }
}

@media (max-width: 700px) {
  .recruit-bg {
    width: 100%;
    border-radius: 18px;
    min-height: 100px;
  }

  .recruit-content {
    padding: 24px 0;
  }

  .recruit-vertical-title {
    display: none;
  }
}

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

/*
.accessSection {
  padding: 4vw 3vw;
  background: #f8f8f8;
}

.accessContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vw;
  max-width: 80vw;
  margin: 0 auto;
}

.mapWrapper {
  width: 100%;
  height: 40vw;
  border-radius: 1vw;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.clinicAddress {
  font-size: 1.2vw;
  color: #333;
  text-align: center;
  line-height: 1.8;
  font-style: normal;
}

.contactButton {
  background-color: #D6C17E;
  color: #fff;
  padding: 1.2vw 3vw;
  font-size: 1.3vw;
  border-radius: 0.7vw;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.contactButton:hover {
  background-color: #bfa14f;
}
*/
/* ==========================================================================
   ACCESS SECTION – GRID LAYOUT + FIGMA STYLES
   ========================================================================== */

/* 1) Main container gradient */
.accessSection {
  background: linear-gradient(180deg, #0079C3 0%, #FFF 61.06%);
  padding: 10vw;
  padding-bottom: 5vw;
  padding-top: 4vw;
  border: none;
  display: flex;
  justify-content: center;
}

/* 2) Inner “card” with translucent gray back-panel */
.accessSection .access-inner {
  display: grid;
  grid-template-columns: 34vw 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 3vw;
  background: rgba(217, 217, 217, 0.56);
  border-radius: 1.9375rem;
  padding: 5vw;
  justify-content: center;
  align-items: stretch;
  justify-items: center;
  width: 70vw;
}

/* 3) Map (row1 / col1) – 16:9 */
.accessSection .access-map {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  aspect-ratio: 14 / 10;
  overflow: hidden;
  /* border-radius: 1rem; */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-height: 23vw;
  margin-left: 1vw;
}

.accessSection .access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  margin: auto;
}

/* 4) Contact‐card (row1 / col2) */
.accessSection .access-contact {
  grid-column: 2 / 2;
  grid-row: 1 / 2;

}

#accessPage .accessSection .access-contact {
  display: flex;
  justify-content: space-evenly;
  flex-direction: row-reverse;
  align-content: center;
  align-items: center;
  max-width: 100vw;
  gap: 5vw;
  width: 80vw;
}

/* 5) Address (row2 / col1) */
.accessSection .address-block {
  grid-column: 1 / 2;
  grid-row: 2 / 2;
  margin-top: 1vw;
  color: #352302;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 1.5rem;
  margin-left: -5vw;
}

.accessSection .address-block p {
  margin: 0.5rem 0;
  color: #352302;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 1.1rem;
  margin-top: 0;
}

/* 6) Hours table (row2 / col2) */
.accessSection .hours-table {
  grid-column: 2 / 2;
  grid-row: 2 / 2;
  margin-top: -2vw;
  width: 100%;
  color: #352302;
  text-align: right;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 1.4rem;
  border-collapse: collapse;
  margin-left: -3vw;
}

.accessSection .hours-table thead th {
  text-align: left;
  font-weight: normal;
  font-size: 1.1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #D6C17E;
  padding-left: 0.5vw;
}

.accessSection .hours-table td {
  text-align: center;
  padding: 0.55rem 0.35rem;
}

.accessSection .hours-table td:first-child {
  text-align: left;
  padding-right: 0rem;
  font-size: 1.1rem;
}

.accessSection .hours-table tbody tr+tr {
  border-top: 1px solid #D6C17E;
}

/* 7) Contact‐card inner styling (same as before) */
.accessSection .contact-card {
  background: #fff;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 25vw;
  align-content: center;
  justify-content: space-evenly;
  margin-left: -1vw;
  margin-bottom: 5vw;
  align-items: center;
}

.accessSection .contact-card .web-btn {
  background: linear-gradient(90deg, #D6C17E 0%, #706542 100%);
  color: #fff;
  padding: 1rem 3rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.accessSection .contact-card .web-btn:hover {
  background: #a08a4c;
}

.accessSection .phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 2rem;
}

.accessSection .phone-icon {
  margin-right: 0.1em;
  margin-top: 0.2vw;
  font-size: 1.1em;
}

/* 8) Responsive: collapse to single column */
@media (max-width: 900px) {
  .accessSection .access-inner {
    display: flex;
    flex-direction: column;
  }

}


/* =============================== */
/*           FOOTER                */
/* =============================== */
/* =============================== */
/*             FOOTER             */
/* =============================== */
.siteFooter {
  background: #EFEBDE;
  padding-top: 3vw;
  padding-bottom: 3vw;
  position: relative;
  overflow: hidden;
  font-family: var(--font-jp);
  color: #423018;
  max-width: 100vw;
}

/* Inner flex container */
.siteFooter .footer-inner {
  max-width: 100vw;
  /* margin-left: 13vw; */
  padding-bottom: 4vw;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}

/* Logo */
.siteFooter .footer-logo img {
  height: 7rem;
  display: flex;
  position: relative;
  /* justify-content: center; */
  /* align-items: center; */
  top: 4vw;
  left: 5vw;
  align-content: center;
  /* flex-wrap: nowrap; */
}

/* Nav links */
.siteFooter .footer-nav ul {
  list-style: none;
  display: flex;
  gap: 5vw;
  margin: 0;
  padding: 0;
}

.siteFooter .footer-nav a {
  position: relative;
  text-decoration: none;
  color: #423018;
  font-size: 1rem;
  padding-bottom: 0.5rem;
}

.siteFooter .footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #D6C17E;
}

/* Watermark (behind everything) */
.siteFooter .footer-watermark {
  position: absolute;
  top: 55%;
  left: 60%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  pointer-events: none;
  color: #F8F4E8;
  user-select: none;
}

/* Reservation button */
.siteFooter .footer-reserve {
  z-index: 1;
}

.siteFooter .reserve-btn {
  background: #D6C17E;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem 0 0 2rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.siteFooter .reserve-btn:hover {
  background: #a08a4c;
}

.siteFooter .phone-icon {
  margin-right: 0.5rem;
  font-size: 1.5rem;
}

/* Copyright bar */
.siteFooter .footer-copy {
  text-align: center;
  font-size: 0.875rem;
  margin-top: 2rem;
  color: #423018;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .siteFooter .footer-inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .siteFooter .footer-nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
  }

  .siteFooter .footer-watermark {
    display: none;
  }

  .siteFooter .reserve-btn {
    border-radius: 1rem;
  }
}

.footer-nav {
    margin: auto;
    margin-top: -0.1vw;
}

#pediatric-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =============================== */
/*         MEDIA QUERIES           */
/* =============================== */

/* Large screens and tablets */
@media (max-width: 1100px) {

  .menu-cards,
  .menu-content {
    max-width: 95vw;
  }

  .menu-row {
    flex-direction: column;
    gap: 2vw;
    align-items: stretch;
  }

  .menu-img img {
    max-width: 100%;
    min-width: 0;
  }

  .menu-article {
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    padding: 4vw 3vw;
  }
}

/* Tablets and small laptops */
@media (max-width: 900px) {

  .director-block::before,
  .director-block::after {
    display: none;
  }

  .director-block .saiwai-block-inner {
    flex-direction: column;
    text-align: left;
    padding: 6vw 4vw;
  }

  .director-block .saiwai-block-img {
    margin-bottom: 2rem;
  }

  .saiwai-header h2 {
    font-size: 5vw;
    margin-left: 4vw;
  }

  .saiwai-block-inner,
  .saiwai-block-inner.reverse {
    flex-direction: column;
    align-items: flex-start;
    padding: 6vw 5vw;
  }

  .saiwai-block-img,
  .saiwai-staff-imgs {
    margin-top: 2vw;
    flex-direction: row;
    gap: 4vw;
  }

  .saiwai-block-img img,
  .saiwai-staff-imgs img {
    width: 45vw;
    height: auto;
  }

  .chairman-bg-outer,
  .chairman-bg-inner {
    display: none;
  }

  .saiwai-block-inner.reverse {
    flex-direction: column;
    padding: 5vw 6vw;
    text-align: left;
  }

  .saiwai-block-img {
    width: 80%;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {

  /*──────────────────────────────────────────────────────────────────────────────
    Box-sizing reset for header/nav elements
  ──────────────────────────────────────────────────────────────────────────────*/
  #mobileHeader,
  .headerInner,
  #mobileNav,
  .navLinks a,
  .contactCard {
    box-sizing: border-box;
  }

  /*──────────────────────────────────────────────────────────────────────────────
    Mobile Header Bar
  ──────────────────────────────────────────────────────────────────────────────*/
  #mobileHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 1000;
  }

  .headerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
  }

  .mobileLogo img {
    height: 2.3rem;
  }

  /*──────────────────────────────────────────────────────────────────────────────
    Hamburger Button
  ──────────────────────────────────────────────────────────────────────────────*/
  .hamburger {
    width: 3.5rem;
    height: 3rem;
    background: #BEAE7A;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
  }

  .hamburger__bars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 1.25rem;
    padding: 0 0.5rem;
  }

  .hamburger__bars span {
    display: block;
    width: 2rem;
    height: 0.15rem;
    background: #fff;
  }

  .hamburger__label {
    margin-top: 0.25rem;
    font-family: "Kozuka Gothic Pr6N", sans-serif;
    font-size: 0.6rem;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
  }

  /*──────────────────────────────────────────────────────────────────────────────
    Slide-in Navigation Panel
  ──────────────────────────────────────────────────────────────────────────────*/
  #mobileNav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -100%;
    width: 100%;
    background: #faf8f2;
    padding: 1rem;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 1000;
  }

  #mobileNav.open {
    left: 0;
  }


  /*──────────────────────────────────────────────────────────────────────────────
    Navigation Links
  ──────────────────────────────────────────────────────────────────────────────*/
  .navLinks {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 4rem 0;
  }

  .navLinks a {
    text-decoration: none;
    margin: auto;
    width: 60vw;
    text-align: center;
    color: #352302;
    font-size: 1.125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #706542;
  }

  /*──────────────────────────────────────────────────────────────────────────────
    Contact Card
  ──────────────────────────────────────────────────────────────────────────────*/
  .contactCard {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    width: 70vw;
    margin: auto;
    -webkit-box-shadow: -2px -1px 13px 5px rgba(0, 0, 0, 0.56);
  }

  .contactLabel {
    font-size: 0.875rem;
    color: #3A2E1B;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .webBtn {
    display: block;
    background: #D6C17E;
    color: #fff;
    text-align: center;
    padding: 0.75rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    width: 55vw;
    margin: auto;
    text-decoration: none;
    margin-bottom: 4vw;
  }

  .phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: #352302;
    justify-content: center;
  }

  .phoneIcon {
    font-size: 1.25rem;
  }

  /*──────────────────────────────────────────────────────────────────────────────
    Hours Table
  ──────────────────────────────────────────────────────────────────────────────*/
  .hoursTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
  }

  .hoursTable th,
  .hoursTable td {
    border: 1px solid #ddd;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
  }

  .desktop {
    display: none;
  }

  /* animate three bars into an “X” when .open */
  .hamburger__bars span {
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .hamburger.open .hamburger__bars span:nth-child(1) {
    transform: translateY(0.55rem) rotate(45deg);
  }

  .hamburger.open .hamburger__bars span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open .hamburger__bars span:nth-child(3) {
    transform: translateY(-0.55rem) rotate(-45deg);
  }

  /* keep the “CLOSE” label white */
  .hamburger.open .hamburger__label {
    color: #fff;
  }

  .hamburger {
    z-index: 1001;
    /* ensure it floats above the nav panel */
  }


  /* Make header & mobile nav exactly 100% of the viewport width,
   no more, no less. Use box-sizing so padding won’t blow it out. */
  #mobileHeader,
  #mobileNav {
    position: fixed;
    /* you already have this */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    /* ← instead of 100vw */
    max-width: 100%;
    /* guard against accidental overflow */
    box-sizing: border-box;
    /* height: 11vw; */
  }

  /* If you need padding on the header or nav, include it inside the box */
  .headerInner {
    padding: 0 1rem;
    /* safe, won’t push past 100% */
    padding-right: 0;
  }

  /* Finally, ensure the slide-in panel doesn’t overflow: */
  .mobileNav {
    overflow-x: hidden;
    /* hide any child overflow */
  }

  #mobileNav {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    /* anchor at left edge */
    width: 100%;
    /* full screen width */
    transform: translateX(-100%);
    /* completely hidden */
    transition: transform 0.3s ease;
    background: #faf8f2;
    overflow-y: auto;
    z-index: 1000;
    margin-right: 0;
    padding-right: 0;
  }

  /* when .open is added, slide it back in */
  #mobileNav.open {
    transform: translateX(0);
  }

  /* make sure html/body can still scroll vertically */
  html,
  body {
    overflow-x: hidden;
    /* no horizontal scroll */
  }

  /* 1) Carousel viewport: full-width scrollable area */
  .carouselWrapper {
    width: 100vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* hide native scrollbar if you like */
    scrollbar-width: none;
  }

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

  /* 2) Flex row of cards */
  .carousel {
    display: flex;
    /* no gap needed—spacing via margins on .carouselItem */
  }

  /* 3) Each card = 60vw, centered by 20vw margins, snaps into center */
  .carouselItem {
    flex: 0 0 auto;
    width: 60vw;
    margin: 0 20vw;
    scroll-snap-align: center;
    box-sizing: border-box;
  }

  /* 4) Arrow buttons positioned above */
  .carouselPrev,
  .carouselNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  .carouselPrev {
    left: 1rem;
  }

  .carouselNext {
    right: 1rem;
  }
}

/* Mobile tablets */
@media (max-width: 768px) {
  .saiwai-block.chairman-block .saiwai-block-inner.reverse {}

  .heroTitle {
    font-size: 6vw;
  }

  .mobile {
    display: block !important;
  }

  .heroSubtitle {
    font-size: 3vw;
  }

  .quoteText {
    font-size: 3.5vw;
  }

  .carouselItem {
    flex: 0 0 90vw;
  }

  .headingText {
    font-size: 4vw;
  }

  .staffCard {
    width: 90vw;
    max-width: 90vw;
  }

  .ctaButton {
    width: 90vw;
    font-size: 4vw;
  }

  .reviewsButton {
    font-size: 3.5vw;
    padding: 2vw 4vw;
  }

  .sectionTitle {
    font-size: 5vw;
  }

  .clinicDescription {
    font-size: 3.2vw;
    max-width: 90vw;
  }

  .sectionButton {
    font-size: 3.5vw;
    padding: 2vw 4vw;
  }

  .clinicAddress {
    font-size: 3.2vw;
  }

  .contactButton {
    font-size: 3.5vw;
    padding: 2vw 4vw;
  }

  .siteFooter small {
    font-size: 2.5vw;
  }
}

/* Small mobile devices */
@media (max-width: 700px) {
  .side-title {
    font-size: 6vw;
    padding-top: 10vw;
    position: relative;
    top: 50vw;
    left: -41vw;
  }

  .jp-title {
    font-size: 4vw;
  }

  .en-title {
    font-size: 2vw;
  }

  .menu-card {
    width: 90vw;
    min-width: unset;
    font-size: 3vw;
    padding: 5vw 2vw 4vw 2vw;
  }

  .menu-card .icon-bg {
    width: 12vw;
    height: 12vw;
  }

  .menu-card .icon {
    font-size: 6vw;
  }

  .menu-card .jp {
    font-size: 3vw;
  }

  .menu-card .en {
    font-size: 2.5vw;
  }

  .menu-article h4 {
    font-size: 3vw;
  }

  .menu-article p,
  .menu-article .menu-btn {
    font-size: 0.9rem;
  }

  .menu-article {
    padding: 6vw 3vw;
  }

  .mapWrapper {
    height: 60vw;
  }
}

#staffPage #hero {
  height: auto;

}

#staffPage .saiwai-section {
  margin-top: 0;
}

#staffPage>section.saiwai-section>div.saiwai-block.director-block>div.saiwai-block-text {
  max-width: 70vw;
  margin-bottom: 4vw;
}

#staffPage>section.saiwai-section>div.saiwai-block.chairman-block {
  background: rgba(208, 227, 239, 0.68);
  padding-bottom: 3vw;
}

#staffPage>section.saiwai-section>div.saiwai-block.chairman-block>div.saiwai-block-inner.reverse>div.saiwai-block-text>h3 {
  margin-top: -3vw;
  margin-bottom: 3vw;
}

#staffPage>section.saiwai-section>div:nth-child(6) {
  background: none !important;
}

#staffPage>section.saiwai-section>div:nth-child(3)>div.saiwai-block-inner.reverse>div.saiwai-block-img>div {
  display: flex;
  margin-right: 2vw;
  align-items: center;
  flex-direction: column;
  align-content: center;
  margin-top: 2vw;
}

#staffPage>section.saiwai-section>div:nth-child(6)>div.saiwai-block-inner.reverse>div.saiwai-block-img>div {
  margin-top: 2vw;
  text-align: center;
  font-size: 1.5rem;
}

#staffPage>section.saiwai-section>div:nth-child(4)>div>div.saiwai-block-img>div>h3 {
  color: #352302;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  line-height: 3.25rem;
  z-index: 999;
  width: 25vw;
}

#staffPage>div.side-title.side2 {
  top: 380vw;
  color: #FFEDB1;
  font-family: "Kozuka Gothic Pr6N";
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.625rem;
  margin-top: 17vw;
}

.imgwide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3vw;
  margin-bottom: 5vw;
}

#clinicInfo>div.imgwide>img {
  width: 60vw;
}

#clinicInfo .menu-section {
  height: auto !important;
}

#clinicInfo>section>div.clinic-top>div.clinic-text>h2 {
  margin-bottom: 3vw;
  color: #352302;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 300;
}

/* ============================= */
/* Staff Recommendations Section */
/* ============================= */

.staff-recommendations {
  background: linear-gradient(180deg, #f7f3ec, #fff);
  padding: 4rem 1rem;
  text-align: center;
}

.staff-recommendations .container {
  max-width: 100vw;
  margin: auto;
}

.sr-heading {
  font-family: "Hiragino Mincho Pro", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #3a2e1b;
  text-align: center;
  margin: auto;
  margin-bottom: 0.5rem;
}

.sr-subtitle {
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-size: 1rem;
  color: #86754b;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

/* Grid of cards */
.sr-grid {
  display: grid;
  gap: 2rem;
  font-family: "Kozuka Gothic Pr6N";
  justify-items: center;
  justify-content: space-evenly;
  grid-template-columns: repeat(3, minmax(25rem, 1fr));
  margin: auto;
  max-width: 80vw;
  /* margin-left: 5rem; */
}
.sr-card-text{color: #000;font-family: "Kozuka Gothic Pr6N";font-size: 0.8rem;padding-bottom: 1rem;line-height: 1.4;}
/* Individual card */
.sr-card {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: left;
}

.sr-card-img img {
  width: 100%;
  height: 30vw;
  object-fit: cover;
  /* border-radius: 0.5rem; */
  margin-bottom: 1rem;
}

.sr-card-title {
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-size: 1.125rem;
  color: #352302;
  margin-bottom: 0.75rem;
}

.sr-card-text p{
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #3a2e1b;
  flex-grow: 1;
}

/* ============================= */
/* Mobile adjustments (<480px)   */
/* ============================= */
@media only screen and (max-width: 480px) {
  .sr-grid {
    grid-template-columns: 1fr;
    max-width: 90vw;
  }

  .sr-card {
    padding: 1rem;
    border-radius: 0;
  }
}


#clinic .treatment-description-section {
  background: linear-gradient(90deg, #FFF 0%, #C7BD9C 50%, #FFF 100%);
  padding: 3rem 20rem;
  text-align: center;
  border-radius: 0.5rem;
  margin: 0 auto;
  max-width: 100vw;
  margin-bottom: 0;
}

#clinic>div>h2 {
  margin-bottom: 1vw;
  color: #50482D;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 2vw;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

#clinic>div>p {
  color: #2A1D06;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
  font-size: 1.2vw;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

/* -------------------------------------------------------------------------------- */
/* Clinic Points Section                                                          */
/* -------------------------------------------------------------------------------- */
#clinic-points.points {
  display: flex;
  gap: 0.5rem;
  padding: 4rem 4vw;
  flex-wrap: wrap;
  background: #F8F4E8;
  flex-direction: row;
  justify-content: center;
}

/* constrain each card to the image width */
#clinic-points .point-item {
  flex: 0 1 25rem;
  /* fixed basis = image’s max-width */
  max-width: 25rem;
  /* don’t grow beyond the image width */
  margin: 0 1vw;
  /* center if there’s extra space */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

#clinic-points .point-image {
  width: 100%;
  height: auto;
  max-width: 25rem;
  /* ~320px */
  /* border-radius: 0.5rem; */
  object-fit: cover;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 1px -1px 14px 4px rgba(199, 189, 156, 0.49);
}

#clinic-points .point-title {
  font-size: 1.1rem;
  /* 20px */
  margin: 0 0 1rem;
  color: #3a2e1b;
  line-height: 1.3;
}

#clinic-points .point-text {
  font-size: 0.9rem;
  /* 16px */
  color: #3a2e1b;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

/* Responsive: stack on smaller screens */
@media (max-width: 768px) {
  #clinic-points.points {
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 5vw;
  }

  #clinic-points .point-item {
    flex: 1 1 100%;
  }

  #clinic-points .point-image {
    max-width: 100%;
    margin-bottom: 1rem;
  }
}

/* -------------------------------------------------------------------------- */
/* *Medical Equipment*                                                       */
/* -------------------------------------------------------------------------- */
.equipment-section {
  width: 100vw;
  box-sizing: border-box;
  padding: 4rem 0;
  /* space above and below */
  overflow: hidden;
}

.equipment-title {
  position: relative;
  width: 80vw;
  /* slightly narrower than full width */
  margin: 0 auto 3rem;
  font-size: 2rem;
  font-weight: 500;
  color: #352302;
  text-align: center;
  font-family: "Hiragino Mincho Pro";
}

.equipment-title::before,
.equipment-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25vw;
  height: 2px;
  background: #352302;
}

.equipment-title::before {
  left: 0;
}

.equipment-title::after {
  right: 0;
}

.equipment-subtitle {
  display: block;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: #352302;
  font-family: "Hiragino Mincho Pro";
}

/* grid of 6 items */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 70vw;
  margin: 0 auto;
  box-sizing: border-box;
}

/* each equipment card */
.equipment-item {
  text-align: center;
}

.equipment-item img {
  width: 100%;
  height: auto;
  /* border-radius: 0.5rem; */
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
  -webkit-box-shadow: 5px 2px 14px -1px rgba(0, 0, 0, 0.64);
}

.equipment-name {
  font-size: 1rem;
  font-weight: 500;
  color: #3A2E1B;
  margin: 0 0 0.5rem;
}

.equipment-desc {
  font-size: 0.875rem;
  color: #3A2E1B;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------------------------------------- */
/*  Equipment “extras” — two new panels below the 3×2 grid                    */
/* -------------------------------------------------------------------------- */
.equipment-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 70vw;
  margin: 4rem auto 2rem;
  box-sizing: border-box;
  justify-content: center;
  justify-items: center;
  align-items: center;
}

/* individual extra‐item (device) */
.equipment-extra-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 30vw;
}

.equipment-extra-item .extra-image {
  width: 100%;
  max-width: 25rem;
  /* border-radius: 0.5rem; */
  -webkit-box-shadow: 5px 2px 14px -1px rgba(0, 0, 0, 0.64);
  margin-bottom: 1rem;
}

.equipment-extra-item .extra-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #3A2E1B;
  max-width: 24rem;
}

/* info‐box */
.equipment-extra-info {
  background: #D9EEF7;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 23vw;
  -webkit-box-shadow: 5px 2px 14px -1px rgba(0, 0, 0, 0.64);
}

.equipment-extra-info .info-title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: #3A2E1B;
  text-align: center;
}

.equipment-extra-info .info-separator {
  border: none;
  border-top: 2px solid #327FAE;
  margin: 0 0 1rem;
}

.equipment-extra-info .info-list {
  list-style: disc inside;
  padding: 0;
  margin: 0 0 1rem;
  margin-left: 4vw;
}

.equipment-extra-info .info-list li {
  font-size: 1rem;
  line-height: 2;
  color: #3A2E1B;
  margin-bottom: 0.5rem;
}

.equipment-extra-info .info-note {
  font-size: 0.875rem;
  color: #B66D7D;
  margin: auto 0 0;
  text-align: center;
  margin-left: 3vw;
  margin-right: 3vw;
  text-align: left;
}

/* stack to single column on narrow screens */
@media (max-width: 768px) {
  .equipment-extra {
    grid-template-columns: 1fr;
  }

  .equipment-extra-item .extra-image,
  .equipment-extra-item .extra-desc,
  .equipment-extra-info {
    max-width: 100%;
  }
}

/* -------------------------------------------------------------------------- */
/* Our Space (#space)                                                         */
/* -------------------------------------------------------------------------- */

/* wrapper & heading */
#space {
  width: 100vw;
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.space-heading {
  width: 100vw;
  margin: 0;
  padding: 1.5rem 0;
  background: linear-gradient(0deg, #fff 0%, #61A8D3 100%);
  text-align: center;
  font-family: "Hiragino Mincho Pro", serif;
  font-size: 1.875rem;
  /* 30px */
  font-weight: 300;
  color: #fff;
}

/* content column wrapper */
.space-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 90vw;
  margin: -2rem auto 4rem;
  /* tuck up under heading */
  padding: 0 5vw;
  box-sizing: border-box;
}

/* each card */
.space-item {
  /* for overlap stacking */
}

/* alternate left/right */
.space-item.reversed {
  flex-direction: row-reverse;
}

/* image container */
.space-item .item-image {
  position: relative;
  z-index: 2;
  /* float above the text box */
  flex: 1 1 50%;
  margin-top: 1.5rem;
  /* push image down for overlap */
}

/* actual image */
.space-item .item-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  /* no rounding */
}

/* text “cloud” */
.space-item .item-text {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
  margin-top: -2rem;
  /* pull up under image */
  border: 2px solid #D6C17E;
  border-radius: 0;
  /* no rounding */
  padding: 2rem;
  box-sizing: border-box;
}

/* title in the text cloud */
.item-text .item-title {
  margin: 0 0 1rem;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-size: 1.375rem;
  /* 22px */
  font-weight: 400;
  color: #352302;
  text-align: left;
}

/* description in the text cloud */
.item-text .item-description {
  margin: 0;
  font-family: "Hiragino Mincho Pro", serif;
  font-size: 1rem;
  /* 16px */
  font-weight: 300;
  color: #352302;
  line-height: 1.6;
  text-align: left;
}

/* stack on mobile */
@media (max-width: 768px) {
  .space-content {
    gap: 2rem;
  }

  .space-item {
    flex-direction: column !important;
  }

  .space-item .item-image,
  .space-item .item-text {
    flex: 1 1 100%;
    margin-top: 0 !important;
    /* cancel the overlap on small screens */
  }
}

/* allow the image to overflow and sit above the text frame */
.space-item {
  /* already there, but required for z-index context */
  /* <— allow the shifted image to show */
}

/* push the image _down_ and above the text box */
.space-item .item-image {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  /* adjust this to taste (2rem ≈ 32px) */
}

/* pull the text box _up_ under the image */
.space-item .item-text {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  /* same magnitude as the image’s margin-top */
}

/* allow the items to overflow so the image can overlap the text “cloud” */
#space .space-item {
  position: relative;
  overflow: visible;
  margin-bottom: 7vw;
}

/* 1) push the image down so it sits above the text box */
#space .space-item .item-image {
  position: relative;
  z-index: 2;
  margin-top: 2rem;
  /* ↑ adjust up/down the overlap depth */
}

/* 2) pull the text box up by the same amount to tuck under the image */
#space .space-item .item-text {
  position: relative;
  z-index: 1;
  margin-top: -2rem;
  /* must be the negative of the image’s margin-top */
  margin-left: -3vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
}

/* ----------------------------------------------------------------------------- */
/* Our Space → section.space                                                     */
/* ----------------------------------------------------------------------------- */

/* 0) Wrapper & heading */
#space {
  width: 100vw;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#space .space-heading {
  width: 100vw;
  margin: 0;
  padding: 1.5rem 0;
  background: linear-gradient(0deg, #fff 0%, #61A8D3 100%);
  color: #352302;
  font-family: "Hiragino Mincho Pro", serif;
  font-size: 1.875rem;
  /* 30px */
  font-weight: 300;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* 1) Container of all items */
#space .space-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  width: 90vw;
  margin: calc(-1rem + 4vw) auto 4rem;
  /* pull up under heading, then reset top-gap */
  padding: 0 5vw;
  box-sizing: border-box;
}

/* 2) Each item & reversed order */
#space .space-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: visible;
  /* allow image overlap */
}

#space .space-item.reversed {
  flex-direction: row-reverse;
}

/* 3) Image panel */
#space .space-item .item-image {
  flex: 1 1 50%;
  margin-top: 1.5rem;
  /* push image down to overlap */
  position: relative;
  z-index: 2;
}

#space .space-item .item-image img {
  display: block;
  position: relative;
  left: 4vw;
  width: 90%;
  height: auto;
  -webkit-box-shadow: 3px -6px 14px -2px rgba(214, 193, 126, 0.75);
}

/* 4) Text “cloud” panel */
#space .space-item .item-text {
  flex: 1 1 50%;
  margin-top: -2rem;
  /* pull under image */
  border: 2px solid #D6C17E;
  padding: 3.5rem 7vw;
  box-sizing: border-box;
  background: #fff;
  z-index: 1;
}

/* override text-panel offset when reversed */
#space .space-item.reversed .item-text {
  margin-left: 1vw;
  margin-right: -4vw;
}

/* 5) Title & body inside the cloud */
#space .item-title {
  margin: 0 0 1rem;
  color: #352302;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-size: 1.2rem;
  /* 22px */
  font-weight: 400;
  text-align: left;
}

#space .item-description {
  margin: 0;
  color: #352302;
  font-family: "Hiragino Mincho Pro", serif;
  font-size: 0.9rem;
  /* 16px */
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
}

/* 6) Responsive: stack & reset overlap on small screens */
@media (max-width: 768px) {
  #space .space-content {
    gap: 2rem;
  }

  #space .space-item {
    flex-direction: column !important;
  }

  #space .item-image,
  #space .item-text {
    flex: 1 1 100%;
    margin-top: 0;
    /* cancel desktop overlap */
  }

  #space .space-item.reversed .item-text {
    margin-left: 0;
    margin-right: 0;
  }
}

#staffPage .clinic-image-stack img {
  width: 100%;
  /* border-radius: 6px; */
  /* object-fit: cover; */
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  background: #f5f5f5;
  /* height: auto; */
  overflow: visible;
  top: 0vw;
  display: block;
}

#space>div.space-content>article:nth-child(2)>div.item-image>img {
  display: block;
  left: 0vw;
  width: 100%;
  height: auto;
  -webkit-box-shadow: -10px -6px 14px -2px rgba(214, 193, 126, 0.75);
}

#space>div.space-content>article:nth-child(4)>div.item-image>img {
  -webkit-box-shadow: -10px -6px 14px -2px rgba(214, 193, 126, 0.75);
  left: 0vw;
}

#rijichotext {
  max-width: 70vw;
  margin-bottom: 4vw;
  margin: auto;
  margin-top: -3vw;
}

#staffTag {
  background: #FFF;
}

#staffTag>div>div.saiwai-block-img>img {
  max-width: 35vw;
}

.border {
  color: #D6C17E;
  border: 2px solid #D6C17E;
  width: 70vw;
  margin: auto;
}

#staffPage>section.staffRecruit>div.menu-header-inner>div.menu-header-title>span.jp-title {
  color: #352302;
}

#staffPage>section.staffRecruit>div.menu-header-inner>div.menu-header-title>span.en-title {
  color: #352302;
}

#AoyagiTag>div.saiwai-block-inner>div.saiwai-block-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-content: center;
  margin-right: 2vw;
}

#staffPage .clinic-image-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  /* gap: 18px; */
  /* min-width: 320px; */
  overflow: visible;
  max-width: 27vw;
}

#clinic .access-contact {
  margin-top: 0vw;
}

#clinic .menu-header-inner {
  margin-top: 0;
}

#staffPage .menu-header-line {
  border-top: 0.15vw solid #352302;
  ;
}

.staffRecruit {
  background: linear-gradient(0deg, #FFF 0%, #EFEBDE 100%);
  margin-bottom: 10vw;
}

.staffRecruit .menu-header-inner {
  background: none;
}

#staff .staffRecruit .jp-title {
  color: #352302;
}

#staff .staffRecruit .en-title {
  color: #352302;
}

#staffPage>section.staffRecruit>div.clinic-top>div.clinic-image-stack>img.bottom-img {
  top: -2vw !important;
}

#topPage>section.saiwai-section>div.saiwai-block.chairman-block>div.saiwai-block-inner.reverse>div.saiwai-block-text>a {
  display: flex;
  margin-top: 2rem;
  border: 1px solid #d6c79a;
  background: transparent;
  color: #d6c79a;
  padding: 1rem 3rem;
  font-family: var(--font-jp);
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
  flex-direction: column;
  max-width: 15vw;
  align-content: center;
  align-items: center;
}

#topPage>section.saiwai-section>div.saiwai-block.staff-block>div.saiwai-block-inner>div.saiwai-block-text>a {
  display: flex;
  margin-top: 2rem;
  border: 1px solid #d6c79a;
  background: transparent;
  color: #d6c79a;
  padding: 1rem 2rem;
  font-family: var(--font-jp);
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s, color .2s;
  flex-direction: column;
  max-width: 15vw;
  align-content: center;
  align-items: center;
}

.background {}

.newtitle {
  font-size: 1.3rem !important;
  margin-bottom: 2vw;
}

span.accent {}

@media (max-width: 480px) {
  .menu-cards {}

  .menu-content {
    margin-top: -5vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .menu-card .icon-bg {
    width: 18vw;
    height: 18vw;
    margin-bottom: 2vw;
  }

  .menu-article h4 {
    margin-bottom: 5vw;
    font-size: 1rem;
  }

  .menu-article p,
  .menu-article .menu-btn {
    height: auto;
    padding: 3vw;
  }

  .menu-row.reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  #topPage>section.saiwai-section>div.saiwai-header>h2 {
    font-size: 2rem;
    width: 100vw;
    top: -15vw;
    left: -5vw;
    letter-spacing: 0.5vw;
  }

  .saiwai-block.director-block .saiwai-block-text {
    max-width: 80vw;
    display: flex;
    text-align: justify;
    flex-direction: column;
  }

  .saiwai-block.director-block .saiwai-block-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: auto;
  }

  .director-block .saiwai-block-img {
    margin: auto;
  }

  .saiwai-block.director-block .saiwai-block-img img {
    max-width: 80vw;
    margin-top: 2rem;
    margin-bottom: -2rem;
  }

  .saiwai-block.director-block .saiwai-btn {
    display: flex;
    flex-direction: row;
    text-orientation: sideways;
    max-width: 45vw;
    margin-top: -1vw;
    margin-bottom: 2vw;
  }

  .saiwai-block.chairman-block .saiwai-block-inner.reverse {}

  .saiwai-block.chairman-block .saiwai-block-img {
    max-width: 80vw;
    margin: auto;
    height: 80vw;
  }

  .saiwai-block.chairman-block .saiwai-block-img img {
    max-width: 60vw;
    width: 60vw;
    margin: auto;
  }

  .saiwai-block-text h3 {
    margin-top: 2vw;
  }

  #topPage>section.saiwai-section>div.saiwai-block.chairman-block>div.saiwai-block-inner.reverse>div.saiwai-block-text>a {
    max-width: 50vw;
    margin-bottom: 5vw;
  }

  #topPage>section.saiwai-section>div.saiwai-block.staff-block>div.saiwai-block-inner>div.saiwai-block-text>a {
    max-width: 50vw;
    margin-bottom: 5vw;
  }

  .saiwai-block.staff-block .saiwai-block-inner {
    display: flex;
    padding: 0;
    flex-direction: column-reverse;
  }

  .saiwai-block.staff-block .saiwai-staff-imgs {
    width: 100vw;
    height: 120vw;
  }


  #topPage>section.saiwai-section>div.saiwai-block.staff-block>div.saiwai-block-inner>div.saiwai-staff-imgs>div {
    display: flex;
    margin: auto;
    margin-top: 2rem;
  }

  #topPage>section.saiwai-section>div.saiwai-block.staff-block>div.saiwai-block-inner>div.saiwai-staff-imgs>img:nth-child(2) {
    width: 80vw;
    max-width: 100vw;
    height: auto;
    margin-top: 3vw;
  }

  #topPage>section.saiwai-section>div.saiwai-block.staff-block>div.saiwai-block-inner>div.saiwai-staff-imgs>img:nth-child(3) {
    width: 60vw;
    position: relative;
    top: -15vw;
    left: 40%;
  }

  #topPage>section.saiwai-section>div.saiwai-block.staff-block>div.saiwai-block-inner>div.saiwai-block-text>p:nth-child(3) {
    margin-top: 8rem;
  }

  #clinicInfo>section.menu-section {
    display: flex;
    background: linear-gradient(0deg, #FFF 0%, #61A8D3 100%);
    flex-direction: column;
    margin-top: -4rem;
  }
  #topPage  #clinicInfo>section.menu-section {
        display: flex;
        background: linear-gradient(0deg, #FFF 0%, #61A8D3 100%);
        flex-direction: column;
        margin-top: -1rem;
    }
  #clinicInfo>section.menu-section>div.clinic-top>div.clinic-image-stack>img.top-img {
    position: relative;
    left: -11vw;
    width: 80vw;
  }

  #clinicInfo .side2 {
    font-size: 3.1rem;
    top: 175vw;
    left: -82vw;
    width: 180vw;
  }

  #clinicInfo>section.menu-section>div.menu-header-inner>div.menu-header-title {
    margin-right: -1rem;
  }

  .clinic-gallery img {
    height: 30vw;
    width: 50vw;
  }

  .sns-title-bg span {
    margin: auto;
  }

  .recruit-bg img {
    width: 100%;
    position: absolute;
  }

  .accessSection .access-inner {
    width: 90vw;
    align-items: stretch;
  }

  .accessSection .access-map {
    max-height: 45vw;
    margin-top: 4vw;
  }

  .accessSection .address-block {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 0.7rem;
    margin-left: 1rem;
  }

  .accessSection .address-block p {
    font-size: 0.9rem;
  }

  .accessSection .contact-card {
    width: 70vw;
    margin: auto;
  }

  .accessSection .contact-card .web-btn {
    font-size: 0.8rem;
    background: #D6C17E;
  }

  .accessSection .phone-icon {
    font-size: 2rem;
  }

  .phone-icon img {
    margin-top: 1vw;
    width: 2rem;
  }

  .accessSection .phone {
    font-size: 1.8rem;
    width: 64vw;
    margin-bottom: -3vw !important;
    margin-top: -1rem;
  }

  .accessSection .hours-table {
    display: table !important;
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .accessSection .hours-table th,
  .accessSection .hours-table td {
    display: table-cell !important;
  }

  .accessSection .hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 3rem;
    table-layout: fixed;
    margin-left: 0.2rem;
    font-size: 0.7rem;
    border-collapse: collapse;
    margin-top: 2rem;
  }

  .accessSection .hours-table th,
  .accessSection .hours-table td {
    /* border: 1px solid #ddd; */
    padding: 0.7rem;
    text-align: center;
    font-size: 0.7rem;
  }

  .accessSection .hours-table thead th {
    display: table;
    font-size: 0.7rem;
    padding: 0.7rem;
    margin-right: -0.5rem;
    text-align: center;
  }

  .accessSection .hours-table td:first-child {
    font-size: 0.7rem;
    padding-left: 0.6rem;
    text-align: center;
  }

  #access>div>table>thead>tr>th:nth-child(1) {
    padding-right: 1.4rem;
}

  #treatment>section.menu-section>div.menu-cards {}

  #access>div>table>tbody>tr {
    margin-top: 0.3rem;
    display: table;
    padding: 0.3rem;
    margin-left: -1.2vw;
  }

  #access>div>table>thead>tr {
    display: table;
    padding: 0.7rem;
    font-size: 0.7rem;
  }

  #access>div>table>tbody>tr:nth-child(2) {
    margin-left: -0.3rem;
  }

  .siteFooter .footer-inner {
    display: flex;
  }

  /* Hide the in-flow footer button if you didn’t remove it in HTML */
  .reserveWrapper,
  .footer-reserve {
    display: none;
  }

  /* Create a new sticky button */
  .reserveBtn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2000;
    background: rgba(214, 193, 122, 0.7);
    /* your gold at 70% opacity */
    color: #fff;
    padding: 1rem 1.25rem;
    font-family: "Kozuka Gothic Pr6N", sans-serif;
    font-size: 1rem;
    border-radius: 2rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    transition: background .2s, opacity .2s;
  }

  .reserveBtn:hover {
    background: rgba(214, 193, 122, 0.9);
    opacity: 1;
  }















  /* =============================== */
  /* HERO SECTION                    */
  /* =============================== */
  #hero img {
    height: 57vw;
    object-fit: cover;
    margin-top: -1rem;
    margin-bottom: -1rem;
  }

  .heroSection {}

  .heroVideo {
    margin-top: 9vw;
    height: 70vw;
  }

  /* =============================== */
  /* TOP PAGE MAIN                   */
  /* =============================== */
  #topPage {}

  /* =============================== */
  /* GOOGLE REVIEWS SECTION          */
  /* =============================== */
  #features {
    z-index: 999;
    position: relative;
}

  .reviewsSection {}

  .quoteBanner {
    width: 100vw;
    height: 6rem;
  }

  .quoteText {
    font-size: 1rem;
    text-align: center;
    margin: auto;
  }

  .carouselWrapper {
    width: 60vw;
    margin: auto;
    margin-bottom: 5vw;
  }

  .carousel {}

  #reviewsCarousel {
    width: 90vw;
  }

  .carouselItem {
    padding: 3vw 10vw;
    height: 70vw;
    margin-left: -5vw;
  }

  .avatar {
    max-width: 3rem;
    margin-bottom: 2vw;
  }

  .reviewerName {}

  .reviewDate {}

  .stars {}

  .carouselItem .reviewText {
    -webkit-line-clamp: 4 !important;
    font-size: 0.7rem !important;
    overflow: visible !important;
    margin-top: 2vw !important;
    padding-top: 2vw !important;
    padding-right: 20vw;
    padding-left: 15vw;
    line-height: 1.5;
  }

  .carouselPrev {}

  #carouselPrev {
    left: -10vw;
  }

  .carouselNext {}

  #carouselNext {
    right: -10vw;
  }

  .reviewsButton {
    width: 40vw;
    font-size: 2.5vw;
  }

  /* =============================== */
  /* STAFF TESTIMONIAL SECTION       */
  /* =============================== */
  .staffTreatmentSection {
    padding-bottom: 20vw;
  }

  .staffHeadingGradient {
    height: 6rem;
  }

  .headingText {
    padding-right: 0;
  }

  .staffImages {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .staffCard {}

  .staffImage {
    width: 80vw;
    margin: auto;
  }

  .ctaWrapper {}

  .ctaButton {
    margin-top: 3vw;
    font-size: 2.5vw;
    width: 40vw;
    padding: 2vw 4vw;
  }

  /* =============================== */
  /* TREATMENT MENU SECTION          */
  /* =============================== */
  #treatment {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    margin-top: -23vw;
  }

  .side-title {
    transform: rotate(90.02deg);
    font-size: 2.5rem;
    top: 75vw;
    width: 180vw;
    padding-top: 0;
  }

  .menu-section {
    overflow: visible;
  }

  .menu-header-inner {}

  .menu-header-line {}

  .menu-header-title {}

  .jp-title {}

  .en-title {}

  .menu-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .menu-card {
    height: 50vw;
    width: 60vw;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
  }

  .icon-bg {}

  .icon {}

  .menu-content {
    margin-top: 42rem;
  }

  .menu-row {
    margin: auto;
    width: 100vw;
    display: flex;
    flex-direction: column-reverse;
  }

  .reverse {
    display: flex;
  }

  .menu-img {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
  }

  .margin-right {}

  .menu-article {
    margin: 4vw;
  }

  .norightmargin {
    margin-left: 4vw !important;
    margin-right: 4vw !important;
  }

  .menu-btn {}

  .menu-bottom-btn {
    font-size: 0.9rem;
    padding: 3vw 7vw;
  }

  /* =============================== */
  /* SAiWAI INTRO SECTION            */
  /* =============================== */
  .saiwai-section {}

  .saiwai-header {
    height: 7rem;
  }

  .saiwai-block {}

  .director-block {}

  .saiwai-block-inner {
    margin: auto;
  }

  .saiwai-block-text {
    max-width: 70vw;
    text-align: justify;
  }

  .subtitle {}

  .saiwai-btn {}

  .saiwai-block-img {}

  .chairman-block {}

  .chairman-bg-outer {}

  .chairman-bg-inner {}

  .saiwai-block-inner.reverse {}

  .staff-block {}

  .saiwai-block-bg.staff {}

  .saiwai-staff-imgs {}

  /* =============================== */
  /* CLINIC INTRODUCTION SECTION     */
  /* =============================== */
  #clinicInfo>div.imgwide>img {
    width: 100vw;
  }

  #clinicInfo {
    padding-bottom: 0;
    margin-top: -2vw;
  }

  .clinicInfoSection {}

  .menu-section {}

  #clinicInfo>section.menu-section>div.menu-header-inner {
    height: 30vw;
    background: none;
    display: flex;
    align-items: center;
    padding-right: 2rem;
  }

  .menu-header-line {
    margin-left: 10vw;
    /* margin-right: 10vw; */
  }

  .menu-header-title {}

  .jp-title {
    font-size: 1.4rem;
  }

  .en-title {
    font-size: 1.1rem;
  }

  .clinic-top {
    display: flex;
    flex-direction: column-reverse;
  }

  .clinic-text {
    width: 75vw;
    margin-bottom: 2rem;
  }

  .clinic-image-stack {
    max-width: 100vw;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .top-img {}

  .bottom-img {
    width: 80vw !important;
  }

  .gallery {}

  .clinic-gallery {
    display: flex;
    flex-direction: row;
    padding: 0;
    max-width: 150vw;
    width: 150vw;
    margin-left: 1vw;
    align-content: center;
  }

  .clinic-cta {}

  .clinic-btn {}

  #clinicInfo>section>div.clinic-top>div.clinic-text>h2 {

    font-size: 1.2rem;
  }


  .clinic-text p {
    font-size: 0.8rem;
  }

  #clinic .treatment-description-section {
    padding: 2rem 3rem;
  }

  #clinic>div>h2 {
    font-size: 1.2rem;


  }

  #clinic>div>p {
    font-size: 0.8rem;
  }

  .equipment-title {
    font-size: 1.4rem;
  }

  /* =============================== */
  /* NEWS SECTION                    */
  /* =============================== */
  #news {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100vw;
    justify-content: center;
    margin-top: rem;
    align-content: center;
  }

  .newsSection {}

  .news-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
    align-content: stretch;
  }

  .news-header-title {
    display: flex;
    align-items: center;
  }

  .news-more-btn {
    margin-top: 5vw;
  }

  .news-list {
    width: 80vw;
  }

  .news-item {
    gap: 4px;
  }

  .news-date {
    font-size: 0.8rem;
    margin-right: -4vw;
  }

  .news-tag {
    font-size: 0.4rem;
  }

  .news-link {
    font-size: 0.7rem;
  }

  /* =============================== */
  /* SNS SECTION                     */
  /* =============================== */
  .snsSection {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sns-grid {}

  .sns-title-bg {
    width: 80vw;
    height: 30vw;
    margin: auto;
  }

  .sns-images {}

  .sns-img-bg {
    width: 46vw;
    border-radius: 0;
    height: 60vw;
  }

  /* =============================== */
  /* RECRUIT SECTION                 */
  /* =============================== */
  .background {}

  .recruitSection {
    padding: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    padding-top: 10vw;
  }

  .recruit-bg {
    border-radius: 0;
    width: 100vw;
    max-width: 100vw;
    height: 50vw;
    max-height: 50vw;
    padding: 0;
    margin: 0;
  }

  .recruit-content {
    border-radius: 0;
    width: 100vw;
    max-width: 100vw;
    padding: 0;
    background: none;
    margin: 0;
  }

  .recruit-sub {}

  .recruit-btn {}

  .recruit-vertical-title {}

  /* =============================== */
  /* ACCESS SECTION                  */
  /* =============================== */
  #access {
    padding: 5vw;
    padding-bottom: 3rem;
  }

  .accessSection {}

  .access-inner {}

  .access-map {}

  .address-block {}

  .access-contact {}

  .contact-card {}

  .contact-label {
    font-size: 0.7rem;
  }

  .web-btn {}

  .phone {
    text-align: center;
    margin-bottom: 3vw !important;
    margin-left: -2rem;
  }

  .phone-icon {}

  .hours-table {}

  /* =============================== */
  /* FOOTER                          */
  /* =============================== */
  .siteFooter {}

  .footer-inner {}

  .footer-logo {}

  .footer-nav {}

  .footer-watermark {}

  .footer-reserve {}

  .reserve-btn {}

  .footer-copy {}

  .desktopOnly {
    display: none;
  }

  .mobileOnly {
    display: block;
  }

  .reviewsMobile {
    position: relative;
    width: 100vw;
    overflow: hidden;
    padding: 2rem 0;
    box-sizing: border-box;
  }

  .reviewsMobileContainer {
    display: flex;
    transition: transform 0.5s ease;
  }

  .mobileCard {
    flex: 0 0 60vw;
    margin: 0 5vw;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
  }

  .mobileCard .avatar {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    margin-bottom: 0.5rem;
  }

  .mobileCard .reviewerName {
    font-weight: bold;
    margin-bottom: 0.25rem;
  }

  .mobileCard .reviewDate {
    font-size: 0.875rem;
    color: #A08F7A;
    margin-bottom: 0.5rem;
  }

  .mobileCard .stars {
    color: #D6C17E;
    margin-bottom: 0.75rem;
  }

  .mobileCard .reviewText {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .mobileNavBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  #mobilePrev {
    left: 1rem;
  }

  #mobileNext {
    right: 1rem;
  }

  .equipment-subtitle {
    font-size: 1rem;
  }

  #clinic-points .point-text {
    font-size: 0.8rem;
  }

  .equipment-grid {
    width: 90vw;
  }

  .equipment-extra {
    width: 95vw;
    gap: 1vw;
    grid-template-columns: 1fr 1fr;
  }

  .equipment-extra-info {
    width: 45vw;
    padding: 2rem 0.5rem;
  }

  .equipment-extra-info .info-title {
    font-size: 1rem;
  }

  .equipment-extra-info .info-list li {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .equipment-extra-info .info-list {
    margin-left: 6vw;
  }

  .equipment-extra-info .info-note {
    font-size: 0.8rem;
  }

  .equipment-extra-item {
    max-width: 40vw;
  }

  .equipment-desc {
    font-size: 0.8rem;
  }

  #clinic .menu-header-inner {
    height: 30vw;
  }

  #space .space-content {
    width: 100vw;
    margin: 0;
    padding: 0;
    gap: 0;
    max-width: 100vw;
  }

  #space .space-item .item-image img {
    left: 0;
    width: 100vw;
  }

  #space .space-item .item-image {
    width: 100vw;
    left: 0;
  }

  #space .space-item .item-text {
    width: 90vw;
    margin: auto;
    margin-top: 2rem !important;
    padding: 2rem 3rem;
  }


  #space .item-title {
    font-size: 1.1rem;
  }

  #space .item-description {
    font-size: 0.8rem;
  }

  #space .space-item.reversed .item-text {
    max-width: 100vw;
    width: 90vw;
    margin: auto;
  }



}




@media (max-width: 768px) {
  .desktopOnly {
    display: none;
  }

  .mobileOnly {
    display: block;
  }

  /* make each mobileCard pop against the background */
  .mobileCard {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }

  .reviewsMobile {
    position: relative;
    width: 100vw;
    overflow: hidden;
    padding: 2rem 0;
    box-sizing: border-box;
  }

  .reviewsMobileContainer {
    display: flex;
    transition: transform 0.5s ease;
  }

  .mobileCard {
    flex: 0 0 80vw;
    margin: 0 13vw;
    background: #fff;
    border-radius: 0.5rem;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
    height: 70vw;
  }

  .mobileCard .avatar {
    max-width: 14rem;
    width: 6rem;
    max-height: 8rem;
    height: 6rem;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    margin: auto;
    margin-top: -1rem;
  }

  .mobileCard .reviewerName {
    font-weight: bold;
    margin-bottom: 0.25rem;
  }

  .mobileCard .reviewDate {
    font-size: 0.875rem;
    color: #A08F7A;
    margin-bottom: 0.5rem;
  }

  .mobileCard .stars {
    color: #D6C17E;
    margin-bottom: 0.75rem;
  }

  .mobileCard .reviewText {
    font-size: 0.7rem;
    line-height: 1.2;
    text-align: justify;
  }

  .mobileNavBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  #mobilePrev {
    left: 1rem;
  }

  #mobileNext {
    right: 1rem;
  }

  .mobileFooter {
    background: #F7F1DE;
    padding: 2rem 5vw;
    padding-right: 0;
    padding-left: 0;
  }

  .footerInnerMobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* 1) Watermark at top */
  .footerWatermark {
    font-family: "Hiragino Mincho Pro", serif;
    font-size: 1.875rem;
    /* 30px */
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    width: 100%;
  }

  /* 2) Grid of nav + reserve button */
  .linksReserveGrid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: repeat(3, auto);
    gap: 1.5rem;
    width: 100%;
  }

  /* 2a) Nav items: 2 columns */
  .footerNavMobile ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
    column-gap: 2rem;
    list-style: none;
    margin: 0;
    margin-left: 3rem;
    padding: 0;
  }

  .footerNavMobile a {
    text-decoration: none;
    color: #352302;
    font-size: 1rem;
    width: 30vw;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid #D6C17E;
    display: inline-block;
  }

  /* 2b) Reserve button: spans all 3 rows */
  .reserveWrapper {
    /* grid-row: 1 / span 3; */
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
  }

  .reserveBtn {
    background: #D6C17E;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-size: 1rem;
  }

  /* 3) Logo */
  .footerLogoMobile img {
    max-width: 10rem;
    height: auto;
  }

  /* 4) Copyright */
  .footerCopyMobile {
    font-size: 0.875rem;
    color: #352302;
    text-align: center;
  }

  /* Hide the in-flow footer button if you didn’t remove it in HTML */
  .reserveWrapper,
  .footer-reserve {}

  /* Create a new sticky button */
  .reserveBtn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 2000;
    background: rgba(214, 193, 122, 0.7);
    /* your gold at 70% opacity */
    color: #fff;
    padding: 1rem 1.25rem;
    font-family: "Kozuka Gothic Pr6N", sans-serif;
    font-size: 1rem;
    border-radius: 2rem;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    transition: background .2s, opacity .2s;
  }

  .reserveBtn:hover {
    background: rgba(214, 193, 122, 0.9);
    opacity: 1;
  }

  /* 1) Take it out of the footer’s document flow */
  .reserveWrapper {
    position: fixed;
    bottom: 1.5rem;
    right: 0;
    width: 45vw;
    /* allow the button to size itself */
    height: 25vw;
    margin: 0;
    /* cancel any footer‐grid margins */
    padding: 0;
    z-index: 2000;
  }

  /* 2) Style the button itself */
  .reserveBtn {
    display: block;
    background: rgba(214, 193, 122, 0.7);
    color: #fff;
    text-decoration: none;
    padding: 2rem 4rem;
    margin-right: -3.5rem;
    margin-bottom: 8rem;
    border-radius: 4rem;
    font-family: "Kozuka Gothic Pr6N", sans-serif;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    transition: background 0.2s, opacity 0.2s;
  }

  .reserveBtn:hover {
    background: rgba(214, 193, 122, 0.9);
    opacity: 1;
  }
}

@media (max-width: 600px) {

  /* 1) Make the “window” full-width mobile viewport */
  .carouselWrapper {
    overflow-x: hidden;
  }

  /* 2) Flex gap can stay or shrink for mobile */
  .carousel {
    gap: 1rem;
    /* or 2rem if you prefer more breathing room */
  }

  /* 3) Force each card to fill 100vw so only one shows at once */
  .carouselItem {
    flex: 0 0 100vw !important;
  }

  .mobile {
    display: block;
  }
}


@media (max-width: 480px) {


  /* Hero Section */
  #staffPage #hero {}

  #staffPage #hero .hero-image {
    margin-top: 10vw;
    width: 170vw;
    object-fit: cover;
  }

  #staffPage #hero .hero-content {}

  #staffPage #hero .hero-title {
    margin-top: 3rem;
}

  #staffPage #hero .hero-subtitle {}

  /* Main Staff Section */
  #staffPage .saiwai-section {}

  #staffPage .saiwai-section .saiwai-header {}

  #staffPage .saiwai-section .saiwai-header h2 {
    width: 100vw;
    font-size: 2.1rem;
    letter-spacing: 0.1vw;
    top: -3.5rem;
    left: -2rem;
  }

  /* Director Block (院長) */
  #staffPage .saiwai-section .saiwai-block.director-block {}

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-inner {
    gap: 0vw;
  }

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-text {}

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-text h3 {
    font-size: 1.5rem;
    height: 5rem;
  }

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-text p {
    font-size: 0.8rem;
    max-width: 80vw;
    width: 80vw;
  }

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-img {
    width: 100vw;
  }

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-img img {
    max-width: 60vw;
  }

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-img .saiwai-block-text h3 {
    font-size: 1.4rem;
    margin-top: 1rem;
  }

  #staffPage .saiwai-section .saiwai-block.director-block .saiwai-block-img .saiwai-block-text .subtitle {
    font-size: 1.1rem;
  }

  /* Director Block - Specific Aoyagi Tag */
  #staffPage .saiwai-section #AoyagiTag {}

  .newtitle {}

  span.accent {}

  /* Chairman Block (理事長) */
  #staffPage .saiwai-section .saiwai-block.chairman-block {}

  #staffPage .saiwai-section .saiwai-block.chairman-block .saiwai-block-inner.reverse {}

  #staffPage .saiwai-section .saiwai-block.chairman-block .saiwai-block-img {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    align-content: stretch;
  }

  #staffPage .saiwai-section .saiwai-block.chairman-block .saiwai-block-img img {}

  #staffPage .saiwai-section .saiwai-block.chairman-block .saiwai-block-img .saiwai-block-text h3 {
    z-index: 999;
    font-size: 1.5rem;
  }

  #staffPage .saiwai-section .saiwai-block.chairman-block .saiwai-block-img .saiwai-block-text .subtitle {
    font-size: 1.1rem;
    text-align: center;
  }

  #staffPage .saiwai-section .saiwai-block.chairman-block .saiwai-block-text {
    max-width: 80vw;
    width: 80vw;
  }


  #staffPage .saiwai-section .saiwai-block.chairman-block .saiwai-block-text p {
    max-width: 80vw;
    width: 80vw;
  }

  /* Chairman Block - Specific Rijicho Tag */

  /* Staff Block (歯科衛生士) */
  #staffPage .saiwai-section #staffTag {
    width: 100vw;
    max-width: 100vw;
    height: auto;
  }

  #staffPage .saiwai-section #staffTag .saiwai-block-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    align-content: center;
  }

  #staffPage .saiwai-section #staffTag .saiwai-block-text {
    width: 80vw;
    max-width: 80vw;
    margin: auto;
    margin-top: -3rem;
  }


  #staffPage .saiwai-section #staffTag .saiwai-block-img {
    max-width: 100vw;
    margin-right: 0;
    display: flex;
    flex-direction: column;
    padding-right: 2vw;
  }

  #staffPage .saiwai-section #staffTag .saiwai-block-img img {
    width: 80vw;
    max-width: 80vw;
    margin: auto;
  }

  #staffPage .saiwai-section #staffTag .saiwai-block-img .saiwai-block-text h3 {
    width: 80vw;
    height: 7rem;
  }



  /* Staff Recruit Section */
  #staffPage .staffRecruit {
    margin-top: -8rem;
  }


  #staffPage .staffRecruit .clinic-top .clinic-image-stack {
    max-width: 100vw;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  #staffPage .staffRecruit .clinic-top .clinic-image-stack .top-img {
    position: relative;
    left: -11vw;
    width: 80vw;
  }


  #staffPage>div.side-title.side2 {
    /* top: -358rem; */
    font-size: 2rem;
    letter-spacing: 0.1vw;
    /* transform: rotate(0deg); */
    font-size: 3.1rem;
    top: 145vw;
    left: -82vw;
    width: 180vw;
  }

  #staffPage>section.saiwai-section>div.saiwai-block.chairman-block>div.saiwai-block-inner.reverse>div.saiwai-block-text>h3 {
    font-size: 1.5rem;
  }

  .saiwai-block.director-block .saiwai-block-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    /* background: #fdfaf0; */
    z-index: -1;
  }

  #aoyagiphoto {
    display: flex;
    align-items: center;
    flex-direction: column;
    align-content: center;
  }

  #aoyagiphoto img {
    position: static !important;
    width: 70vw !important;
  }

  #clinic #clinicInfo .side2 {
    font-size: 3rem;
    top: 75vw;
    left: -82vw;
    width: 180vw;
  }






}

.doctor-thought {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

.doctor-thought__img {
  flex: 0 0 45%;
}

.doctor-thought__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.doctor-thought__text {
  flex: 1;
  color: #3A2E1B;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  line-height: 1.8;
}

.doctor-thought__text h2 {
  font-family: "Hiragino Mincho Pro", serif;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #50482D;
}

.doctor-thought__text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
#accessPage #hero{

}
/* Mobile (≤768px): stack */
@media (max-width: 480px) {
#accessPage .accessSection .access-map {
    display: flex;
    aspect-ratio: 1 / 1;
    max-height: 80vw;
    height: 80vw;
    width: 80vw;
    max-width: 80vw;
    align-items: center;
    justify-content: center;
    margin-top: -4rem;
}
#accessPage .accessSection .access-contact {
    display: flex;
    justify-content: space-evenly;
    flex-direction: column-reverse;
    align-content: center;
    align-items: center;
    max-width: 100vw;
    gap: 5vw;
    width: 80vw;
}
#accessPage .accessSection .contact-card {
    flex: 10vw;
    max-width: 90vw;
    margin-bottom: 3rem;
}
#accessPage .accessSection .hours-table {
    flex: 40vw;
    max-width: 100vw;
    max-height: 10vw;
}
#accessPage .saiwai-header h2 {
    background: none;
    top: -3.5rem;
    font-size: 2rem;
    z-index: 999;
    width: 90vw;
    letter-spacing: 0.2vw;
}
#accessPage > section.accessSection > div.accessPage-inner > div.access-contact > table > thead > tr > th:nth-child(1){
  width: 20vw;
}
#accessPage > section.accessSection > div.accessPage-inner > div.access-contact > table > tbody > tr > td:nth-child(1){
  width: 20vw;
  margin-left: 0;
  padding-left: 0;
}
#accessPage > section.accessSection > div.accessPage-inner > div.access-contact > table > tbody{
  /* max-height: 15vw; */
}
  .doctor-thought {
    flex-direction: column;
    margin: 2rem auto;
    gap: 1.5rem;
  }
  #accessPage #hero{
  margin-top: 10vw;
  margin-bottom: -1rem;
}
    #accessPage #hero img {
}
#access > div > table > thead > tr{
  margin-left: 1rem;
}
  .doctor-thought__img {
    flex: none;
    width: 100%;
  }

  .doctor-thought__text h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .doctor-thought__text p {
    font-size: 0.8rem;
  }
.sr-heading {
    font-family: "Hiragino Mincho Pro", serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: #3a2e1b;
    text-align: center;
    margin: auto;
    margin-bottom: 0.5rem;
}
.sr-card-img img {
    width: 100%;
    height: 50vw;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: 50% 25%;
    /* border-radius: 0.5rem; */
    margin-bottom: 1rem;
}
.sr-card-text {
    color: #000;
    font-family: "Kozuka Gothic Pr6N";
    font-size: 0.8rem;
    line-height: 2;
    padding-bottom: 1rem;
}
#staffPage > section.saiwai-section > div:nth-child(6) > div.saiwai-block-inner.reverse.lineup{

}

}
#staffPage > section.saiwai-section > div:nth-child(6) > div.saiwai-block-inner.reverse.lineup{
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile {
  display: none;
}
.sticky-reserve {
  position: fixed;
  top: 50%;
  right: -1rem;
  transform: translateY(-50%);
  background: rgba(214, 193, 126, 0.7); /* same gold, 70% opacity */
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1000;
  text-decoration: none;
}

/* keep the phone icon in line */
.sticky-reserve .phone-icon img {
  width: 1em;
  height: auto;
}