@charset "UTF-8";

:root {
  --blue: #0767b7;
  --blue-light: #67c5ff;
  --blue-soft: #eef9ff;
  --line: #5bade1;
  --text: #111;
  --muted: #4d4d4d;
  --white: #fff;
  --shadow: 2px 2px 8px rgba(0, 0, 0, .18);
  --container: 1040px;
  --font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.site-header__bar {
  height: 0px;
  /* background: var(--blue-light); */
}

.site-header__inner {
  position: relative;
  width: min(100%, 1440px);
  min-height: 160px;
  margin: 0 auto;
  padding: 44px 128px 26px 91px;
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: flex-start;
  gap: 40px;
}

.site-logo {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
}

.site-logo__name,
.site-footer__name,
.access-panel__name {
  color: var(--blue);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.site-logo__name {
  font-size: 35px;
  letter-spacing: .01em;
}

.site-footer__name {
  font-size: 36px;
}

.site-logo__text {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.global-nav {
  flex: 1;
  min-width: 0;
}

.sub-nav {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  padding-right: 272px;
  font-size: 15px;
  color: var(--muted);
}

.global-nav__main {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 34px;
}

.main-nav {
  display: flex;
  align-items: flex-start;
  gap: clamp(22px, 2.7vw, 50px);
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.main-nav a,
.main-nav__trigger,
.sub-nav a,
.footer-nav a,
.footer-nav__toggle {
  white-space: nowrap;
  transition: opacity .2s ease;
}

.main-nav a:hover,
.main-nav__trigger:hover,
.sub-nav a:hover,
.footer-nav a:hover,
.footer-nav__toggle:hover {
  opacity: .65;
}

.main-nav__has-child {
  position: relative;
  /* min-width: 159px; */
}

.main-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.main-nav__trigger::after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 3px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid currentColor;
  transition: transform .18s ease;
}

.main-nav__has-child.is-open .main-nav__trigger::after {
  transform: rotate(180deg);
}

.main-nav__child {
  position: absolute;
  left: 0;
  top: 100%;
  width: 159px;
  margin-top: 8px;
  padding: 10px 18px 12px;
  border-radius: 0 0 9px 9px;
  background: rgba(255, 255, 255, .86);
  font-size: 16px;
  line-height: 2.2;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  font-weight:500;
}

.main-nav__has-child.is-open .main-nav__child {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.header-tel {
  position: absolute;
  top: 33px;
  right: 128px;
  min-width: 236px;
  height: 50px;
  padding: 0 20px 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  color: #fff;
  background: var(--line);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 4px 12px rgba(91, 173, 225, .32);
}

.header-tel img {
  width: 30px;
  height: 34px;
  object-fit: contain;
}

/* .header-tel::after {
  content: "";
  flex: none;
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
} */

.menu-button {
  display: none;
}

.hero {
  position: relative;
  height: clamp(420px, 48.2vw, 693px);
  overflow: hidden;
  background: #dfeaf0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .08);
}

.hero__content {
  position: absolute;
  left: 50%;
  top: 48%;
  width: max-content;
  max-width: min(950px, calc(100% - 48px));
  color: #fff;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 10px rgba(0, 0, 0, .24);
  text-align: center;
  white-space: nowrap;
}

.hero__catch {
  font-size: clamp(34px, 3.9vw, 56px);
  font-weight: 900;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.hero__lead {
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hero__catch span,
.hero__lead span {
  display: inline;
}

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

.section-head h2 {
  display: inline-block;
  position: relative;
  padding: 0 5px 16px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--blue);
}

.section-head--medical h2::after {
  content: none;
}

.news {
  padding: 118px 20px 60px;
}

.news__inner {
  width: min(100%, var(--container));
  margin: 54px auto 0;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-list li {
  border-bottom: 1px dotted #9cc7ec;
}

/* .news-list li:first-child {
  border-top: 1px dotted #9cc7ec;
} */

.news-list a {
  min-height: 36px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 116px 1fr;
  align-items: baseline;
  gap: 44px;
  color: var(--blue);
  font-size: 16px;
  line-height: 1.5;
  transition: opacity .2s ease;
}

.news-list a:hover {
  opacity: .6;
}

.news-list time {
  text-align: left;
  font-weight: 400;
  letter-spacing: .02em;
}

.news__more {
  margin-top: 28px;
  text-align: right;
}

.button {
  min-width: 213px;
  height: 47px;
  padding: 0 44px 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.button--outline {
  position: relative;
  color: var(--line);
  border: 1px solid var(--line);
  background: #fff;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.button--outline:hover {
  color: #fff;
  background: var(--line);
  box-shadow: 0 7px 16px rgba(91, 173, 225, .32);
  transform: translateY(-1px);
}

.button--outline::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid currentColor;
}

.medical {
  position: relative;
  padding: 88px 20px 78px;
  background-color: #fff;
  background-image:
    linear-gradient(#d9f0ff 1px, transparent 1px),
    linear-gradient(90deg, #d9f0ff 1px, transparent 1px);
  background-size: 32px 32px;
}

.medical__inner {
  position: relative;
  width: min(100%, 1100px);
  margin: 0 auto;
  text-align: center;
}

.medical__note {
  position: relative;
  width: 360px;
  height: 100px;
  margin: -18px auto 8px;
  color: var(--blue);
  pointer-events: none;
}

.medical__note-lines {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 68px;
  height: 38px;
  object-fit: contain;
  transform: translateX(-50%);
}

.medical__note-arc {
  position: absolute;
  left: 0;
  bottom: -25px;
  width: 100%;
  height: 82px;
  overflow: visible;
}

.medical__note-arc path {
  fill: none;
}

.medical__note-arc text {
  fill: var(--blue);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}

.section-head--medical h2 {
  font-size: 32px;
  margin-top: 0;
}

.medical-menu {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.medical-card a {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .2s ease;
}

.medical-card a:hover {
  transform: translateY(-4px);
}

.medical-card a:focus-visible {
  outline: 3px solid rgba(91, 173, 225, .42);
  outline-offset: 10px;
  border-radius: 18px;
}

.medical-card__icon {
  width: 133px;
  height: 133px;
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.medical-card a:hover .medical-card__icon {
  background: var(--blue-soft);
  box-shadow: 0 7px 18px rgba(7, 103, 183, .18);
  transform: scale(1.04);
}

.medical-card__icon img {
  max-width: 92px;
  max-height: 92px;
  object-fit: contain;
}

.medical-card__title {
  margin-top: 22px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
}

.medical-card__text {
  margin-top: 19px;
  display: block;
  width: 100%;
  min-width: 0;
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.78;
  text-align: left;
  overflow-wrap: anywhere;
}

.features {
  position: relative;
  overflow: hidden;
  padding: 84px 0 0;
}

.features__lead {
  margin: 45px auto 64px;
  width: min(100% - 40px, 610px);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

.feature-row {
  position: relative;
  width: min(calc(100% - 40px), 1040px);
  min-height: 256px;
  margin: 0px auto 100px;
  display: flex;
  align-items: center;
  padding: 36px 56px 36px 436px;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
  z-index: 0;
  isolation: isolate;
}

.feature-row + .feature-row {
  margin-top: 80px;
}

.feature-row::before {
  content: "";
  position: absolute;
  top: -34px;
  bottom: -34px;
  width: 100vw;
  z-index: -2;
  background: linear-gradient(90deg, transparent 0 50%, var(--blue-soft) 50% 100%);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.feature-row--reverse::before {
  background: linear-gradient(90deg, var(--blue-soft) 0 50%, transparent 50% 100%);
}

.feature-row::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 4px 7px 22px rgba(17, 60, 100, .12);
}

.feature-row--reverse {
  padding: 36px 436px 36px 56px;
}

.feature-row__image {
  position: absolute;
  top: -16px;
  left: 0px;
  width: 378px;
  height: calc(100% + 32px);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 5px 8px 22px rgba(17, 60, 100, .22);
}

.feature-row--reverse .feature-row__image {
  left: auto;
  right: 0px;
}

.feature-row__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card {
  width: 100%;
  min-width: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

.feature-card__en {
  color: #4990cb;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.2;
}

.feature-card h3 {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
}

.feature-card__main {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.feature-card__sub {
  margin-top: 14px;
  padding-left: 18px;
  border-left: 4px solid #d9f0ff;
  font-size: 16px;
  line-height: 1.75;
}

.greeting {
  padding: 107px 20px 105px;
  background: var(--blue-soft);
}

.greeting__inner {
  width: min(100%, var(--container));
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: center;
  gap: 90px;
}

.greeting__body {
  font-size: 16px;
  line-height: 2.05;
}

/* .greeting__body p + p {
  margin-top: .5em;
} */

.greeting__signature {
  margin-top: 26px;
  text-align: right;
}

.greeting__signature span {
  font-size: 24px;
}

.greeting__photo {
  align-self: end;
  position: relative;
}

.greeting__photo img {
  width: 334px;
  height: auto;
  margin:0 auto;
}

.greeting__doctor-label {
  display: none;
}

.access {
  padding: 103px 20px 116px;
  background: #fff;
}

.access__inner {
  width: min(100%, 1060px);
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 472px;
  gap: 44px;
  align-items: start;
}

.access-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.access-panel__head p:not(.access-panel__name) {
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.45;
}

.access-panel__tel,
.site-footer__tel {
  height: 72px;
  min-width: 238px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  background: var(--blue-light);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .02em;
}

.access-panel__tel img,
.site-footer__tel img {
  width: 33px;
  height: 37px;
  object-fit: contain;
  margin-top: 8px;
}

.hours-table {
  width: 100%;
  margin-top: 24px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
  text-align: center;
}

.hours-table th,
.hours-table td {
  height: 48px;
  border: 1px solid #e6edf2;
  font-weight: 500;
  line-height: 1.25;
}

.hours-table thead th {
  color: #fff;
  background: var(--blue-light);
}

.hours-table thead th.is-off {
  color: #fff;
  background: var(--blue-light);
}

.hours-table tbody th {
  width: 104px;
  color: var(--blue);
  font-weight: 700;
  background: #f3fbff;
}

.hours-table th:first-child {
  width: 111px;
}

.hours-table .is-off {
  color: #ce1e1e;
}

.access-panel__closed {
  margin-top: 5px;
  color: #ce1e1e;
  font-weight: 700;
}

.access-panel__notice {
  margin-top: 0px;
  color: var(--blue);
  font-weight: 500;
  line-height: 1.65;
}

.station-list {
  position: relative;
  margin-top: 24px;
  padding-left: 52px;
  font-size: 16px;
  line-height: 1.6;
  list-style: disc;
}

.station-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 39px;
  height: 46px;
  background: url("../img/access-icon.png") center / contain no-repeat;
}

.station-list li {
  margin-left: 20px;
}

.access-map {
  width: 472px;
  max-width: 100%;
}

.access-map iframe {
  display: block;
  width: 472px;
  max-width: 100%;
  height: 476px;
  border: 0;
  border-radius: 6px;
}

.site-footer {
  position: relative;
  border-top: 4px solid var(--blue-light);
  border-bottom: 4px solid var(--blue-light);
  background: var(--blue-soft);
}

.page-top {
  position: absolute;
  right: 41px;
  top: -42px;
  width: 83px;
  height: 83px;
}

.page-top img {
  width: 80%;
  height: 80%;
}

.site-footer__inner {
  width: min(100%, 1140px);
  min-height: 355px;
  margin: 0 auto;
  padding: 77px 20px 62px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
}

.site-footer__info {
  font-size: 16px;
}

.site-footer__info > p:not(.site-footer__name) {
  margin-top: 18px;
  line-height: 1.55;
}

.site-footer__tel {
  margin-top: 21px;
}

.footer-nav > ul {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  column-gap: 62px;
  row-gap: 38px;
  align-items: start;
  font-weight: 500;
}

.footer-nav li {
  position: relative;
  padding-left: 22px;
}

.footer-nav li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .9em;
  width: 14px;
  height: 1px;
  background: var(--blue);
}

.footer-nav > ul > li:has(> ul) {
  padding-left: 0;
}

.footer-nav > ul > li:has(> ul)::before {
  content: none;
}

.footer-nav ul ul {
  margin-top: 21px;
  color: #4c4444;
  font-size: 14px;
  font-weight: 400;
}

.footer-nav__toggle {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-weight: 500;
  line-height: inherit;
}

.footer-nav ul ul li::before {
  background: var(--blue-light);
}

.br_sp{
  display:none;  
}

.footer-nav ul ul li + li {
  margin-top: 12px;
}

@media (max-width: 1340px) {
  .site-header__inner {
    grid-template-columns: 300px minmax(0, 1fr);
    padding: 40px 64px 24px 48px;
    gap: 24px;
  }

  .site-logo__name {
    font-size: 30px;
  }

  .sub-nav {
    padding-right: 226px;
    gap: 26px;
    font-size: 14px;
  }

  .global-nav__main {
    margin-top: 28px;
  }

  .main-nav {
    gap: clamp(16px, 1.9vw, 30px);
    font-size: 17px;
  }

  .header-tel {
    top: 38px;
    right: 64px;
    min-width: 196px;
    height: 46px;
    font-size: 18px;
  }

  /* .hero__content {
    left: 8%;
  } */
}

@media (max-width: 1199px) {
  .site-header__inner {
    width: 100%;
    max-width: 100%;
    min-height: 86px;
    grid-template-columns: minmax(0, 1fr);
    padding: 18px 80px 18px 20px;
    align-items: center;
  }

  .site-logo {
    flex-basis: auto;
  }

  .site-logo__name {
    font-size: 24px;
  }

  .site-logo__text {
    display: none;
  }

  .menu-button {
    position: fixed;
    right: 20px;
    top: 22px;
    transform: none;
    z-index: 31;
    margin-left: 0;
    width: 44px;
    height: 44px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid var(--blue);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
  }

  .menu-button span {
    width: 28px;
    height: 3px;
    display: block;
    border-radius: 999px;
    background: var(--blue);
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-button span + span {
    margin-top: 0;
  }

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

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

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

  .global-nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 30;
    width: min(82vw, 360px);
    padding: 94px 28px 40px;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .15);
    transform: translateX(110%);
    transition: transform .25s ease;
    overflow-y: auto;
  }

  .global-nav.is-open {
    transform: translateX(0);
  }

  .sub-nav,
  .global-nav__main,
  .main-nav {
    display: block;
  }

  .sub-nav {
    order: 2;
    margin-top: 0;
    padding: 24px 0 0;
    /* border-top: 1px solid #d9f0ff; */
    font-size: 14px;
  }

  .sub-nav li + li,
  .main-nav li + li {
    margin-top: 18px;
  }

  .global-nav__main {
    display: contents;
  }

  .main-nav {
    order: 1;
    font-size: 16px;
  }

  .main-nav__child {
    position: static;
    width: auto;
    max-height: 0;
    margin-top: 0;
    padding: 0 16px;
    overflow: hidden;
    background: var(--blue-soft);
    transform: none;
    transition: max-height .24s ease, margin-top .24s ease, padding .24s ease, opacity .18s ease, visibility .18s ease;
  }

  .main-nav__has-child.is-open .main-nav__child {
    max-height: 180px;
    margin-top: 12px;
    padding: 12px 16px;
  }

  .header-tel {
    position: static;
    order: 3;
    top: auto;
    right: auto;
    margin-top: 24px;
    width: 100%;
    height: 52px;
  }

  .hero {
    height: 56vw;
    min-height: 390px;
  }

  .hero__content {
    left: 50%;
    right: auto;
    width: calc(100vw - 48px);
    max-width: 720px;
    white-space: normal;
  }

  @media (max-width: 520px) {
    .hero__content {
      width: calc(100vw - 48px);
    }
  }

  

  .hero__lead {
    max-width: 720px;
  }

  .medical-menu,
  .access__inner,
  .greeting__inner,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .medical-menu {
    gap: 40px;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .medical-card__text {
    max-width: 430px;
    margin-inline: auto;
    text-align: center;
  }

  .feature-row,
  .feature-row--reverse {
    display: block;
    width: min(calc(100% - 40px), 620px);
    min-height: 0;
    margin-inline: auto;
    padding: 0 0 32px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #cfeafa;
    box-shadow: 0 10px 24px rgba(17, 60, 100, .12);
    margin:0px auto 50px;
  }

  .feature-row + .feature-row {
    margin-top: 56px;
  }

  .feature-row::before {
    display: none;
  }

  .feature-row__image,
  .feature-row--reverse .feature-row__image {
    position: static;
    inset: auto;
    width: 100%;
    height: clamp(190px, 42vw, 260px);
    margin-bottom: 28px;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #dceff9;
  }

  .feature-card {
    padding: 0 30px;
  }

  .greeting__inner {
    gap: 0;
    max-width: 560px;
    align-items: stretch;
    border: 1px solid #c9e9fb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 60, 100, .1);
    overflow: hidden;
  }

  .greeting__photo {
    order: -1;
    justify-self: center;
    width: 100%;
    max-width: none;
    padding: 26px 22px 0;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
  }

  .greeting__doctor-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--blue);
    line-height: 1.3;
  }

  .greeting__doctor-label span {
    padding: 4px 10px;
    border: 1px solid var(--blue-light);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    background: var(--blue-soft);
  }

  .greeting__doctor-label strong {
    font-size: 26px;
    font-weight: 900;
  }

  .greeting__body {
    padding: 30px 32px 32px;
    border: 0;
    border-top: 1px solid #dceff9;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .greeting__signature {
    display: none;
  }

  .site-footer__inner {
    width: min(100%, 760px);
    justify-items: center;
    text-align: center;
  }

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

  .site-footer__tel {
    margin-inline: auto;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-nav > ul {
    justify-content: center;
    text-align: left;
  }

  .access-map {
    width: 100%;
  }

  .access-map iframe {
    width: 100%;
    height: min(70vw, 520px);
    min-height: 360px;
  }

  .footer-nav > ul {
    grid-template-columns: repeat(2, max-content);
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header__inner {
    min-height: 70px;
    padding: 14px 72px 14px 16px;
  }

  .menu-button {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    z-index: 40;
  }

  .hero {
    min-height: 430px;
  }

  .hero__image {
    object-position: 45% bottom;
  }

  .hero__content {
    text-align: left;
  }

  .hero__catch {
    font-size: clamp(24px, 6.4vw, 28px);
    line-height: 1.45;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .hero__catch span,
  .hero__lead span {
    display: block;
  }

  /* .hero__lead span {
    display: inline;
  } */

  .hero__lead {
    /* width: min(100%, 328px); */
    margin: 16px 0 0;
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.65;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
    line-break: strict;
  }

  .section-head h2 {
    font-size: 22px;
  }

  .news {
    padding-top: 72px;
  }

  .news-list a {
    min-height: 72px;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: center;
    padding: 12px 0;
  }

  .news-list time {
    text-align: left;
  }

  .news__more {
    text-align: center;
  }

  .medical {
    padding-block: 72px;
  }

  .medical__note {
    width: min(100%, 330px);
    height: 84px;
    margin-top: -12px;
    margin-bottom: 6px;
  }

  .medical__note-lines {
    width: 58px;
    height: auto;
    top: 0;
  }

  .medical__note-arc {
    height: 86px;
    bottom: -25px;
  }

  .medical__note-arc text {
    font-size: 16px;
  }

  .medical-menu {
    margin-top:34px;
    grid-template-columns: 1fr;
    width: min(100%, 330px);
    gap: 54px;
  }

  .medical-card__text {
    max-width: 320px;
    margin-inline: auto;
    text-align: center;
    word-break: normal;
    overflow-wrap: anywhere;
    margin-top:8px;
  }

  .feature-card,
  .greeting__body,
  .features__lead {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
  }

  .features {
    padding-top: 70px;
  }

  .feature-card {
    padding: 0 22px;
  }

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

  .feature-card__main {
    margin-top: 18px;
    font-weight:normal;
  }

  .feature-card__sub {
    /* margin-top: 14px;
    padding-left: 18px;
    border-left: 4px solid #d9f0ff; */
    font-size: 14px;
    /* line-height: 1.75; */
}

.features__lead {
  margin: 30px auto 30px;
  width: min(100% - 40px, 610px);
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}

  .greeting,
  .access {
    padding-block: 72px;
  }

  .greeting__inner {
    gap: 18px;
    margin-top: 42px;
    max-width: none;
  }

  .greeting__photo {
    width: 100%;
    padding: 24px 18px 0;
    border-radius: 14px;
  }

  .greeting__photo img {
    width: min(100%, 270px);
    margin: 0 auto;
  }

  .greeting__body {
    padding: 24px 20px 26px;
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.95;
  }

  .access-panel__head {
    display: block;
  }

  .access-panel__tel {
    width: 100%;
    margin-top: 20px;
  }

  .hours-table {
    min-width: 0;
    width: 100%;
    font-size: 14px;
  }

  .access-panel {
    overflow-x: visible;
  }

  .hours-table th,
  .hours-table td {
    height: 38px;
    padding: 2px 1px;
    line-height: 1.2;
  }

  .hours-table th:first-child,
  .hours-table tbody th {
    width: 85px;
    font-size:12px;
  }

  .station-list {
    min-width: 0;
    padding-left: 0;
    list-style: disc;
    font-size:14px;
  }

  .site-logo__name, .site-footer__name, .access-panel__name {
    color: var(--blue);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
}

.site-footer__info > p:not(.site-footer__name) {
  margin-top: 12px;
  line-height: 1.55;
}

  .station-list::before {
    display: none;
  }

  .access-panel__closed {
    font-size:14px;
    }
    
    .access-panel__notice {
    font-size:14px;
    }

  .site-footer__inner {
    gap: 44px;
    padding-top: 62px;
  }

  .site-footer__name {
    font-size: 28px;
}

  .footer-nav > ul {
    grid-template-columns: repeat(2, max-content);
    column-gap: 34px;
    row-gap: 20px;
    justify-items: left;
    text-align: center;
    font-size:14px;
  }

  .footer-nav__toggle {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  .footer-nav__toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border-right: 2px solid var(--blue);
    border-bottom: 2px solid var(--blue);
    transform: rotate(45deg);
    transition: transform .2s ease;
  }

  .footer-nav__medical.is-open .footer-nav__toggle::after {
    margin-top: 4px;
    transform: rotate(-135deg);
  }
  
  .br_sp{
    display:block;
  }

  .footer-nav .footer-nav__child {
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .25s ease, margin-top .25s ease, opacity .2s ease;
  }

  .footer-nav__medical.is-open .footer-nav__child {
    max-height: 160px;
    margin-top: 16px;
    opacity: 1;
  }

  .page-top {
    right: 20px;
    width: 64px;
    height: 64px;
    top: -34px;
  }
}
