@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  appearance: none;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  color: #4A5A62;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p,
li,
figcaption,
blockquote,
dd {
  text-wrap: pretty;
}

section[id] {
  scroll-margin-top: 60px;
}
@media (min-width: 768px) {
  section[id] {
    scroll-margin-top: 72px;
  }
}

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

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

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 74, 90, 0.12);
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1080px;
  height: 60px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 72px;
    padding: 0 40px;
  }
}

.l-header__logo {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  position: relative;
  z-index: 102;
}

.l-header__logo-link {
  transition: opacity 0.2s ease;
}

.l-header__logo-link:hover {
  opacity: 0.7;
}

.l-header__nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(42, 74, 90, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
@media (min-width: 960px) {
  .l-header__nav {
    position: static;
    width: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
}

.l-header__nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.l-header__nav-list {
  display: flex;
  flex-direction: column;
  padding: 12px 20px 20px;
}
@media (min-width: 960px) {
  .l-header__nav-list {
    flex-direction: row;
    gap: 28px;
    padding: 0;
  }
}

.l-header__nav-link {
  display: block;
  padding: 12px 0;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  transition: color 0.2s ease;
}
@media (min-width: 960px) {
  .l-header__nav-link {
    padding: 4px 0;
  }
}

.l-header__nav-link:hover {
  color: #4A8FA0;
}

.l-header__contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.l-header__tel {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: "Noto Serif JP", serif;
  color: #2A4A5A;
  font-variant-numeric: tabular-nums;
  transition: color 0.2s ease;
}

.l-header__tel:hover {
  color: #4A8FA0;
}

.l-header__tel-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #4A8FA0;
}

.l-header__tel-number {
  font-size: 16px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .l-header__tel-number {
    font-size: 18px;
  }
}

.l-header__menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 102;
}
@media (min-width: 960px) {
  .l-header__menu-button {
    display: none;
  }
}

.l-header__menu-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #2A4A5A;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.l-header__menu-button.is-open .l-header__menu-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.l-header__menu-button.is-open .l-header__menu-bar:nth-child(2) {
  opacity: 0;
}

.l-header__menu-button.is-open .l-header__menu-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.l-footer {
  background: #2A4A5A;
  color: #FFFFFF;
  padding: 60px 0 24px;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 40px;
  }
}

.l-footer__name {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.l-footer__address {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.8);
}

.l-footer__tel {
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.l-footer__tel-link {
  transition: opacity 0.2s ease;
}

.l-footer__tel-link:hover {
  opacity: 0.7;
}

.l-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l-footer__nav-link {
  display: inline-block;
  padding: 4px 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.l-footer__nav-link:hover {
  color: #8EC4CE;
}

.l-footer__copyright {
  margin-top: 48px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
}

.c-button {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.c-button--header {
  display: none;
}
@media (min-width: 768px) {
  .c-button--header {
    display: inline-block;
    padding: 10px 20px;
    font-size: 13px;
    color: #FFFFFF;
    background: #4A8FA0;
  }
}

.c-button--header:hover {
  background: #2A4A5A;
}

.c-button--hero {
  padding: 14px 32px;
  font-size: 14px;
  color: #FFFFFF;
  background: #4A8FA0;
  box-shadow: 0 10px 24px rgba(74, 143, 160, 0.22);
  border-radius: 999px;
}

.c-button--hero:hover {
  background: #2A4A5A;
  transform: translateY(-2px);
}

.c-button--primary {
  padding: 14px 32px;
  font-size: 14px;
  color: #FFFFFF;
  background: #4A8FA0;
  border-radius: 999px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.c-button--primary:hover {
  background: #2A4A5A;
  transform: translateY(-2px);
}

.c-button--contact {
  padding: 16px 48px;
  font-size: 15px;
  color: #4A8FA0;
  background: #FFFFFF;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.c-button--contact:hover {
  background: #D6EEF2;
  transform: translateY(-2px);
}

.c-section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 48px;
}

.c-section-heading__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: #4A8FA0;
  text-transform: uppercase;
}

.c-section-heading__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: clamp(30px, 3.75vw, 42px);
  letter-spacing: 0.05em;
  color: #2A4A5A;
  line-height: 1.35;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
}

.c-section-heading__title span {
  display: inline-block;
}

.c-section-heading__title--compact {
  font-size: clamp(26px, 7vw, 42px);
  letter-spacing: 0.03em;
}

.c-section-heading--white .c-section-heading__label {
  color: rgba(255, 255, 255, 0.85);
}

.c-section-heading--white .c-section-heading__title {
  color: #FFFFFF;
}

.c-table {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
  font-variant-numeric: tabular-nums;
}

.c-table th,
.c-table td {
  padding: 12px 8px;
  text-align: center;
  font-size: 13px;
  border: 1px solid rgba(42, 74, 90, 0.12);
}
@media (min-width: 768px) {
  .c-table th,
  .c-table td {
    padding: 16px 12px;
    font-size: 14px;
  }
}

.c-table thead th {
  background: #4A8FA0;
  color: #FFFFFF;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-color: rgba(255, 255, 255, 0.2);
}

.c-table tbody th {
  background: #D6EEF2;
  color: #2A4A5A;
  font-weight: 500;
  white-space: nowrap;
}

.c-table__open {
  color: #4A8FA0;
  font-weight: 500;
}

.c-table__closed {
  color: #7A8A92;
}

.c-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-accordion__item {
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}

.c-accordion__question {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 16px;
  text-align: left;
  transition: background-color 0.2s ease;
}
@media (min-width: 768px) {
  .c-accordion__question {
    padding: 20px 24px;
  }
}

.c-accordion__question:hover {
  background: #D6EEF2;
}

.c-accordion__q-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4A8FA0;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
}

.c-accordion__q-text {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #2A4A5A;
  letter-spacing: 0.03em;
}
@media (min-width: 768px) {
  .c-accordion__q-text {
    font-size: 15px;
  }
}

.c-accordion__icon {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
}

.c-accordion__icon::before,
.c-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: #4A8FA0;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.c-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-accordion__question[aria-expanded=true] .c-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.c-accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.c-accordion__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 16px 20px;
}
@media (min-width: 768px) {
  .c-accordion__answer-inner {
    padding: 4px 24px 24px;
  }
}

.c-accordion__a-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #C8A96E;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
}

.c-accordion__a-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.9;
}

.p-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #f8fcfd;
}

.p-hero__picture {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  animation: hero-cross-fade 10s ease-in-out infinite;
}

.p-hero__picture--director {
  opacity: 1;
}

.p-hero__picture--deputy {
  animation-delay: 5s;
}

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

.p-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0.08) 68%), linear-gradient(180deg, rgba(214, 238, 242, 0.08) 0%, rgba(214, 238, 242, 0.24) 100%);
}

.p-hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
  color: #2A4A5A;
  padding: 112px 24px 96px;
}
@media (min-width: 768px) {
  .p-hero__content {
    padding: 128px 0 96px 7.5vw;
  }
}

.p-hero__circle-mark {
  position: absolute;
  top: -38px;
  right: 0;
  width: clamp(210px, 58vw, 250px);
  height: clamp(210px, 58vw, 250px);
  pointer-events: none;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .p-hero__circle-mark {
    top: -92px;
    right: -150px;
    width: clamp(270px, 25vw, 350px);
    height: clamp(270px, 25vw, 350px);
  }
}

.p-hero__circle-mark-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: center;
  transform-box: fill-box;
  animation: hero-circle-rotate 28s linear infinite;
}

.p-hero__circle-mark-halo {
  fill: rgba(214, 238, 242, 0.88);
}

.p-hero__circle-mark-dot {
  fill: #4A8FA0;
}

.p-hero__circle-mark-text {
  fill: #7fbfe6;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.34em;
}

.p-hero__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin-bottom: 24px;
  text-wrap: balance;
}

.p-hero__text {
  font-size: clamp(13px, 1.4vw, 16px);
  letter-spacing: 0.06em;
  line-height: 2.1;
  margin-bottom: 40px;
  color: #4A5A62;
  text-wrap: pretty;
}

.p-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #4A8FA0;
}

.p-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.p-hero__scroll-arrow {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(74, 143, 160, 0.28);
  position: relative;
  overflow: hidden;
}

.p-hero__scroll-arrow::after {
  content: "";
  position: absolute;
  top: -48px;
  left: 0;
  width: 1px;
  height: 48px;
  background: #4A8FA0;
  animation: scroll-flow 2s ease-in-out infinite;
}

@media (min-width: 768px) {
  .p-hero__image {
    object-position: center;
  }
}
@keyframes hero-cross-fade {
  0%, 42% {
    opacity: 1;
  }
  50%, 92% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-hero__picture {
    animation: none;
  }
  .p-hero__picture--deputy {
    opacity: 0;
  }
  .p-hero__circle-mark-svg {
    animation: none;
  }
}
@keyframes hero-circle-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes scroll-flow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(96px);
  }
}
.p-info {
  background: #4A8FA0;
  color: #FFFFFF;
  padding: 24px 0;
}

.p-info__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-info__inner {
    padding: 0 40px;
  }
}

.p-info__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 960px) {
  .p-info__list {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }
}

.p-info__item {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.7;
}

.p-info__item::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8EC4CE;
}

.p-concept {
  background: #FFFFFF;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-concept {
    padding: 100px 0;
  }
}

.p-concept__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-concept__inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
  }
}

@media (min-width: 768px) {
  .p-concept__text {
    width: 60%;
  }
}

.p-concept__body {
  margin-bottom: 20px;
}

.p-concept__note {
  font-size: 14px;
  color: #7A8A92;
}

@media (min-width: 768px) {
  .p-concept__image {
    width: 40%;
  }
}

.p-concept__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.p-features {
  background: linear-gradient(180deg, #f4fbfc 0%, #f8f7f3 100%);
  padding: 64px 0;
}
@media (min-width: 768px) {
  .p-features {
    padding: 104px 0;
  }
}

.p-features__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-features__inner {
    padding: 0 40px;
  }
}

.p-features__lead {
  max-width: 820px;
  margin: -12px auto 40px;
  color: #4A5A62;
  line-height: 2;
  text-align: center;
  text-wrap: pretty;
}
@media (min-width: 768px) {
  .p-features__lead {
    margin-bottom: 56px;
  }
}

.p-features__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-features__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.p-features__item {
  overflow: hidden;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.p-features__figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  outline-offset: -1px;
}

.p-features__body {
  padding: 24px 22px 28px;
}
@media (min-width: 768px) {
  .p-features__body {
    padding: 30px 30px 34px;
  }
}

.p-features__number {
  display: inline-block;
  margin-bottom: 10px;
  color: #4A8FA0;
  font-family: "Noto Serif JP", serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.p-features__title {
  margin-bottom: 12px;
  color: #2A4A5A;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.55;
  text-wrap: balance;
}

.p-features__text {
  color: #4A5A62;
  font-size: 14px;
  line-height: 1.95;
  text-wrap: pretty;
}

.p-medical {
  background: #F5F5F3;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-medical {
    padding: 100px 0;
  }
}

.p-medical__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-medical__inner {
    padding: 0 40px;
  }
}

.p-medical__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  .p-medical__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .p-medical__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.p-medical__item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.p-medical__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #D6EEF2;
  color: #4A8FA0;
}

.p-medical__icon img {
  width: 34px;
  height: 34px;
}

.p-medical__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  margin-bottom: 8px;
}

.p-medical__desc {
  font-size: 14px;
  line-height: 1.8;
}

.p-medical__schedule {
  margin-top: 64px;
}

.p-medical__schedule-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  text-align: center;
  margin-bottom: 24px;
}

.p-medical__table-wrap {
  overflow-x: auto;
}

.p-medical__notes {
  margin-top: 16px;
}

.p-medical__note {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: #7A8A92;
  line-height: 1.9;
}

.p-medical__note::before {
  content: "※";
  position: absolute;
  left: 0;
}

.p-clinic-slider {
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FCFD 52%, #FFFFFF 100%);
}

.p-clinic-slider__viewport {
  width: 100%;
  overflow: hidden;
}

.p-clinic-slider__track {
  display: flex;
  width: 700%;
  animation: clinic-slider-flow 30s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  will-change: transform;
}

.p-clinic-slider__item {
  flex: 0 0 14.2857142857%;
}

.p-clinic-slider__item img {
  display: block;
  width: 100%;
  height: clamp(220px, 38vw, 420px);
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  outline-offset: -1px;
}
@media (min-width: 768px) {
  .p-clinic-slider__item img {
    height: clamp(300px, 32vw, 460px);
  }
}

@keyframes clinic-slider-flow {
  0%, 10% {
    transform: translateX(0);
  }
  16.666%, 26.666% {
    transform: translateX(-14.2857%);
  }
  33.333%, 43.333% {
    transform: translateX(-28.5714%);
  }
  50%, 60% {
    transform: translateX(-42.8571%);
  }
  66.666%, 76.666% {
    transform: translateX(-57.1428%);
  }
  83.333%, 93.333% {
    transform: translateX(-71.4285%);
  }
  100% {
    transform: translateX(-85.7142%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-clinic-slider__track {
    animation: none;
  }
}
.p-private {
  background: #FFFFFF;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-private {
    padding: 100px 0;
  }
}

.p-private__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-private__inner {
    padding: 0 40px;
  }
}

.p-private__lead {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-private__lead {
    text-align: center;
  }
}

.p-private__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-private__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .p-private__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-private__card {
  display: flex;
  flex-direction: column;
  background: #F5F5F3;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.p-private__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: #2A4A5A;
  margin-bottom: 8px;
}

.p-private__name-sub {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  color: #7A8A92;
}

.p-private__price {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  letter-spacing: 0.03em;
  color: #4A8FA0;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}

.p-private__risk {
  margin-top: auto;
  font-size: 12px;
  line-height: 1.8;
  color: #7A8A92;
}

.p-private__notes {
  margin-top: 32px;
}

.p-private__note {
  position: relative;
  padding-left: 14px;
  font-size: 12px;
  color: #7A8A92;
  line-height: 1.9;
}

.p-private__note::before {
  content: "※";
  position: absolute;
  left: 0;
}

.p-houmon {
  position: relative;
  overflow: hidden;
  background-color: #E8DFD0;
  background-image: url("../images/home-dental-care-background-sm.png");
  background-position: center top;
  background-size: cover;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-houmon {
    background-image: url("../images/home-dental-care-background-md.png");
    background-position: center center;
    padding: 100px 0;
  }
}

.p-houmon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.92) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.52) 100%);
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-houmon::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.48) 48%, rgba(255, 255, 255, 0.92) 100%);
  }
}

.p-houmon__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-houmon__inner {
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
  }
}

.p-houmon__inner::before {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
}
@media (min-width: 768px) {
  .p-houmon__inner::before {
    width: 40%;
    aspect-ratio: auto;
  }
}

@media (min-width: 768px) {
  .p-houmon__text {
    width: 60%;
  }
}

.p-houmon__body {
  margin-bottom: 28px;
}

.p-doctors {
  background: #FFFFFF;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-doctors {
    padding: 100px 0;
  }
}

.p-doctors__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-doctors__inner {
    padding: 0 40px;
  }
}

.p-doctors__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .p-doctors__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

.p-doctors__card {
  background: #F5F5F3;
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .p-doctors__card {
    padding: 40px 32px;
  }
}

.p-doctors__photo {
  width: min(100%, 260px);
  margin: 0 auto 28px;
}

.p-doctors__photo img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.p-doctors__role {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: #4A8FA0;
  margin-bottom: 4px;
}

.p-doctors__name {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #2A4A5A;
  margin-bottom: 24px;
}

.p-doctors__detail-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4A8FA0;
  padding-bottom: 4px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(42, 74, 90, 0.12);
}

.p-doctors__detail-body {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.p-doctors__history li {
  position: relative;
  padding-left: 14px;
}

.p-doctors__history li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8EC4CE;
}

.p-doctors__schedule {
  margin-top: 64px;
}

.p-doctors__schedule-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  text-align: center;
  margin-bottom: 24px;
}

.p-doctors__table-wrap {
  overflow-x: auto;
}

.p-doctors__table-wrap .c-table th,
.p-doctors__table-wrap .c-table td {
  text-align: left;
  white-space: normal;
}

.p-doctors__schedule-note {
  font-size: 11px;
  font-weight: 400;
  color: #7A8A92;
}

.p-facilities {
  background: #F5F5F3;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-facilities {
    padding: 100px 0;
  }
}

.p-facilities__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-facilities__inner {
    padding: 0 40px;
  }
}

.p-facilities__lead {
  margin-bottom: 40px;
}

.p-facilities__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 576px) {
  .p-facilities__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .p-facilities__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-facilities__figure img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 8px;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.p-facilities__caption {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #4A5A62;
}

.p-first-visit {
  background: #FFFFFF;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-first-visit {
    padding: 100px 0;
  }
}

.p-first-visit__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-first-visit__inner {
    padding: 0 40px;
  }
}

.p-first-visit__subtitle {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  margin-bottom: 20px;
}

.p-first-visit__items {
  margin-bottom: 64px;
}

.p-first-visit__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-first-visit__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #D6EEF2;
  border-radius: 12px;
  padding: 20px 24px;
}

.p-first-visit__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #4A8FA0;
}

.p-first-visit__icon svg {
  width: 22px;
  height: 22px;
}

.p-first-visit__item-text {
  font-size: 14px;
  line-height: 1.8;
  color: #2A4A5A;
}

.p-first-visit__item-note {
  font-size: 12px;
  color: #7A8A92;
}

.p-first-visit__flow {
  margin-bottom: 64px;
}

.p-first-visit__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: flow-step;
}
@media (min-width: 768px) {
  .p-first-visit__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.p-first-visit__step {
  position: relative;
  overflow: hidden;
  background: #F5F5F3;
  border-radius: 12px;
  padding: 0 0 28px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.p-first-visit__step-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  outline-offset: -1px;
}

.p-first-visit__step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #4A8FA0;
  border-bottom: 1.5px solid #4A8FA0;
  transform: translateX(-50%) rotate(45deg);
}
@media (min-width: 768px) {
  .p-first-visit__step:not(:last-child)::after {
    bottom: auto;
    top: 50%;
    left: auto;
    right: -26px;
    transform: translateY(-50%) rotate(-45deg);
  }
}

.p-first-visit__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 22px 24px 12px;
  border-radius: 50%;
  background: #4A8FA0;
  color: #FFFFFF;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

.p-first-visit__step-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  margin: 0 24px 8px;
}

.p-first-visit__step-text {
  margin: 0 24px;
  font-size: 13px;
  line-height: 1.9;
}

.p-access {
  background: #F5F5F3;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-access {
    padding: 100px 0;
  }
}

.p-access__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-access__inner {
    padding: 0 40px;
  }
}

.p-access__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .p-access__content {
    flex-direction: row;
    gap: 48px;
  }
}

@media (min-width: 768px) {
  .p-access__map {
    width: 50%;
  }
}

.p-access__map iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .p-access__map iframe {
    height: 100%;
    min-height: 420px;
  }
}

@media (min-width: 768px) {
  .p-access__detail {
    width: 50%;
  }
}

.p-access__row {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(42, 74, 90, 0.12);
}

.p-access__term {
  flex-shrink: 0;
  width: 80px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #4A8FA0;
}

.p-access__desc {
  font-size: 14px;
  line-height: 1.8;
  font-variant-numeric: tabular-nums;
}

.p-access__tel {
  color: #2A4A5A;
  transition: color 0.2s ease;
}

.p-access__tel:hover {
  color: #4A8FA0;
}

.p-route {
  background: #FFFFFF;
  padding: 60px 0;
}
@media (min-width: 768px) {
  .p-route {
    padding: 100px 0;
  }
}

.p-route__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-route__inner {
    padding: 0 40px;
  }
}

.p-route__lead {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 2;
}
@media (min-width: 768px) {
  .p-route__lead {
    margin-bottom: 48px;
  }
}

.p-route__list {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .p-route__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-route__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.06), 0px 1px 2px -1px rgba(0, 0, 0, 0.06), 0px 2px 4px 0px rgba(0, 0, 0, 0.04);
}

.p-route__figure {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.p-route__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid rgba(0, 0, 0, 0.1);
  outline-offset: -1px;
}

.p-route__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 20px 24px;
}

.p-route__step {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #D6EEF2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #4A8FA0;
  text-transform: uppercase;
}

.p-route__title {
  margin-bottom: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  word-break: keep-all;
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
}

.p-route__text {
  font-size: 14px;
  line-height: 1.9;
}

.p-contact {
  background: #4A8FA0;
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .p-contact {
    padding: 100px 0;
  }
}

.p-contact__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-contact__inner {
    padding: 0 40px;
  }
}

.p-contact .c-section-heading {
  align-items: center;
}

.p-contact__tel {
  margin-bottom: 16px;
}

.p-contact__tel-link {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  transition: opacity 0.2s ease;
}

.p-contact__tel-link:hover {
  opacity: 0.8;
}

.p-contact__tel-label {
  font-size: 0.5em;
  letter-spacing: 0.1em;
  vertical-align: middle;
  margin-right: 0.3em;
}

.p-contact__text {
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.p-contact__cta {
  margin-bottom: 40px;
}

.p-contact__hours {
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  font-variant-numeric: tabular-nums;
}

.p-privacy {
  background: #FFFFFF;
  padding: 100px 0 60px;
}
@media (min-width: 768px) {
  .p-privacy {
    padding: 132px 0 100px;
  }
}

.p-privacy__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .p-privacy__inner {
    padding: 0 40px;
  }
}

.p-privacy__lead {
  margin-bottom: 40px;
}

.p-privacy__section {
  margin-bottom: 36px;
}

.p-privacy__heading {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #2A4A5A;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(42, 74, 90, 0.12);
}

.p-privacy__text {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 8px;
}

.p-privacy__list {
  margin-top: 8px;
}

.p-privacy__list-item {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  line-height: 2;
}

.p-privacy__list-item::before {
  content: "";
  position: absolute;
  top: 0.85em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8EC4CE;
}

.p-privacy__back {
  margin-top: 56px;
  text-align: center;
}

.u-br-sm {
  display: inline;
}
@media (min-width: 576px) {
  .u-br-sm {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
