/*
Theme Name: Shishido Clinic
Theme URI: https://example.com/
Author: Codex
Description: WordPress theme converted from the static Shishido Internal Medicine Clinic site.
Version: 1.0.1
Text Domain: shishido-clinic
*/

:root {
  --green: #20955b;
  --red: #e60f21;
  --white: #ffffff;
  --gray-bg: #f7f8f8;
  --green-light: #e8f5ee;
  --red-light: #fff5f5;
  --text: #333333;
  --text-mid: #555555;
  --text-light: #888888;
  --border: #e0e4e8;
  --radius: 8px;
  --header-h: 80px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s, color 0.2s;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

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

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 90px 0;
}

.section--gray {
  background-color: var(--gray-bg);
}

.section--green-light {
  background-color: var(--green-light);
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title__en {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title__ja {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin-bottom: 18px;
  color: var(--text);
}

.section-title__bar {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--green);
  margin: 0 auto;
  border-radius: 2px;
}

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

.text-bold {
  font-weight: 700;
}

.contact-schedule-note a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-60 { margin-top: 60px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }

.closed-text {
  color: var(--red);
  font-weight: 700;
}

.main-content {
  padding-top: var(--header-h);
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  line-height: 1.4;
  border: 2px solid transparent;
}

.btn--green {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--green:hover {
  background-color: #187a4a;
  border-color: #187a4a;
  opacity: 1;
}

.btn--outline-green {
  background-color: var(--white);
  color: var(--green);
  border-color: var(--green);
}

.btn--outline-green:hover {
  background-color: var(--green);
  color: var(--white);
  opacity: 1;
}

.btn--red {
  background-color: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--red:hover {
  background-color: #c00c1a;
  border-color: #c00c1a;
  opacity: 1;
}

.btn--closed {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.btn--closed:hover {
  background-color: #187a4a;
  border-color: #187a4a;
  opacity: 1;
}

.btn--outline {
  background-color: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--green);
  color: var(--green);
  opacity: 1;
}

.btn--ghost {
  background-color: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}

.btn--ghost:hover {
  background-color: rgba(255,255,255,0.25);
  opacity: 1;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: box-shadow 0.3s;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, #3baa72 100%);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

body.admin-bar .header {
  top: 32px;
}

body.admin-bar .mobile-overlay,
body.admin-bar .mobile-menu {
  top: 32px;
}

body.admin-bar .mobile-menu {
  height: calc(100vh - 32px);
}

body.admin-bar .anchor-nav {
  top: calc(var(--header-h) + 32px);
}

@media screen and (max-width: 782px) {
  body.admin-bar .header,
  body.admin-bar .mobile-overlay,
  body.admin-bar .mobile-menu {
    top: 46px;
  }

  body.admin-bar .mobile-menu {
    height: calc(100vh - 46px);
  }

  body.admin-bar .anchor-nav {
    top: calc(var(--header-h) + 46px);
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.logo img {
  height: 44px;
  width: auto;
}

.logo__name {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-list a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 3px;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--green);
  transition: width 0.2s;
}

.nav-list a:hover {
  color: var(--green);
  opacity: 1;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 2000;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text);
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.4);
  z-index: 1400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--white);
  z-index: 1500;
  padding: 96px 32px 40px;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

.mobile-menu__close svg {
  width: 28px;
  height: 28px;
}

.mobile-menu__close:hover {
  color: var(--green);
}

.mobile-menu nav ul {
  border-top: 1px solid var(--border);
}

.mobile-menu nav ul li a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu nav ul li a:hover {
  color: var(--green);
  padding-left: 8px;
  opacity: 1;
}

.mobile-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-actions .btn {
  width: 100%;
  text-align: center;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 520px;
  max-height: 820px;
  margin-top: var(--header-h);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 40, 20, 0.65) 0%,
    rgba(0, 20, 10, 0.5) 60%,
    rgba(32, 149, 91, 0.35) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 780px;
}

.hero__label {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  background-color: rgba(32, 149, 91, 0.85);
  color: var(--white);
  padding: 7px 22px;
  border-radius: 20px;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.hero__subtitle {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.88);
  margin-bottom: 6px;
}

.hero__address {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
  letter-spacing: 0.03em;
}

.hero__cta {
  display: none;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta .btn {
  width: 240px;
  white-space: nowrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.65), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  49% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.cta-section {
  position: relative;
  z-index: 10;
  background-color: transparent;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -64px;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: var(--shadow-lg);
  background-color: var(--white);
}

.cta-item {
  background-color: var(--white);
  padding: 36px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.2s;
  min-height: 164px;
  cursor: pointer;
}

.cta-item:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.cta-item:last-child {
  border-right: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.cta-item:hover {
  background-color: var(--green-light);
  box-shadow: 0 16px 32px rgba(35, 116, 84, 0.16);
  transform: translateY(-5px);
  z-index: 1;
  opacity: 1;
}

.cta-item:hover .cta-item__icon {
  background-color: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-item:hover .cta-item__title {
  color: var(--green);
}

.cta-item__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
  color: var(--green);
}
.cta-item__icon svg {
  width: 26px;
  height: 26px;
}

.cta-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}

.cta-item__desc {
  font-size: 0.775rem;
  color: var(--text-light);
  line-height: 1.5;
}

.timetable-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.timetable {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.timetable th,
.timetable td {
  border: 1px solid var(--border);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.9375rem;
}

.timetable thead th {
  background-color: var(--green);
  color: var(--white);
  font-weight: 700;
}

.timetable thead th.th-closed {
  background-color: #aaa;
}

.timetable tbody th {
  background-color: var(--gray-bg);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.timetable td.open {
  color: var(--green);
  font-weight: 700;
  font-size: 1.25rem;
}

.timetable td.closed {
  background-color: #f3f3f3;
  color: #ccc;
}

.timetable th.is-today,
.timetable td.is-today,
.hours-table th.is-today,
.hours-table td.is-today,
.fever-table th.is-today,
.fever-table td.is-today {
  background-color: rgba(0, 154, 94, 0.08);
}

.timetable thead th.is-today,
.hours-table thead th.is-today {
  background-color: rgba(0, 154, 94, 0.82);
  color: var(--white);
}

.fever-table thead th.is-today {
  background-color: rgba(209, 75, 72, 0.86);
  color: var(--white);
}

.timetable td.open.is-today,
.hours-table td.open.is-today {
  color: var(--green);
  background-color: rgba(0, 154, 94, 0.12);
}

.fever-table td.open.is-today {
  color: var(--red);
  background-color: rgba(209, 75, 72, 0.1);
}

.timetable td.closed.is-today,
.hours-table td.closed.is-today,
.fever-table td.closed.is-today {
  background-color: #eef6f1;
  color: #b8c5be;
}

.notice-box {
  margin-top: 32px;
  background-color: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.notice-box__title {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 12px;
  color: var(--green);
}

.notice-box ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--text-mid);
}

.notice-box ul li {
  margin-bottom: 8px;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.news-list {
  max-width: 820px;
  margin: 0 auto;
}

.news-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.news-item:first-child {
  border-top: 1px solid var(--border);
}

.news-date {
  min-width: 110px;
  font-size: 0.875rem;
  color: var(--text-light);
  padding-top: 2px;
  flex-shrink: 0;
}

.news-tag {
  display: inline-block;
  padding: 3px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  min-width: 72px;
  text-align: center;
  white-space: nowrap;
  background-color: var(--green);
  color: var(--white);
  flex-shrink: 0;
}

a.news-tag:hover {
  opacity: 0.82;
}

.news-tag.alert {
  background-color: var(--red);
}

.news-tag.notice {
  background-color: var(--green);
}

.news-tag.closed {
  background-color: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.news-tag.blog {
  background-color: #d3dec5;
  color: var(--text);
}

.news-title {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text);
}

.news-title:hover {
  color: var(--green);
  text-decoration: underline;
  opacity: 1;
}

.greeting-index {
  display: flex;
  gap: 64px;
  align-items: center;
}

.greeting-index__img {
  flex: 1;
  width: min(100%, 360px);
  max-width: 360px;
  aspect-ratio: 4 / 5;
  position: relative;
  z-index: 0;
}

.greeting-index__img::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(32, 149, 91, 0.24) 0%, rgba(32, 149, 91, 0.14) 52%, rgba(32, 149, 91, 0) 78%);
  filter: blur(2px);
  z-index: -1;
}

.greeting-index__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}

.greeting-index__body {
  flex: 1.5;
}

.greeting-index__lead {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--green);
}

.greeting-index__text {
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 0.9375rem;
}

.greeting-index__name {
  font-weight: 700;
  margin-top: 24px;
  font-size: 1rem;
}

.greeting-index__spec {
  font-size: 0.875rem;
  color: var(--text-light);
}

.access-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 64px;
  align-items: stretch;
}

.access-main {
  min-width: 0;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
}

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

.access-info {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
}

.access-detail {
  --access-label-width: 104px;
  --access-label-gap: 64px;
  display: grid;
  grid-template-columns: var(--access-label-width) minmax(0, 1fr);
  align-items: center;
  gap: var(--access-label-gap);
  padding: 18px 0;
  border-bottom: 1px solid var(--green-light);
  background: linear-gradient(
    90deg,
    rgba(32, 149, 91, 0.22) 0%,
    rgba(32, 149, 91, 0) 31%
  );
}

.access-detail:first-child {
  border-top: 0;
}

.access-detail:last-child {
  border-bottom: 0;
}

.access-gallery {
  position: relative;
  min-height: 700px;
}

.access-gallery__track {
  display: contents;
}

.access-gallery__item {
  position: absolute;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(
    ellipse closest-side at center,
    #000 24%,
    rgba(0, 0, 0, 0.88) 36%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.43) 63%,
    rgba(0, 0, 0, 0.24) 75%,
    rgba(0, 0, 0, 0.11) 85%,
    rgba(0, 0, 0, 0.03) 94%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse closest-side at center,
    #000 24%,
    rgba(0, 0, 0, 0.88) 36%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.43) 63%,
    rgba(0, 0, 0, 0.24) 75%,
    rgba(0, 0, 0, 0.11) 85%,
    rgba(0, 0, 0, 0.03) 94%,
    transparent 100%
  );
}

.access-gallery__item.fade-in {
  filter: blur(8px);
  transform: translateY(-12px) scale(0.98);
  transition: opacity 1.45s ease, transform 1.45s ease, filter 1.45s ease;
}

.access-gallery__item.fade-in.is-visible {
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.access-gallery__item--exterior.fade-in {
  transition-delay: 0.1s;
}

.access-gallery__item--planter.fade-in {
  transition-delay: 0.4s;
}

.access-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.06) saturate(1.08);
}

.access-gallery__item--exterior {
  top: 4%;
  right: 0;
  width: 82%;
  height: 42%;
  border-radius: 6px 72px 6px 72px;
}

.access-gallery__item--exterior img {
  object-position: center;
}

.access-gallery__item--planter {
  bottom: 4%;
  left: 0;
  width: 68%;
  height: 42%;
  border-radius: 72px 6px 72px 6px;
}

.access-gallery__item--planter img {
  object-position: center;
  transform: scale(1.3);
  transform-origin: center 42%;
}

.home-hours-flower {
  display: none;
}

.access-label {
  display: block;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}

.access-text {
  align-self: center;
  padding: 0;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.access-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
}

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

.company-table th,
.company-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
  text-align: left;
  line-height: 1.7;
}

.company-table th {
  width: 28%;
  font-weight: 700;
  color: var(--text-mid);
  background-color: var(--gray-bg);
  white-space: nowrap;
}

.clinic-overview-section {
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(rgba(20, 36, 30, 0.42), rgba(20, 36, 30, 0.42)), url("img/260129_03.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.clinic-overview-section .container {
  background-color: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  padding: 48px 52px;
  backdrop-filter: blur(2px);
}

.home-news-section {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.84)),
    url("img/clinic-planter.jpg");
  background-size: cover;
  background-position: center 52%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.home-news-section .news-item {
  border-bottom-color: rgba(54, 72, 63, 0.34);
}

.home-news-section .news-item:first-child {
  border-top-color: rgba(54, 72, 63, 0.34);
}

.clinic-overview-section .company-table th,
.clinic-overview-section .company-table td {
  border-bottom-color: rgba(90, 110, 100, 0.22);
}

.clinic-overview-section .company-table th {
  background: linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.64) 78%, rgba(255,255,255,0) 100%);
}

.page-header {
  margin-top: var(--header-h);
  background-color: var(--gray-bg);
  border-bottom: 3px solid var(--green);
  padding: 52px 0;
  text-align: center;
}

.page-header--kv {
  background-image:
    linear-gradient(135deg, rgba(0, 38, 20, 0.68), rgba(0, 0, 0, 0.42)),
    var(--page-header-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header--greeting {
  --page-header-bg: url("img/260129_33.jpg");
  background-position: center 40%;
}

.page-header--facility {
  --page-header-bg: url("img/260129_01.jpg");
  background-position: center 55%;
}

.page-header--guide {
  --page-header-bg: url("img/260129_34.jpg");
  background-position: center 42%;
}

.page-header--checkup {
  --page-header-bg: url("img/260129_14.jpg");
  background-position: center 52%;
}

.page-header--vaccine {
  --page-header-bg: url("img/vaccination-reception.jpg");
  background-position: center 48%;
}

.page-header--fever {
  --page-header-bg: url("img/260129_24.jpg");
  background-position: center 45%;
}

.page-header--contact {
  --page-header-bg: url("img/clinic-planter.jpg");
  background-position: center 64%;
}

.page-header--privacy,
.page-header--standards {
  --page-header-bg: url("img/260129_01.jpg");
  background-position: center 55%;
}

.page-header--news {
  --page-header-bg: url("img/clinic-exterior-metasequoia.jpg");
  background-position: center 78%;
}

.page-header__en {
  display: block;
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}

.page-header--kv .page-header__en {
  color: rgba(255, 255, 255, 0.9);
}

.page-header__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.page-header--kv .page-header__title {
  color: var(--white);
}

.breadcrumb {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin-top: 8px;
}

.page-header--kv .breadcrumb,
.page-header--kv .breadcrumb a {
  color: rgba(255, 255, 255, 0.86);
}

.breadcrumb a {
  color: var(--green);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.greeting-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.greeting-image {
  flex: 1;
  max-width: 360px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
  z-index: 0;
}

.greeting-image::before {
  content: "";
  position: absolute;
  inset: 18px -18px auto 18px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  background: radial-gradient(ellipse at center, rgba(32, 149, 91, 0.22) 0%, rgba(32, 149, 91, 0.13) 54%, rgba(32, 149, 91, 0) 80%);
  filter: blur(2px);
  z-index: -1;
}

.greeting-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(0,0,0,0.14);
}

.greeting-image__name {
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
  font-size: 1.0625rem;
}

.greeting-flex--landscape {
  flex-direction: column;
  gap: 0;
}

.greeting-flex--landscape .greeting-image {
  position: static;
  width: 100%;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0;
  background-color: transparent;
  border: none;
}

.greeting-flex--landscape .greeting-image::before {
  display: none;
}

.greeting-flex--landscape .greeting-image img {
  max-width: 100%;
  margin: 0 auto;
  border: none;
  border-radius: 2px;
  box-shadow: none;
}

.greeting-flex--landscape .greeting-body {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.greeting-flex--landscape .greeting-lead {
  margin-bottom: 36px;
  padding: 0;
  background-color: transparent;
  border-left: none;
  border-radius: 0;
  text-align: center;
}

.greeting-flex--landscape .greeting-lead::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  margin: 24px auto 0;
  background-color: var(--green);
}

.greeting-body {
  flex: 1.5;
}

.greeting-lead {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.65;
  margin-bottom: 32px;
  padding: 24px 28px;
  border-left: 5px solid var(--green);
  background-color: var(--green-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text);
}

.greeting-text p {
  margin-bottom: 20px;
  color: var(--text-mid);
  line-height: 1.9;
  font-size: 0.9375rem;
}

.greeting-sign {
  text-align: right;
  font-weight: 700;
  margin-top: 40px;
  color: var(--text);
  font-size: 0.9375rem;
}

.profile-box {
  max-width: none;
  margin: 0;
  background-color: var(--gray-bg);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.profile-box__title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green);
  color: var(--text);
}

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

.profile-subtitle {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text);
}

.history-list dt {
  font-weight: 700;
  color: var(--green);
  margin-top: 14px;
  font-size: 0.875rem;
}

.history-list dd {
  color: var(--text-mid);
  font-size: 0.9375rem;
  padding-left: 12px;
}

.spec-list li {
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.9375rem;
  position: relative;
}

.spec-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green);
  transform: translateY(-50%);
}

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

.facility-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.facility-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(1.1) saturate(1.12);
}

.facility-card__body {
  padding: 22px;
}

.facility-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green-light);
  color: var(--text);
}

.facility-card__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.equipment-section__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-left: 16px;
  border-left: 4px solid var(--green);
  color: var(--text);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background-color: var(--gray-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.equipment-item__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.equipment-item__icon svg {
  width: 24px;
  height: 24px;
}

.equipment-item__name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 4px;
  color: var(--text);
}

.equipment-item__desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.map-wrapper {
  position: relative;
  padding-bottom: 44%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.access-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.access-row:first-child {
  border-top: 1px solid var(--border);
}

.anchor-nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 900;
}

.anchor-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.anchor-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 32px;
  border-radius: 24px;
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.2s;
}

.anchor-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.anchor-btn:hover {
  background-color: var(--green);
  color: var(--white);
  opacity: 1;
}

.subsection-title {
  font-size: 1.1875rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 5px solid var(--green);
  color: var(--text);
  line-height: 1.5;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border: 1px solid var(--border);
  text-align: left;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.price-table thead th {
  background-color: var(--green);
  color: var(--white);
  font-weight: 700;
}

.price-table tbody th {
  background-color: var(--gray-bg);
  font-weight: 600;
}

.price-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.price-col {
  text-align: right !important;
  font-weight: 700;
  color: var(--green);
}

.checkup-items {
  margin-bottom: 32px;
}

.checkup-items__title {
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.checkup-items__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkup-items__list li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px 12px 42px;
  background-color: var(--gray-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.9375rem;
  line-height: 1.5;
}

.checkup-items__list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  color: var(--green);
  font-weight: 700;
}

.vaccine-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 24px;
  padding: 1px;
  overflow: hidden;
  list-style: none;
  background-color: var(--border);
  border-radius: var(--radius);
}

.vaccine-list__item {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 10px 16px;
  background-color: var(--white);
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
}

.vaccine-list__item::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-right: 10px;
  flex-shrink: 0;
  background-color: var(--green);
  border-radius: 50%;
}

.vaccine-list__item small {
  display: block;
  margin-top: 2px;
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 400;
}

.check-mark {
  text-align: center !important;
  font-weight: 700;
  color: var(--green);
}

.note-box {
  background-color: var(--gray-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--green);
  padding: 28px 32px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 32px;
}

.note-box__title {
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
  font-size: 0.9375rem;
}

.note-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.note-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--green);
}

.course-card {
  background-color: var(--green-light);
  border: 1px solid #b3dfc9;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.vaccine-reservation-example {
  max-width: 620px;
  margin: 0 auto 24px;
  padding: 20px 24px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-mid);
  text-align: left;
}

.vaccine-reservation-example__title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.vaccine-reservation-example__notice {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.875rem;
  font-weight: 700;
}

.vaccine-reservation-example__list {
  margin: 0;
  display: grid;
  gap: 10px;
}

.vaccine-reservation-example__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0;
  align-items: center;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.vaccine-reservation-example__row dt {
  margin: 0;
  font-weight: 700;
  color: var(--green);
  background-color: var(--green-light);
  border: 1px solid #b3dfc9;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 10px 14px;
}

.vaccine-reservation-example__row dd {
  margin: 0;
  border: 1px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 14px;
  color: var(--text-mid);
}

.vaccine-reservation-example__row dd::before {
  content: '';
}

.cta-phone-section {
  padding: 60px 0;
  text-align: center;
}

.cta-phone__title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.cta-phone__sub {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.alert-box {
  background-color: var(--red-light);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  margin-bottom: 48px;
}

.alert-box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--red);
}
.alert-box__icon svg {
  width: 40px;
  height: 40px;
}

.alert-box__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 16px;
}

.alert-box__sub {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.alert-box__text {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.symptom-wrapper {
  background-color: var(--gray-bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.symptom-wrapper--alert {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  background-color: var(--red-light);
  border: 2px solid var(--red);
}

.symptom-alert {
  color: var(--red);
}

.symptom-alert__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 30px 24px;
}

.symptom-alert__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.symptom-alert__text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

.symptom-alert__notice {
  padding: 18px 24px;
  background-color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(230, 15, 33, 0.25);
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.7;
  text-align: center;
}

.symptom-alert__notice p:first-child {
  color: #b30d1b;
  font-weight: 700;
}

.symptom-alert__notice p + p {
  margin-top: 4px;
}

.fever-symptoms-section {
  padding-bottom: 45px;
}

.fever-flow-section {
  padding-top: 45px;
}

.symptom-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.symptom-item {
  background-color: var(--white);
  padding: 16px 12px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--text);
}

.fever-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.fever-table th,
.fever-table td {
  border: 1px solid var(--border);
  padding: 14px 10px;
  text-align: center;
  font-size: 0.9375rem;
}

.fever-table thead th {
  background-color: var(--red);
  color: var(--white);
  font-weight: 700;
}

.fever-table tbody th {
  background-color: var(--gray-bg);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.fever-table td.open {
  color: var(--red);
  font-weight: 700;
  font-size: 1.25rem;
}

.fever-table td.closed {
  background-color: #f3f3f3;
  color: #ccc;
}

.process-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 0;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 58px;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
  z-index: 0;
}

.process-step:last-child::before {
  display: none;
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  margin-top: 4px;
}

.process-content {
  flex: 1;
  padding: 0 0 40px 24px;
}

.process-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 12px;
  color: var(--text);
}

.process-desc {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.note-text {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--text-light);
  background-color: var(--gray-bg);
  padding: 6px 12px;
  border-radius: 4px;
}

.checklist-box {
  background-color: var(--gray-bg);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}

.checklist-intro {
  text-align: center;
  margin-bottom: 32px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon svg {
  width: 18px;
  height: 18px;
}

.check-content__title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text);
}

.check-content__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.flow-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.flow-step {
  display: flex;
  position: relative;
}

.flow-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 58px;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

.flow-step:last-child::before {
  display: none;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-body {
  flex: 1;
  padding: 4px 0 40px 24px;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.step-label {
  font-size: 0.75rem;
  background-color: var(--green-light);
  color: var(--green);
  border: 1px solid #b3dfc9;
  padding: 2px 10px;
  border-radius: 12px;
  font-weight: 600;
}

.step-desc {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.step-note {
  margin-top: 12px;
  background-color: var(--gray-bg);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-q {
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1rem;
  color: var(--text);
}

.faq-q::before {
  content: 'Q';
  min-width: 28px;
  height: 28px;
  background-color: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.faq-a {
  padding-left: 40px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.contact-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.phone-box {
  background-color: var(--green-light);
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 48px;
}

.phone-label {
  display: inline-block;
  background-color: var(--green);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 7px 26px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.phone-number {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.phone-note {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.75;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
}

.hours-table th,
.hours-table td {
  border: 1px solid var(--border);
  padding: 12px 10px;
  text-align: center;
  font-size: 0.875rem;
}

.hours-table thead th {
  background-color: var(--green);
  color: var(--white);
  font-weight: 700;
}

.hours-table tbody th {
  background-color: var(--gray-bg);
  font-weight: 600;
  white-space: nowrap;
}

.hours-table td.open {
  color: var(--green);
  font-weight: 700;
  font-size: 1.125rem;
}

.hours-table td.closed {
  color: #ccc;
  background-color: #f5f5f5;
}

.pre-call-check {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.pre-call-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 4px solid var(--green);
  color: var(--text);
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.news-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  cursor: pointer;
  font-size: 0.875rem;
  background-color: var(--white);
  color: var(--text-mid);
  transition: all 0.2s;
  font-family: inherit;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
  opacity: 1;
}

.filter-btn.alert.active,
.filter-btn.alert:hover {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.filter-btn.closed.active,
.filter-btn.closed:hover {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: var(--white);
}

.filter-btn.blog.active,
.filter-btn.blog:hover {
  background-color: #d3dec5;
  border-color: #d3dec5;
  color: var(--text);
}

.news-list-page .news-item {
  padding: 22px 0;
}

.news-list-page .news-title:hover {
  color: var(--green);
  opacity: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 190px;
}

.news-arrow {
  color: var(--green);
  font-weight: 700;
  margin-left: auto;
  flex-shrink: 0;
}

.news-arrow:hover {
  opacity: 0.72;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}

.page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: all 0.2s;
}

.page-num.current {
  background-color: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.page-num:hover:not(.current) {
  border-color: var(--green);
  color: var(--green);
  opacity: 1;
}

.single-container {
  max-width: 820px;
  margin: 0 auto;
}

.article-header {
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.article-tag {
  padding: 4px 14px;
  font-size: 0.75rem;
  border-radius: 20px;
  background-color: var(--green);
  color: var(--white);
  font-weight: 700;
}

.article-tag.alert {
  background-color: var(--red);
}

.article-tag.notice {
  background-color: var(--green);
}

.article-tag.closed {
  background-color: transparent;
  border: 1px solid var(--text-light);
  color: var(--text-light);
}

.article-tag.blog {
  background-color: #d3dec5;
  color: var(--text);
}

.article-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--text);
}

.article-body {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-mid);
  margin-bottom: 60px;
}

.article-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  border-left: 4px solid var(--green);
  padding-left: 16px;
  margin: 40px 0 20px;
  color: var(--text);
}

.article-body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 28px 0 14px;
  color: var(--text);
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-body li {
  margin-bottom: 6px;
}

.article-action {
  background-color: var(--gray-bg);
  padding: 32px;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 40px;
}

.post-nav {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 40px;
}

.post-nav a {
  font-size: 0.875rem;
  color: var(--green);
  max-width: 45%;
  line-height: 1.5;
}

.post-nav a:hover {
  text-decoration: underline;
  opacity: 1;
}

.news-empty {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9375rem;
  padding: 28px 0;
}

.nav-prev::before {
  content: '« ';
}

.nav-next::after {
  content: ' »';
}

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

.policy-container {
  max-width: 820px;
  margin: 0 auto;
}

.policy-intro {
  margin-bottom: 40px;
  color: var(--text-mid);
  line-height: 1.85;
  font-size: 0.9375rem;
}

.policy-section {
  margin-bottom: 40px;
}

.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--green);
  color: var(--text);
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--text);
}

.policy-section p {
  margin-bottom: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  font-size: 0.9375rem;
}

.policy-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}

.policy-section li {
  margin-bottom: 6px;
  color: var(--text-mid);
  font-size: 0.9375rem;
}

.policy-contact {
  background-color: var(--gray-bg);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
  border: 1px solid var(--border);
}

.standards-container {
  max-width: 900px;
  margin: 0 auto;
}

.standards-lead {
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.9;
}

.standards-updated {
  margin-top: 12px;
  color: var(--text-light);
  font-size: 0.8125rem;
  text-align: right;
}

.standards-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  background-color: var(--gray-bg);
}

.standards-index a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.875rem;
  font-weight: 500;
}

.standards-index a::after {
  content: "↓";
  margin-left: auto;
  padding-left: 12px;
  color: var(--green);
}

.standards-index a:hover {
  color: var(--green);
  background-color: var(--white);
  opacity: 1;
}

.standards-section {
  margin-top: 64px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.standards-section > h2 {
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
  color: var(--text);
  font-size: 1.375rem;
  font-weight: 700;
}

.standards-section h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.standards-section p {
  margin-bottom: 16px;
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.9;
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.standards-list li {
  position: relative;
  min-width: 0;
  padding: 18px 20px 18px 36px;
  border-bottom: 1px solid var(--border);
}

.standards-list li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.standards-list li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 16px;
  width: 8px;
  height: 8px;
  background-color: var(--green);
}

.standards-list span,
.standards-list small {
  display: block;
  overflow-wrap: anywhere;
}

.standards-list span {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6;
}

.standards-list small {
  margin-top: 4px;
  color: var(--text-light);
  font-size: 0.75rem;
}

.standards-subsection {
  margin-top: 32px;
}

.standards-detail-list {
  margin: 20px 0;
  border-top: 1px solid var(--border);
}

.standards-detail-list li {
  position: relative;
  padding: 13px 16px 13px 30px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.standards-detail-list li::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 12px;
  width: 6px;
  height: 6px;
  background-color: var(--green);
}

.standards-detail-list--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.standards-detail-list--compact li:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.standards-other {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 32px;
  align-items: center;
  margin-top: 20px;
}

.standards-other__list {
  margin: 0;
}

.standards-other__mark {
  margin: 0;
  text-align: center;
}

.standards-other__mark img {
  width: 100%;
  max-width: 132px;
  height: auto;
}

.standards-notice {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 4px solid var(--green);
  background-color: var(--green-light);
}

.standards-notice p {
  margin: 0;
  color: var(--text);
}

.standards-notice a,
.standards-policy-link a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.standards-notes {
  margin-top: 28px;
  padding: 22px 24px 22px 46px;
  border: 1px solid var(--border);
  background-color: var(--gray-bg);
}

.standards-notes li {
  margin-bottom: 8px;
  color: var(--text-mid);
  font-size: 0.875rem;
  line-height: 1.75;
}

.standards-notes li:last-child {
  margin-bottom: 0;
}

.standards-policy-link {
  margin-top: 24px;
}

.footer {
  background-color: #1e3a2a;
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 38px;
  width: auto;
}

.footer-logo__name {
  font-size: 1.0625rem;
  font-weight: 700;
}

.footer-info {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
}

.footer-phone {
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.footer-links__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

.footer-links ul li a:hover {
  color: var(--white);
  opacity: 1;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

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

  .clinic-overview-section,
  .home-news-section {
    background-attachment: scroll;
  }

  .hero__video {
    display: none;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .access-gallery__item.fade-in {
    filter: none;
  }

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

@media (max-width: 1200px) {
  .header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .nav-desktop {
    gap: 16px;
  }

  .nav-list {
    gap: 16px;
  }

  .header-actions .btn {
    padding: 10px 14px;
    font-size: 0.825rem;
  }
}

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

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

  .footer-content > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header {
    padding: 0 20px;
  }

  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-item:first-child {
    border-radius: var(--radius) 0 0 0;
  }

  .cta-item {
    border-bottom: 1px solid var(--border);
  }

  .cta-item:nth-child(2) {
    border-right: none;
    border-radius: 0 var(--radius) 0 0;
  }

  .cta-item:nth-child(3) {
    border-bottom: none;
    border-radius: 0 0 0 var(--radius);
  }

  .cta-item:nth-child(4) {
    border-right: none;
    border-bottom: none;
    border-radius: 0 0 var(--radius) 0;
  }

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

  .access-gallery {
    min-height: 620px;
    margin-top: 8px;
  }

  .greeting-index {
    flex-direction: column;
  }

  .greeting-index__img {
    max-width: 100%;
    width: 100%;
  }

  .greeting-flex {
    flex-direction: column;
  }

  .greeting-image {
    position: static;
    max-width: 100%;
    width: 320px;
    margin: 0 auto;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }

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

  .symptom-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 70px;
  }

  .vaccine-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .checkup-items__list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .greeting-flex--landscape {
    gap: 0;
  }

  .greeting-flex--landscape .greeting-image {
    margin-bottom: 32px;
    padding: 0;
  }

  .fever-symptoms-section {
    padding-bottom: 32px;
  }

  .fever-flow-section {
    padding-top: 32px;
  }

  .hero {
    min-height: 440px;
    max-height: 640px;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__address {
    margin-bottom: 28px;
  }

  .hero__cta {
    display: flex;
  }

  .section-title__ja {
    font-size: 1.5rem;
  }

  .cta-grid {
    margin-top: -40px;
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .phone-number {
    font-size: 2.25rem;
  }

  .article-title {
    font-size: 1.375rem;
  }

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

  .footer-content > :first-child {
    grid-column: auto;
  }

  .profile-box {
    padding: 24px 20px;
  }

  .standards-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .standards-list {
    grid-template-columns: 1fr;
  }

  .standards-list li:nth-child(odd) {
    border-right: none;
  }

  .standards-section {
    margin-top: 52px;
  }

  .standards-detail-list--compact {
    grid-template-columns: 1fr;
  }

  .standards-detail-list--compact li:nth-child(odd) {
    border-right: none;
  }

  .standards-other {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .standards-other__mark img {
    max-width: 120px;
  }

  .anchor-list {
    flex-direction: column;
    align-items: center;
  }

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

  .map-container iframe {
    height: 280px;
  }

  .access-detail {
    --access-label-width: 88px;
    --access-label-gap: 24px;
  }

  .access-phone {
    font-size: 1.125rem;
    letter-spacing: 0.02em;
  }

  .access-gallery {
    display: block;
    min-height: 0;
    margin-top: 8px;
  }

  .access-gallery__track {
    display: block;
  }

  .access-gallery__item {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 220px;
    border-radius: 48px 6px 48px 6px;
  }

  .access-gallery__item--planter {
    display: none;
  }

  .home-hours-flower {
    display: block;
    width: min(100%, 520px);
    height: 220px;
    margin: -20px auto 40px;
    overflow: hidden;
    border-radius: 48px 6px 48px 6px;
    -webkit-mask-image: radial-gradient(
      ellipse closest-side at center,
      #000 24%,
      rgba(0, 0, 0, 0.88) 36%,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(0, 0, 0, 0.43) 63%,
      rgba(0, 0, 0, 0.24) 75%,
      rgba(0, 0, 0, 0.11) 85%,
      rgba(0, 0, 0, 0.03) 94%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse closest-side at center,
      #000 24%,
      rgba(0, 0, 0, 0.88) 36%,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(0, 0, 0, 0.43) 63%,
      rgba(0, 0, 0, 0.24) 75%,
      rgba(0, 0, 0, 0.11) 85%,
      rgba(0, 0, 0, 0.03) 94%,
      transparent 100%
    );
  }

  .home-hours-flower img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: brightness(1.06) saturate(1.08);
    transform: scale(1.3);
    transform-origin: center 42%;
  }

  .post-nav {
    flex-direction: column;
    gap: 12px;
  }

  .post-nav a {
    max-width: 100%;
  }

  .alert-box {
    padding: 28px 20px;
  }

  .anchor-nav {
    top: 70px;
  }

  .news-item {
    flex-direction: column;
    gap: 8px;
  }

  .news-meta {
    min-width: auto;
  }

  .company-table th,
  .company-table td {
    padding: 14px 12px;
    font-size: 0.875rem;
  }

  .clinic-overview-section,
  .home-news-section {
    background-attachment: scroll;
  }

  .clinic-overview-section .container {
    padding: 36px 20px;
  }
}

@media (max-width: 480px) {
  .standards-index {
    grid-template-columns: 1fr;
  }

  .standards-section > h2 {
    font-size: 1.1875rem;
  }

  .standards-notice,
  .standards-notes {
    padding-right: 18px;
    padding-left: 18px;
  }

  .standards-notes {
    padding-left: 38px;
  }

  .vaccine-list {
    grid-template-columns: 1fr;
  }

  .symptom-wrapper--alert {
    padding: 0;
  }

  .symptom-alert__main {
    gap: 12px;
    padding: 24px 18px;
  }

  .symptom-alert__icon {
    width: 32px;
    height: 32px;
  }

  .symptom-alert__text {
    font-size: 1.0625rem;
  }

  .symptom-alert__notice {
    padding: 16px 18px;
    text-align: left;
  }

  .hero__title {
    font-size: 1.625rem;
  }

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

  .hero__cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 20px 24px;
    min-height: auto;
    gap: 16px;
  }

  .cta-item:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .cta-item:nth-child(2),
  .cta-item:nth-child(3) {
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .cta-item:nth-child(4) {
    border-radius: 0;
  }

  .cta-item:last-child {
    border-bottom: none;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .cta-item__icon {
    flex-shrink: 0;
  }

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

  .hero__scroll {
    display: none;
  }

  .phone-number {
    font-size: 1.875rem;
  }

  .phone-box {
    padding: 32px 20px;
  }

  .checklist-box {
    padding: 24px 20px;
  }

  .vaccine-reservation-example {
    padding: 18px 16px;
  }

  .vaccine-reservation-example__row {
    grid-template-columns: 1fr;
  }

  .vaccine-reservation-example__row dt {
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: none;
  }

  .vaccine-reservation-example__row dd {
    border-left: 1px solid var(--border);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .timetable {
    font-size: 0.8rem;
  }

  .timetable th,
  .timetable td {
    padding: 10px 5px;
  }

  .hours-table th,
  .hours-table td {
    padding: 8px 6px;
    font-size: 0.8rem;
  }

  .greeting-lead {
    font-size: 1.125rem;
    padding: 18px 20px;
  }
}
