/*
Theme Name: Vista Clinic
Theme URI: 
Author: 
Author URI: 
Description: Vista Clinic WordPress Theme
Version: 1.0.0
License: 
License URI: 
Tags: 
Text Domain: vistaclinic
*/
:root {
  --color-bg: #ffffff;
  --color-bg-soft: #fbfaf8;
  --color-band: #eeecea;
  --color-warm: #efe3d8;
  --color-text: #422D2D;
  --color-muted: #7b6b66;
  --color-accent: #7b5146;
  --color-accent-dark: #4a2b2b;
  --color-line: rgba(88, 63, 55, 0.18);
  --color-white: #ffffff;
  --shadow-soft: 0 22px 60px rgba(75, 55, 47, 0.12);
  --shadow-card: 0 16px 36px rgba(75, 55, 47, 0.1);
  --radius-lg: 32px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --font-en: "Afacad Flux", sans-serif;
  --font-ja: "Noto Sans JP", sans-serif;
  --header-height: 164px;
  /* First view image: replace images/hero-image.jpg with the final clinic photo. */
  --hero-image-1: url("images/hero-image_re_1.jpg");
  --hero-image-2: url("images/hero-image_re_2.jpg");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-bg);
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
}


.section-padding {
  padding: clamp(80px, 10vw, 150px) 0;
}


.section-band {
  background: radial-gradient(70.83% 70.83% at 29.17% 50.13%, #FDFBFB 0%, #EBEDEE 100%);
}

.section-band-warm {
  background: conic-gradient(from 55deg at 50% 50%, #FDFCFB 0deg, #E2D1C3 360deg);
}

.section-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.section-grid--center {
  align-items: center;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--color-text);
  font-family: var(--font-en);
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
}

.section-title {
  margin: 0 0 24px;
  color: var(--color-text);
  font-size: clamp(1.05rem, 1.65vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.section-copy {
  margin: 0;
  color: var(--color-muted);
}

.btn-primary-soft,
.btn-outline-soft,
.btn-text,
.btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.45rem;
  border-radius: 999px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.btn-primary-soft {
  color: var(--color-white);
  background: linear-gradient(135deg, #8b655a, #5d3936);
  box-shadow: 0 14px 30px rgba(92, 57, 54, 0.22);
}

.btn-primary-sharp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.45rem;
  border-radius: 5px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease;
  color: var(--color-white);
  background: linear-gradient(135deg, #8b655a, #5d3936);
  box-shadow: 0 14px 30px rgba(92, 57, 54, 0.22);
  text-decoration: none;
}

.btn-primary-sharp:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.btn-reservation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  min-height: 64px;
  padding: 1rem 2rem;
  border-radius: 999px;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: var(--color-white);
  background: linear-gradient(135deg, #ff8c82 0%, #bf2f66 100%);
  box-shadow: 0 14px 28px rgba(101, 44, 50, 0.22);
  text-decoration: none;
}

.btn-reservation::after {
  content: "→";
  margin-left: 12px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.btn-reservation:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(101, 44, 50, 0.32);
}

.btn-reservation:hover::after {
  transform: translateX(6px);
}

.btn-outline-soft {
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.btn-text {
  min-height: 38px;
  padding: 0.62rem 1.05rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.55);
  font-size: 0.86rem;
}

.btn-line {
  color: var(--color-white);
  background: #38c96d;
  box-shadow: 0 12px 28px rgba(56, 201, 109, 0.26);
}

.btn-primary-soft:hover,
.btn-outline-soft:hover,
.btn-text:hover,
.btn-line:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  color: var(--color-white);
  background: transparent;
  transition: height 0.35s ease, transform 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.site-header.is-scrolled {
  height: 142px;
  transform: none;
  color: var(--color-text);
  background: transparent;
  backdrop-filter: none;
}

.site-header.is-scrolled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 102px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: -1;
}

.site-header__inner {
  display: block;
  height: 100%;
  padding: 0 clamp(18px, 4vw, 58px);
}

.site-header__top {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 390px) minmax(0, 1fr) auto;
  gap: clamp(12px, 2vw, 40px);
  align-items: center;
  height: 102px;
}

.site-header__top::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: 102px;
  background: rgba(255, 255, 255, 0);
  content: "";
  transition: background-color 0.45s ease, box-shadow 0.45s ease, backdrop-filter 0.45s ease;
}

.site-header.is-scrolled .site-header__top::before {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 -1px 0 rgba(88, 63, 55, 0.08);
  backdrop-filter: blur(16px);
}

.site-header__brand {
  position: relative;
  display: block;
  width: min(220px, 100%);
  aspect-ratio: 338 / 74;
}

.site-header__logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 22px rgba(70, 44, 38, 0.16));
  transition: opacity 0.55s ease, filter 0.55s ease;
}

.site-header__logo--light {
  opacity: 1;
}

.site-header__logo--dark {
  opacity: 0;
}

.site-header.is-scrolled .site-header__logo--light {
  opacity: 0;
}

.site-header.is-scrolled .site-header__logo--dark {
  opacity: 1;
  filter: drop-shadow(0 8px 22px rgba(255, 255, 255, 0.2));
}

.site-header__info {
  justify-self: end;
  text-align: right;
  text-shadow: 0 2px 12px rgba(64, 42, 36, 0.22);
  transition: text-shadow 0.35s ease;
}

.site-header__info p {
  margin: 0;
  font-weight: 500;
  line-height: 1.65;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  white-space: nowrap;
}

.site-header__contact {
  display: flex;
  align-items: center;
  min-height: 52px;
  overflow: hidden;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #ff8c82 0%, #bf2f66 100%);
  box-shadow: 0 12px 24px rgba(101, 44, 50, 0.18);
  font-weight: 700;
  white-space: nowrap;
}

.site-header__closed,
.site-header__tel {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 clamp(0.5rem, 1vw, 1.1rem);
}

.site-header__closed {
  padding-left: clamp(0.5rem, 1vw, 1rem);
  padding-right: clamp(0.5rem, 1vw, 0.95rem);
  font-size: clamp(0.8rem, 1vw, 0.96rem);
}

.site-header__tel {
  gap: 0.46rem;
  padding-left: clamp(0.4rem, 1vw, 0.82rem);
  font-family: var(--font-en), var(--font-ja);
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
}

.site-header__tel img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.site-footer__brand {
  display: inline-flex;
  line-height: 1.2;
}

.site-header__brand-main,
.site-footer__brand span {
  font-family: var(--font-en);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0;
}

.site-header__brand-sub,
.site-footer__brand small {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.site-header__nav {
  display: flex;
  justify-content: flex-end;
  min-height: 62px;
  border-top: 0;
}

.site-header__nav::before {
  position: absolute;
  top: 102px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.72);
  content: "";
  transition: top 0.35s ease, background-color 0.35s ease;
}

.site-header.is-scrolled .site-header__nav::before {
  top: 102px;
  background: rgba(88, 63, 55, 0.16);
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--color-white);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(64, 42, 36, 0.2);
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.site-header.is-scrolled .site-header__info,
.site-header.is-scrolled .site-header__menu {
  text-shadow: none;
}

.site-header.is-scrolled .site-header__info {
  color: var(--color-text);
}

.site-header.is-scrolled .site-header__menu {
  color: var(--color-text);
}

.site-header__menu a {
  position: relative;
  padding: 0.5rem 0;
}

.site-header__menu a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #d84473;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-header__menu a:hover {
  color: #d84473;
}

.site-header__menu a.is-current {
  color: #d84473;
}

.site-header__menu a.is-current::after {
  transform: scaleX(1);
}

.site-header__menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__sns-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.site-header__sns-icon::after {
  display: none;
}

.site-header__sns-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.site-header__sns-icon:hover {
  transform: translateY(-2px);
}

.site-header__sns-icon:hover img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(1582%) hue-rotate(311deg) brightness(89%) contrast(91%);
}

.site-header--subpage .site-header__sns-icon img,
.site-header.is-scrolled .site-header__sns-icon img {
  filter: brightness(0) saturate(100%) invert(18%) sepia(11%) saturate(2124%) hue-rotate(314deg) brightness(94%) contrast(88%);
}

.site-header--subpage .site-header__sns-icon:hover img,
.site-header.is-scrolled .site-header__sns-icon:hover img {
  filter: brightness(0) saturate(100%) invert(37%) sepia(74%) saturate(1582%) hue-rotate(311deg) brightness(89%) contrast(91%);
}

.site-header__menu-reserve {
  display: none;
}

.site-header__reserve {
  min-width: 116px;
  min-height: 42px;
  padding: 0.7rem 1.15rem;
}

.site-header__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.float-buttons {
  position: fixed;
  top: max(24px, calc(160px - var(--scroll-y, 0px)));
  right: clamp(24px, 1vw, 76px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.line-float,
.web-float {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.line-float {
  color: #31bd69;
}

.line-float:hover {
  color: #20a958;
  transform: translateY(-4px);
}

.web-float {
  color: #bf2f66;
}

.web-float:hover {
  color: #ff8c82;
  transform: translateY(-4px);
}

.line-float__icon,
.web-float__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
}

.line-float__icon {
  background: transparent;
  box-shadow: 0 12px 30px rgba(35, 111, 71, 0.16);
}

.web-float__icon {
  background: linear-gradient(135deg, #ff8c82 0%, #bf2f66 100%);
  box-shadow: 0 12px 30px rgba(191, 47, 102, 0.25);
}

.line-float__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.line-float__text {
  color: #31bd69;
  font-size: 0.85rem;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

.web-float__text {
  color: #bf2f66;
  font-size: 0.9rem;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.5);
}

.site-header__toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--color-accent-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(38deg);
}

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

.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-38deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  color: var(--color-white);
  background: #cab8ac;
}

.hero__bg,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__bg {
  background-position: center;
  background-size: cover;
  filter: saturate(0.92);
  animation: heroMotion 18s ease-in-out infinite alternate;
}

.hero__bg--1 {
  background-image: var(--hero-image-1);
}

.hero__bg--2 {
  background-image: var(--hero-image-2);
  animation: heroMotion 18s ease-in-out infinite alternate, heroCrossfade 12s infinite;
}

@keyframes heroCrossfade {

  0%,
  40% {
    opacity: 0;
  }

  50%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.hero__bg::after {
  position: absolute;
  inset: 0;
  background: rgba(117, 78, 64, 0.1);
  backdrop-filter: blur(0.4px);
  content: "";
}

.hero__overlay {
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 255, 255, 0.52), transparent 24%),
    linear-gradient(105deg, rgba(99, 66, 56, 0.28) 0%, rgba(130, 88, 72, 0.18) 42%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(247, 243, 239, 0.02), rgba(247, 243, 239, 0.16));
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--header-height));
  padding-top: 0;
  padding-right: clamp(20px, 4vw, 58px);
  padding-bottom: 78px;
  padding-left: clamp(20px, 7.8vw, 168px);
}

.hero__content {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: calc(100% - 40px);
}

.hero-content-mobile {
  display: none;
}

.hero__opening {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 16px 36px 20px;
  background: linear-gradient(135deg, #d35f79, #b52c50);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(75, 27, 36, 0.25);
  border-radius: 4px;
  line-height: 1.2;
  flex-shrink: 0;
}

.hero__opening-date {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.hero__opening-text {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  /* letter-spacingのズレ調整 */
}

.hero__lead {
  max-width: 100%;
  margin: 0;
  font-size: clamp(1.08rem, 1.25vw, 1.2rem);
  font-weight: 700;
  line-height: 2.05;
  letter-spacing: 0;
  text-shadow: 0 8px 22px rgba(55, 34, 29, 0.22);
}

.hero-main {
  position: absolute;
  right: clamp(56px, 6.9vw, 168px);
  bottom: clamp(86px, 5vw, 140px);
  width: min(860px, 50vw);
  color: var(--color-text);
}

.hero-main__heading {
  margin: 0 0 26px;
  text-align: right;
}

.hero-main__name {
  margin: 0 0 18px;
  font-family: var(--font-ja);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-shadow: 0 10px 18px rgba(63, 43, 37, 0.16);
  white-space: nowrap;
}

.hero-main__name span:first-child {
  color: #422D2D;
}

.hero-main__name span:last-child {
  color: rgba(255, 255, 255, 0.94);
}

.hero-main__access {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: clamp(22px, 2vw, 36px);
  font-weight: 700;
}

.hero-main__access-label {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(1.45rem, 1.5vw, 2.3rem);
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-shadow: 0 6px 18px rgba(63, 43, 37, 0.18);
  white-space: nowrap;
}

.hero-main__access-text {
  margin: 0;
  color: #2e2928;
  font-size: clamp(1.02rem, 1.35vw, 1.55rem);
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-align: right;
}

.hero-hours {
  position: relative;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(55, 34, 29, 0.12);
  backdrop-filter: blur(8px);
  margin-left: auto;
  max-width: 50%;
}

.hero-hours__table {
  display: grid;
  color: #2f2b2a;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  font-weight: 600;
}

.hero-hours__row {
  display: grid;
  grid-template-columns: 1fr repeat(6, 36px) 46px;
  align-items: center;
  min-height: 52px;
  border-bottom: 2px solid rgba(47, 43, 42, 0.55);
}

.hero-hours__head {
  min-height: 32px;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.hero-hours__row span {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.hero-hours__row span:first-child {
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 0;
  font-weight: 500;
  white-space: nowrap;
}

.hero-hours__row small {
  display: block;
  color: #2f2b2a;
  font-size: 0.7em;
  font-weight: 600;
}

.hero-hours__row:not(.hero-hours__head) span:not(:first-child) {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-hours__bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(auto, 0.98fr) 36px minmax(auto, 1.32fr);
  gap: clamp(6px, 0.8vw, 5px);
  align-items: center;
  padding-top: 5px;
  padding-left: 0;
}

.hero-hours__character {
  position: absolute;
  bottom: -16px;
  left: -80px;
  width: clamp(60px, 4.5vw, 90px);
  height: auto;
  filter: drop-shadow(0 8px 10px rgba(55, 34, 29, 0.12));
}

.hero-hours__closed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  line-height: 1.2;
}

.hero-hours__closed-label {
  color: #bd3036;
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-hours__closed-days {
  color: var(--color-white);
  background: #bd3036;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: clamp(0.65rem, 0.6vw, 0.8rem);
  font-weight: 700;
}

.hero-hours__closed-note small {
  font-size: 0.55em;
  display: block;
  margin-top: 4px;
  text-align: center;
}

.hero-hours__triangle {
  margin: 0;
  color: #000;
  text-align: center;
  font-size: clamp(0.8rem, 1vw, 1.2rem);
  line-height: 1;
}

.hero-hours__sunday {
  display: flex;
  flex-direction: column;
}

.hero-hours__sunday p {
  margin: 0;
  padding: 8px clamp(6px, 1vw, 12px);
  color: #2f2b2a;
  font-size: clamp(0.75rem, 0.85vw, 0.9rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.hero-hours__sunday p+p {
  border-top: 2px solid rgba(47, 43, 42, 0.78);
}

.hero-hours__sunday small {
  display: block;
  font-size: 0.7em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.schedule-card {
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 70px rgba(62, 44, 38, 0.24);
  color: var(--color-text);
}

.schedule-card__label {
  margin: 0;
  color: var(--color-accent);
  font-family: var(--font-en);
  font-size: 1.15rem;
}

.schedule-card__title {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 600;
}

.schedule-table {
  display: grid;
  gap: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(65, 44, 39, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.44);
  font-size: 0.82rem;
}

.schedule-table__row {
  display: grid;
  grid-template-columns: minmax(86px, 1.4fr) repeat(7, minmax(22px, 0.6fr));
  align-items: center;
}

.schedule-table__row+.schedule-table__row {
  border-top: 1px solid rgba(65, 44, 39, 0.12);
}

.schedule-table span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.45rem 0.35rem;
  color: var(--color-text);
  line-height: 1.35;
}

.schedule-table span:first-child {
  justify-content: flex-start;
  padding-left: 0.8rem;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.schedule-table__head span {
  min-height: 32px;
  color: var(--color-muted);
  font-weight: 600;
}

.schedule-card__note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  color: var(--color-white);
  font-size: 0.78rem;
  font-weight: 600;
}

.schedule-card__note span {
  display: inline-flex;
  padding: 0.48rem 0.75rem;
  border-radius: 999px;
  background: rgba(74, 43, 43, 0.78);
}

.news {
  padding: clamp(92px, 8vw, 140px) 0 clamp(84px, 7vw, 120px);
  background: #fff;
}

.news__grid {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(42px, 4.4vw, 78px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.news__heading .section-kicker {
  margin-bottom: 12px;
  font-size: clamp(2.4rem, 3.8vw, 3.45rem);
  line-height: 0.9;
  letter-spacing: 0.1em;
}

.news__heading .section-title {
  margin-bottom: 20px;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 46px;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(66, 45, 45, 0.18);
  color: var(--color-text);
  background: transparent;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.news__button:hover {
  border-color: var(--color-text);
  color: #DE8B8E;
  transform: translateY(-2px);
}

.news__list {
  display: grid;
}

.news-item {
  display: grid;
  grid-template-columns: 20px 104px 136px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(66, 45, 45, 0.72);
}

.news-item:first-child {
  padding-top: 0;
}

.news-item__icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.news-item time {
  color: var(--color-text);
  font-family: var(--font-en), sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.news-item__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 1rem;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.news-item__category--important {
  background: #DE8B8E;
}

.news-item__category--general {
  background: #8BC6DE;
}

.news-item a {
  color: var(--color-text);
  font-size: 1em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.news-item a:hover {
  color: #DE8B8E;
}

.news-item__excerpt {
  grid-column: 4 / -1;
  margin: -8px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.75;
}

.news-item__excerpt p {
  margin: 0;
}

.news-item__excerpt a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.news-item__excerpt a:hover {
  color: #DE8B8E;
}

.news-item__more {
  grid-column: 4 / -1;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: -4px;
  color: var(--color-accent);
  font-size: 0.85em !important;
  font-weight: 600;
  transition: color 0.3s ease;
}

.news-item__more span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.news-item__more:hover {
  color: #DE8B8E;
}

.news-item__more:hover span {
  transform: translateX(4px);
}

.information {
  padding: clamp(110px, 8vw, 150px) 0 clamp(112px, 9vw, 170px);
}

.information__grid {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: clamp(54px, 6vw, 96px);
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

.information__heading {
  padding-top: 4px;
}

.information__heading .section-kicker {
  margin-bottom: 15px;
  font-size: clamp(2.4rem, 3.8vw, 3.45rem);
  letter-spacing: 0.1em;
}

.information__heading .section-title {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 1.75vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.information__heading .section-copy {
  color: var(--color-text);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 2.05;
}

.information__cards {
  display: grid;
  gap: 52px;
}

.info-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 118px;
  border: 1px solid rgba(66, 45, 45, 0.72);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 3px 5px 7px rgba(66, 45, 45, 0.22);
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.info-card span {
  color: var(--color-text);
  font-size: clamp(1.35rem, 2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.info-card:hover {
  background: #fffffF;
  box-shadow: 5px 8px 14px rgba(66, 45, 45, 0.2);
  transform: translateY(-4px);
}

.doctor {
  padding: clamp(120px, 8vw, 170px) 0 clamp(126px, 8.8vw, 180px);
  background: #fff;
}

.doctor__grid {
  display: grid;
  grid-template-columns: minmax(300px, 395px) minmax(0, 760px);
  gap: clamp(58px, 6vw, 96px);
  align-items: stretch;
  justify-content: center;
  max-width: 1180px;
  margin: 0 auto;
}

.doctor__image {
  display: block;
  overflow: hidden;
  height: 100%;
}

.doctor__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.doctor__body {
  max-width: 760px;
}

.doctor__body .section-kicker {
  margin-bottom: 20px;
  font-size: clamp(3rem, 4.4vw, 4rem);
  letter-spacing: 0.12em;
}

.doctor__body .section-title {
  margin-bottom: 44px;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  letter-spacing: 0.06em;
}

.doctor__message {
  color: var(--color-text);
  font-size: clamp(0.94rem, 1vw, 1.03rem);
  font-weight: 500;
  line-height: 2.05;
}

.doctor__message p {
  margin: 0;
}

.doctor__signature {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 28px;
  margin: 28px 0 36px;
  color: var(--color-text);
  text-align: right;
}

.doctor__signature-clinic {
  padding-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1;
}

.doctor__signature-name {
  display: inline-grid;
  gap: 4px;
  text-align: center;
}

.doctor__signature-name span {
  font-size: clamp(2rem, 2.8vw, 2.55rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
}

.doctor__signature-name small {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
}

.doctor__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 236px;
  min-height: 58px;
  margin-left: auto;
  border-radius: 5px;
  color: #fff;
  background: #82AA98;
  font-size: 1.26rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.doctor__button span {
  margin-left: 10px;
  font-size: 1.45rem;
}

.doctor__button:hover {
  color: #fff;
  background: #719c89;
  box-shadow: 0 12px 26px rgba(66, 45, 45, 0.12);
  transform: translateY(-3px);
}

section.column {
  position: relative;
  overflow: hidden;
  padding: clamp(112px, 8.5vw, 160px) 0 clamp(96px, 8vw, 150px);
  background: url("images/column-back.jpg") center/cover no-repeat;
}

section.column::after {
  position: absolute;
  right: -8%;
  bottom: 0;
  width: 64%;
  height: 47%;
  background: rgba(255, 255, 255, 0.82);
}

.column__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(190px, 245px) minmax(0, 1fr);
  gap: clamp(48px, 4.6vw, 78px);
  width: min(1320px, calc(100% - 40px));
  margin: 0 0 0 max(20px, calc((100vw - 1120px) / 2));
}

.column__side {
  padding-top: 6px;
}

.column__side .section-kicker {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 3.8vw, 3.45rem);
  letter-spacing: 0.1em;
}

.column__side .section-title {
  margin-bottom: 24px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.column__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.column__button:hover {
  color: #fff;
  background: rgba(66, 45, 45, 0.34);
  transform: translateY(-2px);
}

.column__controls {
  margin-top: 36px;
}

.slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 2.2rem;
  line-height: 1;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(-4px);
}

.column__slider-wrap {
  min-width: 0;
  margin-right: calc((100vw - min(1320px, calc(100vw - 40px))) / -2);
  overflow: visible;
  clip-path: inset(-100vmax -100vmax -100vmax 0);
}

.column__slider {
  margin-right: -120px;
}

.column__slider .slick-list {
  overflow: visible;
}

.column__slider .slick-track {
  display: flex;
}

.column__slider .slick-slide {
  height: auto;
  margin-right: clamp(28px, 3vw, 48px);
}

.column-card {
  width: clamp(270px, 21vw, 360px);
}

.column-card a {
  display: block;
}

.column-card__image {
  display: block;
  overflow: hidden;
  background: #d8d6d6;
  box-shadow: 4px 8px 8px rgba(66, 45, 45, 0.2);
}

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

.column-card:hover img {
  opacity: 0.34;
  transform: scale(1.06);
}

.column-card__title {
  display: block;
  margin-top: 18px;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.column-card time {
  display: block;
  margin-top: 4px;
  color: var(--color-text);
  font-family: var(--font-en), sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
}

.map {
  width: 100%;
  height: clamp(360px, 48vw, 560px);
  background: #d5d5d5;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) sepia(0.08);
}

.access__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 1.4fr);
  gap: clamp(42px, 6vw, 64px);
  align-items: stretch;
}

.access__logo {
  margin: 0 auto;
  max-width: 500px;
}

.access__logo img {
  max-width: 100%;
  height: auto;
}

.access__sub {
  margin: 8px 0 0;
  color: var(--color-accent-dark);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-align: left;
}

.access__departments {
  margin: 24px 0 0;
  color: var(--color-text);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.access__heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 32px 0 16px;
}

.access__heading .en {
  font-family: var(--font-en);
  font-size: 2.8rem;
  color: var(--color-accent-dark);
  line-height: 1;
  letter-spacing: 0.1em;
}

.access__heading .ja {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}

.access__heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--color-muted);
}

.access__address {
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.access__station {
  margin: 24px 0 0;
  padding: 1.2rem 1.2rem;
  background: linear-gradient(135deg, #d35f79, #b52c50);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.8;
  text-align: center;
}

.access__station p {
  margin: 0;
  font-size: 1.2rem;
}

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

.access__schedule-wrap {
  border: 1px solid #aea19d;
  background: #fff;
  padding: 16px 28px;
}

.access__schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.95rem;
  color: var(--color-text);
}

.access__schedule-table th {
  padding: 4px 4px 10px;
  font-weight: 700;
  border-bottom: 1px solid #554440;
}

.access__schedule-table td {
  padding: 8px 4px;
  border-bottom: 1px solid #dcd5d2;
}

.access__schedule-table tr:last-child td {
  border-bottom: 1px solid #554440;
}

.access__schedule-table td:first-child {
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.access__schedule-table td small {
  display: block;
  font-size: 0.72em;
  font-weight: 500;
  margin-top: 2px;
}

.access__schedule-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  justify-content: center;
}

.access__schedule-bottom .closed-label {
  background: #463430;
  color: #fff;
  padding: 8px 16px;
  font-weight: 700;
  border-radius: 4px;
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.1;
}

.access__schedule-bottom .closed-label .closed-note {
  font-size: 0.6em;
}

.access__schedule-bottom .triangle {
  color: #463430;
  font-size: 1.2rem;
}

.access__schedule-bottom .sunday-hours {
  display: flex;
  gap: 16px;
  border-left: 1px solid #aea19d;
  padding-left: 16px;
}

.access__schedule-bottom .sunday-hours p {
  margin: 0;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: nowrap;
}

.access__schedule-bottom .sunday-hours small {
  display: block;
  font-size: 0.75em;
  font-weight: 500;
}

.access__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.access__contact-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.access__contact-left .tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 2.2rem;
  color: var(--color-text);
  font-weight: 500;
}

.access__contact-left .tel img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.access__contact-left .sns {
  display: flex;
  gap: 16px;
}

.access__contact-left .sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.access__contact-left .sns a:hover {
  transform: translateY(-2px);
}

.access__contact-left .sns img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.access__contact-right {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 16px;
  width: 100%;
  flex-wrap: wrap;
}

.access__contact-right .btn-web,
.access__contact-right .btn-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  padding: 10px 24px;
  border-radius: 99px;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-ja);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: auto;
  min-width: 260px;
  flex: 1;
  max-width: 320px;
}

.access__contact-right .btn-line {
  background: #39c869;
  box-shadow: 0 8px 24px rgba(57, 200, 105, 0.28);
}

.access__contact-right .btn-web {
  background: linear-gradient(135deg, #ff8c82 0%, #bf2f66 100%);
  box-shadow: 0 8px 24px rgba(191, 47, 102, 0.28);
}

.access__contact-right .btn-web:hover,
.access__contact-right .btn-line:hover {
  transform: translateY(-3px);
}

.access__contact-right .btn-line:hover {
  box-shadow: 0 12px 28px rgba(57, 200, 105, 0.35);
}

.access__contact-right .btn-web:hover {
  box-shadow: 0 12px 28px rgba(191, 47, 102, 0.35);
}

.access__contact-right .btn-web svg,
.access__contact-right .btn-line img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

@media (max-width: 991.98px) {
  .access__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }


}

@media (max-width: 767.98px) {
  .access__schedule-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px 16px;
    align-items: center;
  }

  .access__schedule-bottom .closed-label {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }

  .access__schedule-bottom .sunday-hours {
    border-left: none;
    padding-left: 0;
    width: 100%;
    margin-top: 0;
  }

  .access__schedule-wrap {
    padding: 16px;
  }

  .access__schedule-table th,
  .access__schedule-table td {
    padding: 8px 2px;
    font-size: 0.85rem;
  }

  .access__logo {
    font-size: 3rem;
  }

  .access__station {
    padding: 0.4rem;
  }
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.5);
}

.site-footer__inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 64px;
  padding-bottom: 64px;
  gap: clamp(40px, 8vw, 120px);
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-footer__char {
  width: clamp(80px, 12vw, 110px);
  height: auto;
}

.site-footer__brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__logo {
  width: clamp(200px, 28vw, 290px);
  height: auto;
  margin-bottom: 0;
}

.site-footer__sub {
  margin: 0;
  font-weight: 700;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  color: var(--color-accent-dark);
  letter-spacing: 0.25em;
}

.site-footer__deps {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.8vw, 0.9rem);
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.site-footer__nav {
  display: flex;
  gap: clamp(32px, 6vw, 64px);
  margin-top: 12px;
}

.site-footer__nav .nav-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.site-footer__nav .nav-col>a {
  position: relative;
  color: var(--color-text);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
  display: inline-block;
  width: fit-content;
}

.site-footer__nav .nav-col>a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--color-accent-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.site-footer__nav .nav-col>a:hover {
  color: var(--color-accent-dark);
}

.site-footer__nav .nav-col>a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.site-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.site-footer__sns a:hover {
  transform: translateY(-2px);
}

.site-footer__sns img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.site-footer__copy {
  margin: 0;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.75);
  background: var(--color-accent-dark);
  text-align: center;
  font-family: var(--font-en);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes heroMotion {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.09) translate3d(-1.4%, 1%, 0);
  }

  100% {
    transform: scale(1.06) translate3d(1.2%, -1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* ノートPC・縦幅の小さいディスプレイ向け調整 */
@media (max-width: 1440px) and (min-width: 1025px),
(max-height: 850px) and (min-width: 1025px) {
  :root {
    --header-height: 80px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header.is-scrolled,
  .site-header.is-scrolled::after {
    height: 70px;
  }

  .site-header__top,
  .site-header__top::before {
    height: 70px;
  }

  .site-header__nav::before,
  .site-header.is-scrolled .site-header__nav::before {
    top: 70px;
  }

  .hero__inner {
    padding-top: 15px;
    padding-left: clamp(10px, 4vw, 80px);
  }

  .site-header__brand {
    width: 180px;
  }

  .site-header__brand-main {
    font-size: 1.1rem;
  }

  .site-header__brand-sub {
    font-size: 0.55rem;
  }

  .site-header__menu a {
    font-size: 0.8rem;
    padding: 0 8px;
  }

  .site-header__info p {
    font-size: 0.75rem;
  }

  .site-header__closed {
    font-size: 0.7rem;
    min-height: 36px;
  }

  .site-header__tel {
    font-size: 0.95rem;
    min-height: 36px;
  }

  .site-header__contact {
    min-height: 36px;
  }

  .hero-main {
    bottom: clamp(30px, 4vh, 60px);
    right: clamp(100px, 10vw, 120px);
    width: min(720px, 55vw);
  }

  .hero-main__name {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    margin: 0 0 10px;
  }

  .hero-main__heading {
    margin: 0 0 16px;
  }

  .hero-main__access {
    gap: 8px;
  }

  .hero-main__access-label {
    font-size: 0.75rem;
  }

  .hero-main__access-text {
    font-size: 0.65rem;
    line-height: 1.4;
  }

  .hero-hours {
    padding: 10px 12px;
  }

  .hero-hours__table {
    font-size: 0.75rem;
  }

  .hero-hours__row {
    grid-template-columns: 1fr repeat(6, 20px) 34px;
    min-height: 32px;
  }

  .hero-hours__head {
    min-height: 24px;
    font-size: 0.7rem;
  }

  .hero-hours__head span:last-child {
    font-size: 0.66em;
  }

  .hero-hours__row:not(.hero-hours__head) span:not(:first-child) {
    font-size: 0.85rem;
  }

  .hero-hours__bottom {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-top: 6px;
    padding-left: 0;
    padding-right: 35px;
    font-size: 0.72rem;
  }

  .hero-hours__closed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: auto;
    background: transparent;
    padding-left: 0;
  }

  .hero-hours__closed-label {
    font-size: 0.72rem;
  }

  .hero-hours__closed-days {
    font-size: 0.68rem;
    padding: 3px 6px;
  }

  .hero-hours__triangle {
    font-size: 0.7rem;
    text-align: center;
  }

  .hero-hours__sunday {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: none;
    margin-left: 0;
  }

  .hero-hours__sunday p {
    padding: 0;
    font-size: 0.68rem;
    line-height: 1.3;
    white-space: normal;
    text-align: right;
  }

  .hero-hours__character {
    display: block;
    position: absolute;
    bottom: -8px;
    right: -27px;
    left: auto;
    width: 50px;
    z-index: 5;
  }

  .hero__content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
  }

  .hero__opening {
    padding: 8px 16px 10px;
    margin-bottom: 0;
  }

  .hero__opening-date {
    font-size: 0.85rem;
  }

  .hero__opening-text {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
  }

  .hero__lead {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0;
  }

  .float-buttons {
    gap: 10px;
  }

  .line-float__icon,
  .web-float__icon {
    width: 50px;
    height: 50px;
    font-size: 0.75rem;
  }

  .web-float__icon svg {
    width: 24px;
    height: 24px;
  }

  .line-float__text,
  .web-float__text {
    font-size: 0.65rem;
  }
}

@media (max-width: 1024.98px) {
  :root {
    --header-height: 92px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header.is-scrolled {
    height: 82px;
    transform: none;
  }

  .site-header.is-scrolled::after {
    height: 82px;
  }

  .site-header__inner {
    padding: 0 18px;
  }

  .site-header__top {
    grid-template-columns: minmax(170px, 240px) 44px;
    justify-content: space-between;
    height: var(--header-height);
  }

  .site-header__top::before {
    height: var(--header-height);
  }

  .site-header__info,
  .site-header__contact {
    display: none;
  }

  .site-header__toggle {
    display: block;
    position: fixed;
    top: 13px;
    right: 18px;
    z-index: 1002;
  }

  .site-header__nav {
    position: fixed;
    top: 67px;
    right: 18px;
    left: 18px;
    z-index: 1001;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    backdrop-filter: blur(18px);
    transition: max-height 0.4s ease, opacity 0.25s ease;
    min-height: 0;
  }

  .site-header__nav::before {
    display: none;
  }

  .site-header__nav.is-open {
    max-height: calc(100vh - var(--header-height) - 40px);
    max-height: calc(100dvh - var(--header-height) - 40px);
    overflow-y: auto;
    opacity: 1;
  }

  .site-header__menu {
    display: grid;
    gap: 0;
    padding: 16px;
    color: var(--color-text);
    text-shadow: none;
    width: 100%;
    text-align: center;
  }

  .site-header__menu a {
    display: block;
    font-size: 1.1rem;
  }

  .site-header__sns-icon img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(11%) saturate(2124%) hue-rotate(314deg) brightness(94%) contrast(88%);
  }

  .site-header__menu-reserve {
    display: block;
  }

  .site-header__menu-reserve a {
    margin-top: 8px;
    border-radius: 999px;
    color: var(--color-white);
    background: linear-gradient(135deg, #8b655a, #5d3936);
    text-align: center;
  }

  .hero {
    min-height: 66svh;
  }

  .hero__inner {
    display: block;
    min-height: calc(66svh - var(--header-height));
    padding-top: 0;
    padding-left: clamp(20px, 5vw, 48px);
  }

  .hero__content {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: calc(100% - 40px);
  }

  .hero__opening {
    margin-bottom: 0;
    padding: 12px 24px;
    width: auto;
    flex-shrink: 0;
  }

  .hero__lead {
    max-width: 100%;
    font-size: clamp(0.9rem, 1.8vw, 1.15rem);
  }

  .hero-main {
    right: 24px;
    bottom: 50px;
    width: calc(100% - 48px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 24px;
  }

  .hero-main__heading {
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  .hero-main__name {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    text-align: center;
  }

  .hero-main__access {
    display: block;
    margin-top: 16px;
  }

  .hero-main__access-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    line-height: 1;
    margin-bottom: 10px;
  }

  .hero-main__access-text {
    font-size: clamp(0.85rem, 1.6vw, 1rem);
    text-align: center;

  }

  .hero-hours {
    margin-left: 0;
    width: 280px;
    max-width: 100%;
    flex-shrink: 0;
    padding: 8px 10px;
  }

  .hero-hours__table {
    font-size: 0.7rem;
  }

  .hero-hours__row {
    grid-template-columns: 1fr repeat(6, 20px) 34px;
    min-height: 28px;
  }

  .hero-hours__row:not(.hero-hours__head) span:not(:first-child) {
    font-size: 0.75rem;
  }

  .hero-hours__head span:last-child {
    font-size: 0.66em;
  }

  .hero-hours__bottom {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 6px;
    padding-left: 0;
    padding-right: 30px;
    font-size: 0.65rem;
  }

  .hero-hours__closed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    min-height: auto;
    background: transparent;
    padding-left: 0;
  }

  .hero-hours__closed-label {
    font-size: 0.65rem;
  }

  .hero-hours__closed-days {
    font-size: 0.6rem;
    padding: 2px 4px;
  }

  .hero-hours__triangle {
    font-size: 0.6rem;
    margin: 0;
  }

  .hero-hours__sunday {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: none;
    margin-left: 0;
  }

  .hero-hours__sunday p {
    padding: 0;
    font-size: 0.6rem;
    line-height: 1.2;
    white-space: normal;
    text-align: right;
  }

  .hero-hours__character {
    display: block;
    position: absolute;
    bottom: -8px;
    right: -20px;
    left: auto;
    width: 45px;
    z-index: 5;
  }

  .float-buttons {
    top: 108px;
    right: 24px;
    z-index: 999;
    gap: 16px;
  }

  .line-float__icon,
  .web-float__icon {
    width: 78px;
    height: 78px;
    font-size: 1.1rem;
  }

  .web-float__icon svg {
    width: 36px;
    height: 36px;
  }

  .line-float__text,
  .web-float__text {
    font-size: 0.92rem;
  }

  .section-grid,
  .doctor__grid,
  .access__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .doctor__image {
    max-width: 33%;
    margin: 0 auto;
  }

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

  .information__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .information__cards {
    gap: 28px;
  }

  .column__inner {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
    margin-left: 24px;
  }

  .column-card {
    width: 300px;
  }
}

@media (max-width: 767.98px) {
  :root {
    --header-height: 78px;
  }

  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

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

  .site-header__inner {
    gap: 12px;
    padding: 0 14px;
  }

  .site-header__top {
    grid-template-columns: minmax(150px, 210px) 44px;
    height: var(--header-height);
  }

  .site-header__brand {
    width: min(150px, 58vw);
  }

  .site-header__nav {
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: 100svh;
    position: relative;
  }

  .hero__content {
    display: block;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
  }

  .hero-content-mobile {
    display: block;
    padding: 24px 16px 16px;
    text-align: center;
  }

  .hero-content-mobile .hero__opening {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
    padding: 14px 16px;
    border-radius: 0;
  }

  .hero-content-mobile .hero__lead {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.6;
    text-align: center;
    color: var(--color-text);
    text-shadow: none;
  }

  .hero__bg,
  .hero__overlay {
    bottom: 0;
    height: 100%;
    min-height: 100svh;
  }

  .hero__inner {
    min-height: calc(100svh - var(--header-height));
    padding-top: 8px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }



  .hero__opening {
    display: inline-flex;
    width: auto;
    margin-bottom: 10px;
    padding: 6px 14px 8px;
    font-size: 0.8rem;
  }

  .hero__opening-date {
    font-size: 0.7rem;
  }

  .hero__opening-text {
    font-size: 1rem;
  }

  .hero__lead {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.5;
    text-align: left;
  }

  .hero-main {
    position: static;
    width: 100%;
    margin-top: 0;
    display: block;
    text-align: center;
  }

  .hero-main__heading {
    margin-bottom: 4px;
    text-align: center;
  }

  .hero-main__name {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
    margin-bottom: 4px;
    text-align: center;
  }

  .hero-main__name span:last-child {
    color: rgba(255, 255, 255, 0.94);
  }

  .hero-main__access {
    display: flex;
    margin-top: 10px;
    justify-content: center;
  }

  .hero-main__access-label {
    margin-bottom: 0;
    font-size: 0.75rem;
    text-align: center;
    font-weight: 700;
  }

  .hero-main__access-text {
    font-size: 0.5rem;
    line-height: 1.4;
    text-align: left;
  }

  .hero-hours {
    padding: 6px 8px;
    border-radius: 6px;
    margin-top: 4px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .hero-hours__table {
    overflow-x: visible;
    padding-bottom: 8px;
  }

  .hero-hours__row {
    min-width: auto;
    min-height: 36px;
    grid-template-columns: 1fr repeat(7, 24px);
    gap: 2px;
  }

  .hero-hours__head {
    min-height: 28px;
    font-size: 0.75rem;
  }

  .hero-hours__row span:first-child {
    padding-left: 0;
    white-space: nowrap;
    font-size: 0.75rem;
  }

  .hero-hours__row:not(.hero-hours__head) span:not(:first-child) {
    font-size: 0.9rem;
  }

  .hero-hours__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
    padding-top: 6px;
    padding-left: 0;
    font-size: 0.72rem;
    justify-content: center;
  }

  .hero-hours__character {
    display: block;
    position: absolute;
    bottom: -8px;
    right: -10px;
    left: auto;
    width: 50px;
    z-index: 5;
  }

  .hero-hours__closed {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-height: auto;
    background: transparent;
    padding-left: 0;
  }

  .hero-hours__closed-label {
    font-size: 0.72rem;
  }

  .hero-hours__closed-days {
    font-size: 0.68rem;
    padding: 3px 6px;
  }

  .hero-hours__triangle {
    font-size: 0.7rem;
    text-align: center;
  }

  .hero-hours__sunday {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border: none;
    margin-left: 0;
  }

  .hero-hours__sunday p {
    padding: 0;
    font-size: 0.68rem;
    line-height: 1.3;
    white-space: normal;
    text-align: left;
  }

  .hero-hours__sunday p+p {
    border-top: none;
  }

  .float-buttons {
    top: 80px;
    right: 12px;
    gap: 10px;
  }

  .line-float,
  .web-float {
    gap: 8px;
  }

  .line-float__icon,
  .web-float__icon {
    width: 50px;
    height: 50px;
    font-size: 0.72rem;
  }

  .web-float__icon svg {
    width: 25px;
    height: 25px;
  }

  .line-float__text,
  .web-float__text {
    font-size: 0.6rem;
  }

  .schedule-table {
    overflow-x: auto;
  }

  .schedule-table__row {
    min-width: 420px;
  }

  .news-item {
    grid-template-columns: 18px 1fr;
    gap: 8px 12px;
    min-height: auto;
    padding: 20px 0;
  }

  .news-item time,
  .news-item__category,
  .news-item a,
  .news-item__excerpt,
  .news-item__more {
    grid-column: 2;
  }

  .news-item__icon {
    grid-row: 1 / span 5;
    margin-top: 5px;
  }

  .news-item__category {
    justify-self: start;
  }

  .info-card {
    min-height: 88px;
  }

  .doctor__image {
    max-width: 360px;
    margin: 0 auto;
  }

  .doctor__body .section-title {
    margin-bottom: 28px;
  }

  .doctor__signature {
    justify-content: flex-start;
    align-items: flex-end;
    gap: 18px;
    text-align: left;
  }

  .doctor__signature-clinic {
    padding-bottom: 10px;
    font-size: 0.92rem;
  }

  .doctor__signature-name span {
    font-size: 1.8rem;
  }

  .doctor__button {
    width: 220px;
    margin-right: auto;
    margin-left: 0;
  }

  .column {
    padding: 76px 0 90px;
  }

  .column__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    width: min(100% - 28px, 1120px);
    margin: 0 auto;
  }

  .column__side {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
  }

  .column__button {
    width: 160px;
  }

  .column__controls {
    margin-top: 0;
  }

  .slider-btn {
    width: 58px;
    height: 58px;
    font-size: 1.8rem;
  }

  .column__slider-wrap {
    margin-right: -14px;
    clip-path: none;
  }

  .column__slider {
    margin-right: -80px;
  }

  .column-card {
    width: 250px;
  }

  .map {
    height: 380px;
  }

  .access__address {
    font-size: 0.83rem;
  }

  .site-footer__nav {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}

/* ==========================================================================
   Doctor Page Styles
   ========================================================================== */

/* Hero Section */
.page-doctor {
  padding-top: 0;
}

.doctor-hero {
  position: relative;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, #EBEDEE 100%);
  padding: calc(200px + var(--header-height)) 20px 120px;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 1000px;
}

.doctor-hero__inner .page-header {
  margin-bottom: 40px;
}

.doctor-hero__message {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--color-text);
  text-align: center;
}

.doctor-hero__message p {
  margin-bottom: 0.8em;
}

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

.doctor-hero__signature .clinic-name {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 8px;
}

.doctor-hero__signature .doctor-name {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
}

.doctor-hero__signature .doctor-name strong {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

.doctor-hero__signature .doctor-name small {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* Content Section */
.doctor-content {
  background: radial-gradient(70.83% 70.83% at 29.17% 50.13%, #FDFBFB 0%, #EBEDEE 100%);
}

.doctor-content__container {
  max-width: 1200px;
}

.doctor-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .doctor-profile {
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
  }
}

@media (min-width: 992px) {
  .doctor-profile {
    grid-template-columns: 340px 1fr;
    gap: 100px;
  }
}

.doctor-profile__image {
  display: block;
  box-shadow: var(--shadow-soft);
}

.doctor-profile__image img {
  width: 100%;
  height: auto;
  display: block;
}

.doctor-section-title {
  display: inline-block;
  background: linear-gradient(90deg, #B12A5B 0%, #FF8177 100%);
  color: #fff;
  padding: 6px 16px;
  font-size: 1.1rem;
  margin-bottom: 24px;
  border-radius: 0;
  font-weight: 500;
}

.history-list-text p {
  font-size: 1rem;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: var(--color-text);
}

.doctor-separator {
  border: none;
  border-top: 1px solid var(--color-line);
  margin: 40px 0;
}

.cert-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cert-list-new li {
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 8px;
}

/* ==========================================================================
   Page Specific Layouts (Index)
   ========================================================================== */
.page-doctor__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-header {
  text-align: center;
  margin-bottom: 60px;
}

.doctor-certs {
  margin-top: 40px;
}

.fallback-index {
  padding-top: 180px;
  min-height: 70vh;
}

.fallback-index__container {
  max-width: 800px;
  margin: 0 auto;
}

.fallback-index__header {
  margin-bottom: 40px;
  text-align: center;
}

.fallback-index__title {
  font-size: 2rem;
  color: var(--color-accent);
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-list__item {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-line);
}

.post-list__title {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.post-list__title a {
  color: var(--color-text);
  text-decoration: none;
}

.post-list__meta {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.post-list__excerpt {
  color: var(--color-text);
  line-height: 1.6;
}

.post-list__readmore {
  display: inline-block;
  margin-top: 15px;
  text-decoration: none;
}

.post-list__empty {
  text-align: center;
  color: var(--color-muted);
}

/* ==========================================================================
   Single Page Styles (News & Column)
   ========================================================================== */

/* Common Content Styles */
.single-page {
  padding-top: 180px;
  min-height: 70vh;
}

.single-page__container {
  max-width: 800px;
  margin: 0 auto;
}

.single-footer {
  margin-top: 80px;
  text-align: center;
}

.single-footer .btn-primary-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 32px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
}

.single-content {
  line-height: 1.8;
  color: var(--color-text);
}

.single-content h2 {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-top: 2em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--color-line);
}

.single-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
}

.single-content p {
  margin-bottom: 1.5em;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 1.5em 0;
}

.single-content ul,
.single-content ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

/* News Specific */
.single-news__header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--color-line);
  padding-bottom: 24px;
}

.single-news__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.single-news__category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(88, 63, 55, 0.1);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
}

.single-news__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  line-height: 1.5;
}

.single-content .wp-block-paragraph a {
  text-decoration: underline;
  position: relative;
}

.single-content .wp-block-paragraph a:hover {
  color: #d84473;
}

.single-content .wp-block-paragraph a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #d84473;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

/* Column Specific */
.single-column__header {
  text-align: center;
  margin-bottom: 40px;
}

.single-column__category {
  display: inline-block;
  padding: 4px 16px;
  background: var(--color-accent);
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 16px;
}

.single-column__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--color-text);
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.single-column__meta {
  color: var(--color-muted);
  font-size: 0.95rem;
}

.single-column__thumbnail {
  margin-bottom: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.single-column__thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   Column Archive Layout
   ========================================================================== */
.column-archive {
  padding-top: 0;
}

.column-archive__content-wrapper {
  padding-bottom: 80px;
}

.column-archive__container {
  max-width: 800px;
  margin: 0 auto;
}

.column-list {
  display: flex;
  flex-direction: column;
  margin-bottom: 60px;
}

.column-list__item {
  border-bottom: 1px solid rgba(177, 42, 91, 0.3);
}

.column-list__item:first-child {
  border-top: 1px solid rgba(177, 42, 91, 0.3);
}

.column-list__link {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  text-decoration: none;
  color: var(--color-text);
  gap: 24px;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .column-list__link {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
}

.column-list__link:hover {
  opacity: 0.7;
}

.column-list__image {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #f5f5f5;
  overflow: hidden;
}

@media (min-width: 768px) {
  .column-list__image {
    width: 320px;
  }
}

.column-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-list__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.column-list__title {
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

.column-list__date {
  font-size: 0.9rem;
  color: var(--color-muted);
  letter-spacing: 0.05em;
}

.column-archive__empty {
  text-align: center;
  padding: 60px 0;
  color: var(--color-muted);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-links a,
.nav-links span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: var(--font-en);
  font-size: 1.1rem;
  text-decoration: none;
  color: var(--color-text);
  background: var(--color-bg-soft);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  background: rgba(88, 63, 55, 0.1);
}

.nav-links .current {
  background: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
}

/* ==========================================================================
   Subpage Overrides
   ========================================================================== */
.site-header--subpage {
  color: var(--color-text);
}

.site-header--subpage .site-header__logo--light {
  opacity: 0;
}

.site-header--subpage .site-header__logo--dark {
  opacity: 1;
  filter: none;
}

.site-header--subpage .site-header__menu {
  color: var(--color-text);
  text-shadow: none;
}

.site-header--subpage .site-header__info {
  text-shadow: none;
}

/* ==========================================================================
   Single Column Styles
   ========================================================================== */
.single-column__hero {
  position: relative;
  background: linear-gradient(360deg, rgba(255, 255, 255, 0) 0%, #EBEDEE 100%);
  padding: calc(160px + var(--header-height)) 20px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-column__container {
  max-width: 800px;
  margin: 0 auto;
}

.single-column__article-header {
  margin-bottom: 40px;
}

.single-column__title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.4;
}

.single-column__meta {
  font-size: 0.9rem;
  color: var(--color-muted);
  letter-spacing: 0.1em;
}

.single-column__thumbnail {
  margin-bottom: 60px;
}

.single-column__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background-color: #f5f5f5;
  border-radius: 0;
}

.single-column__body {
  font-size: 1rem;
  line-height: 2;
  color: var(--color-text);
  margin-bottom: 80px;
  padding-top: 40px;
}

.single-column__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(177, 42, 91, 0.3);
  margin-bottom: 60px;
}

.single-column__nav-prev,
.single-column__nav-next {
  display: flex;
}

.single-column__nav-next {
  border-left: 1px solid rgba(177, 42, 91, 0.3);
}

.single-column__nav a {
  display: flex;
  align-items: flex-start;
  padding: 40px 20px;
  text-decoration: none;
  color: var(--color-text);
  width: 100%;
  gap: 16px;
  transition: opacity 0.3s ease;
}

.single-column__nav a:hover {
  opacity: 0.7;
}

.single-column__nav-next a {
  justify-content: flex-end;
  text-align: right;
}

.nav-arrow {
  font-size: 1.2rem;
  margin-top: 2px;
}

.nav-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-title {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
}

.nav-date {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.single-column__character {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
}

.single-column__character img {
  max-width: 90px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */
.breadcrumb-wrapper {
  padding: 24px 0;
  background-color: #fdfbfb;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: '>';
  margin: 0 10px;
  font-size: 0.8em;
  color: #ccc;
}

.breadcrumbs a {
  color: var(--color-text);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

/* ==========================================================================
   Disease / Symptom Page Layout
   ========================================================================== */
.disease-content {
  padding-bottom: 80px;
}

.disease-section {
  margin-bottom: 100px;
  scroll-margin-top: calc(var(--header-height) + 40px);
}

.disease-section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.disease-section__icon img {
  width: 80px;
  height: auto;
}

.disease-section__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.disease-section__title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--color-text);
  margin: 0 0 8px 0;
  line-height: 1.2;
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  padding-left: 0.2em;
  /* Offset for letter-spacing to appear visually centered */
}

.disease-section__subtitle {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin: 0;
}

.disease-grid-wrap {
  display: flex;
  max-width: 900px;
  margin: 0 auto;
}

.disease-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

@media (min-width: 600px) {
  .disease-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .disease-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.disease-grid__item {
  display: flex;
}

.disease-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 10px;
  border: 1px solid #A0948F;
  border-radius: 3px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 0.9rem;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

a.disease-btn--link:hover {
  background-color: #E6B980;
  text-decoration: none;
  color: var(--color-text);
}

span.disease-btn:hover {
  background-color: #E6B980;
  cursor: pointer;
}

.disease-grid__item--etc {
  align-items: flex-end;
  padding-bottom: 12px;
  padding-left: 8px;
}

.disease-etc {
  font-size: 0.9rem;
  color: var(--color-text);
  white-space: nowrap;
}

/* Details Section */
.disease-details {
  max-width: 900px;
  margin: 0 auto;
}

.disease-detail {
  margin-bottom: 60px;
  scroll-margin-top: calc(var(--header-height) + 40px);
}

.disease-detail__title {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.disease-detail__title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #B12A5B 0%, #FF8177 100%);
  padding: 12px 32px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  min-width: 160px;
}

.disease-detail__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #FF8177;
  opacity: 0.5;
}

.disease-detail__subtitle {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid #B12A5B;
  color: #B12A5B;
  font-size: 1.15rem;
  font-weight: 700;
}

.disease-detail__content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.disease-detail__content p {
  margin-bottom: 1em;
}

.disease-detail__content a {
  position: relative;
  color: #B12A5B;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  padding: 0 2px;
  transition: color 0.3s ease;
}

.disease-detail__content a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #d84473;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease, background 0.3s ease;
}

.disease-detail__content a:hover {
  color: #d84473;
}

.disease-detail__content a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==========================================================================
   Disease Tests & Contact
   ========================================================================== */
.disease-test-section {
  max-width: 900px;
  margin: 100px auto 0;
  text-align: center;
}

.disease-test-section__header {
  margin-bottom: 40px;
}

.disease-test-section__title {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 500;
  color: #4a3e3d;
  margin-bottom: 12px;
}

.disease-test-section__subtitle {
  font-size: 1rem;
  color: #4a3e3d;
}

.disease-test-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
}

@media (min-width: 600px) {
  .disease-test-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .disease-test-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.disease-test-grid__item span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
  padding: 12px;
  border: 1px solid #A0948F;
  border-radius: 3px;
  background: var(--color-white);
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
}

.disease-test-grid__item small {
  font-size: 0.75rem;
  margin-top: 4px;
}

.disease-test-contact {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.disease-test-contact__btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 16px 40px;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(135deg, #ff8c82 0%, #bf2f66 100%);
  box-shadow: 0 8px 16px rgba(101, 44, 50, 0.2);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.disease-test-contact__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(101, 44, 50, 0.25);
  color: var(--color-white);
  text-decoration: none;
}

.disease-test-contact__closed {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.disease-test-contact__tel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 2rem;
  line-height: 1;
}

/* ==========================================================================
   Department Layout
   ========================================================================== */
.department-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.department-nav__link {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-white);
  color: #4a3e3d;
  border: 1px solid #A0948F;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.department-nav__link:hover {
  background: #E6B980;
  border-color: #E6B980;
  color: var(--color-white);
  text-decoration: none;
}

.department-section {
  margin-bottom: 100px;
  scroll-margin-top: calc(var(--header-height) + 40px);
}

.department-header {
  margin-bottom: 40px;
  text-align: center;
}

.department-title {
  display: inline-flex;
  align-items: center;
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 700;
  color: #4a3e3d;
  position: relative;
  padding: 0 40px;
  margin: 0;
}

.department-title::before,
.department-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 2px;
  background-color: #E6B980;
}

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

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

/* ==========================================================================
   Recruit Page
   ========================================================================== */
.recruit-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.recruit-title {
  display: inline-block;
  min-width: 50%;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-line);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.recruit-text {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 2;
}

/* ==========================================================================
   Information Page
   ========================================================================== */
.page-information .department-section {
  margin-bottom: 140px;
}

.department-action {
  text-align: center;
  margin-top: 50px;
}

.disease-detail__content ul {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}

.disease-detail__content ul li {
  padding-left: 1.2em;
  text-indent: -1.2em;
  margin-bottom: 8px;
}

.disease-detail__content dl {
  margin-top: 32px;
  margin-bottom: 50px;
  background-color: var(--color-bg-soft);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.disease-detail__content dt {
  font-weight: bold;
  color: var(--color-accent);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--color-line);
  font-size: 1.1rem;
}

.disease-detail__content dd {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(88, 63, 55, 0.08);
  display: flex;
  align-items: flex-start;
}

.disease-detail__content dd::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  margin-top: 12px;
  margin-right: 12px;
}

.disease-detail__content dd:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-nav-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 2vw, 32px);
  margin-bottom: 100px;
}

.info-nav-grid .info-card {
  width: calc((100% - clamp(16px, 2vw, 32px) * 2) / 3);
}

@media (max-width: 767px) {
  .info-nav-grid .info-card {
    width: 100%;
  }
}



.info-coming-soon {
  text-align: center;
  margin-bottom: 80px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   Small Mobile Devices (<= 375px)
   ========================================================================== */
@media (max-width: 380px) {
  .site-footer__inner {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 32px;
  }

  .site-footer__brand {
    gap: 16px;
  }

  .site-footer__logo {
    width: 180px;
  }

  .site-footer__char {
    width: 60px;
  }

  .site-footer__deps {
    font-size: 0.65rem;
    margin-top: 4px;
  }

  .site-footer__sub {
    font-size: 0.6rem;
  }

  .site-footer__nav {
    gap: 16px;
  }

  .site-footer__nav .nav-col {
    gap: 12px;
  }

  .site-footer__nav .nav-col>a {
    font-size: 0.85rem;
    padding: 0.3rem 0;
  }

  .site-footer__copy {
    font-size: 0.65rem;
    padding: 12px 0;
  }

  /* Shrink float buttons further for very small screens */
  .line-float__icon,
  .web-float__icon {
    width: 44px;
    height: 44px;
  }

  .web-float__icon svg {
    width: 20px;
    height: 20px;
  }

  .line-float__text,
  .web-float__text {
    font-size: 0.65rem;
  }

  /* Access Section adjustments for very small screens */
  .access__logo img {
    max-width: 100%;
    height: auto;
    width: 250px;
    margin: 0 auto;
  }

  .access__departments {
    font-size: 0.75rem;
  }

  .access__heading .en {
    font-size: 2rem;
  }

  .access__heading .ja {
    font-size: 0.75rem;
  }

  .access__station {
    padding: 0.8rem;
  }

  .access__station p {
    font-size: 1.2rem;
  }

  .access__schedule-wrap {
    padding: 12px 10px;
  }

  .access__schedule-table th,
  .access__schedule-table td {
    padding: 4px 1px;
    font-size: 0.75rem;
  }

  .access__schedule-table td small {
    font-size: 0.65em;
  }

  .access__schedule-bottom .closed-label {
    font-size: 0.85rem;
    padding: 6px 10px;
  }

  .access__schedule-bottom .sunday-hours p {
    font-size: 0.75rem;
  }
}

/* Vaccine list styles */
.vaccine-item {
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.vaccine-name {
  display: block;
  margin-bottom: 2px;
  width: calc(100% - 18px);
}

.vaccine-price {
  display: inline-block;
  margin-left: 18px;
}

.vaccine-note {
  display: inline-block;
  margin-left: 0.5em;
}

@media screen and (min-width: 768px) {
  .vaccine-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    margin-bottom: 4px;
  }

  .vaccine-name {
    display: block;
    width: 18em;
    margin-bottom: 0;
    margin-right: 0;
    flex-shrink: 0;
  }

  .vaccine-price {
    display: block;
    width: 6em;
    text-align: right;
    padding-left: 0;
    margin-left: 0;
    flex-shrink: 0;
  }

  .vaccine-note {
    display: block;
    width: 7em;
    padding-left: 1em;
    margin-left: 0;
    flex-shrink: 0;
  }
}