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

/* Remove default padding */
header ul,
header ol {
  padding: 0;
}

footer ul,
footer ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: normal;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 16px;
  max-width: 100%;
  overflow-x: clip;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 100%;
  overflow-x: clip;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

.top-page-scale {
  box-sizing: border-box;
  width: min(100%, 1920px);
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background-color: #fff;
}

.top-page {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  font-size: 0.875rem;
  color: #fff;
  font-family: "Kozuka Mincho Pro", serif;
}

.top-page__section {
  position: relative;
  width: 100%;
}

.top-page__section--kv {
  position: relative;
  margin-top: 5.9375rem;
  color: #000c4a;
}

.top-page__kv-main {
  position: relative;
  z-index: 1;
}

.top-page__kv-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  max-width: 100%;
}

.top-page__hero-swiper {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 0;
  width: 100%;
  max-width: 100%;
}

.top-page__hero-swiper .swiper-slide {
  height: auto;
}

.top-page__hero-swiper.swiper-fade .swiper-slide {
  pointer-events: none;
}

.top-page__hero-swiper.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.top-page__hero-pagination {
  position: absolute;
  right: 0;
  bottom: 1rem;
  left: 0;
  z-index: 2;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 1rem;
  padding-bottom: 0;
  padding-left: 1rem;
  text-align: center;
  pointer-events: none;
}

.top-page__hero-pagination .swiper-pagination-bullet {
  margin-top: 0;
  margin-right: 0.375rem;
  margin-bottom: 0;
  margin-left: 0.375rem;
  background-color: #fff;
  opacity: 0.45;
  pointer-events: auto;
}

.top-page__hero-pagination .swiper-pagination-bullet-active {
  background-color: #9e8903;
  opacity: 1;
}

.top-page__hero-photo {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1920/1075;
  display: block;
  object-fit: cover;
}

.top-page__hero-copy {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  align-self: start;
  box-sizing: border-box;
  max-width: calc(980 * min(100vw, 1920px) / 1920);
  margin-top: calc(56 * min(100vw, 1920px) / 1920);
  margin-right: auto;
  margin-bottom: 0;
  margin-left: calc(140 * min(100vw, 1920px) / 1920);
  padding-top: 0;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .top-page__hero-copy {
    align-self: start;
    max-width: 100%;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 0;
    margin-left: 1rem;
    padding-top: 0.5rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 0.25rem;
  }
}

.top-page__hero-lead {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 1.25rem;
  margin-left: 0;
  font-size: clamp(0.75rem, 1.05vw, 1.125rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000c4a;
  letter-spacing: 0.06em;
  line-height: 1.75rem;
}
@media screen and (max-width: 768px) {
  .top-page__hero-lead {
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
    line-height: 1.375rem;
  }
}

.top-page__hero-title {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 1.75rem;
  margin-left: 0;
  line-height: 1.45;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  font-size: clamp(1.625rem, 3.3vw, 3.5rem);
  font-weight: 400;
  font-family: "Kozuka Mincho Pro", serif;
  color: #fff;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 768px) {
  .top-page__hero-title {
    margin-bottom: 0.875rem;
    font-size: 1.75rem;
    line-height: 1.32;
    letter-spacing: 0.05em;
  }
}

.top-page__hero-title-line {
  display: block;
  letter-spacing: 0.06em;
}

.top-page__hero-title-line + .top-page__hero-title-line {
  margin-top: 0.5rem;
}

.top-page__hero-features {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  gap: 1rem calc(56 * min(100vw, 1920px) / 1920);
  list-style: none;
}

.top-page__hero-feature {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  gap: 0.5rem;
}

.top-page__hero-feature-icon-wrap {
  flex-shrink: 0;
  max-width: 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  aspect-ratio: 1/1;
}

.top-page__hero-feature-icon-wrap .top-page__hero-feature-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-page__hero-feature-text {
  font-size: clamp(0.75rem, 1.05vw, 1.125rem);
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.625rem;
  white-space: nowrap;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .top-page__hero-feature-text {
    white-space: normal;
    font-size: 0.8125rem;
    line-height: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .top-page__section--kv {
    margin-top: 4.5rem;
  }
  .top-page__kv-hero {
    align-items: stretch;
  }
  .top-page__hero-swiper .top-page__hero-photo {
    aspect-ratio: 9/16;
    max-height: min(45rem, 92svh);
    object-fit: cover;
    object-position: center center;
  }
  .top-page__hero-title-line + .top-page__hero-title-line {
    margin-top: 0.375rem;
  }
  .top-page__hero-features {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .top-page__hero-feature {
    gap: 0.375rem;
  }
  .top-page__hero-feature-icon-wrap {
    max-width: 1.625rem;
    width: 1.625rem;
    height: 1.625rem;
  }
}
.top-page__section--strengths {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.strengths__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.strengths__deco-circle--upper-left {
  position: absolute;
  top: -3rem;
  left: -6.25rem;
  width: calc(380 * min(100vw, 1920px) / 1920);
  height: auto;
  aspect-ratio: 1/1;
  opacity: 0.35;
}

.strengths__deco-plate {
  position: absolute;
  top: 1.75rem;
  left: 0.75rem;
  width: calc(180 * min(100vw, 1920px) / 1920);
  height: calc(172 * min(100vw, 1920px) / 1920);
  background-color: #a1bce8;
  opacity: 0.4;
}

.strengths-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  max-width: 1200px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.strengths-icon--surgery,
.strengths-icon--equipment,
.strengths-icon--pricing {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1.375rem;
  color: #fff;
}

.strengths-icon__title {
  margin-top: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.strengths-icon__ring {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  flex-shrink: 0;
}

.strengths-icon__seg--01,
.strengths-icon__seg--02,
.strengths-icon__seg--03,
.strengths-icon__seg--04,
.strengths-icon__seg--05,
.strengths-icon__seg--06,
.strengths-icon__seg--07,
.strengths-icon__seg--08,
.strengths-icon__seg--09,
.strengths-icon__seg--10,
.strengths-icon__seg--11 {
  position: absolute;
  background-color: #fff;
}

.strengths-icon__seg--01 {
  top: 0;
  left: calc(50% + 0.296875rem);
  width: 0.025rem;
  height: 0.65rem;
}

.strengths-icon__seg--02 {
  top: 0.031875rem;
  left: calc(50% + 0.055625rem);
  width: 0.025rem;
  height: 0.65rem;
  transform: rotate(345deg);
}

.strengths-icon__seg--03 {
  top: 0.125rem;
  left: calc(50% - 0.169375rem);
  width: 0.025rem;
  height: 0.65rem;
  transform: rotate(330deg);
}

.strengths-icon__seg--04 {
  top: calc(50% - 0.676875rem);
  left: calc(50% - 0.3625rem);
  width: 0.025rem;
  height: 0.65rem;
  transform: rotate(315deg);
}

.strengths-icon__seg--05 {
  top: calc(50% - 0.48375rem);
  left: 0.439375rem;
  width: 0.025rem;
  height: 0.65rem;
  transform: rotate(300deg);
}

.strengths-icon__seg--06 {
  top: calc(50% - 0.25875rem);
  left: 0.34625rem;
  width: 0.025rem;
  height: 0.65rem;
  transform: rotate(285deg);
}

.strengths-icon__seg--07 {
  top: calc(50% + 0.296875rem);
  left: 0;
  width: 0.65rem;
  height: 0.025rem;
}

.strengths-icon__seg--08 {
  top: calc(50% + 0.538125rem);
  left: 0.031875rem;
  width: 0.65rem;
  height: 0.025rem;
  transform: rotate(345deg);
}

.strengths-icon__seg--09 {
  bottom: 0.161875rem;
  left: 0.125rem;
  width: 0.65rem;
  height: 0.025rem;
  transform: rotate(330deg);
}

.strengths-icon__seg--10 {
  top: 0.439375rem;
  right: -0.14875rem;
  width: 0.65rem;
  height: 0.025rem;
  transform: rotate(300deg);
}

.strengths-icon__seg--11 {
  top: 0.34625rem;
  left: calc(50% + 0.22375rem);
  width: 0.65rem;
  height: 0.025rem;
  transform: rotate(285deg);
}

.top-page__section--floating-cta {
  position: relative;
  z-index: 6;
  overflow: hidden;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.floating-cta__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-cta__deco-circle--right {
  position: absolute;
  top: 50%;
  right: -6.25rem;
  width: calc(300 * min(100vw, 1920px) / 1920);
  height: auto;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  opacity: 0.3;
}

.top-page__floating-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: auto;
  font-size: 1.3125rem;
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #fff;
}

.top-page__floating-cta-phone,
.top-page__floating-cta-booking,
.top-page__floating-cta-contact {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  flex: 0 0 auto;
  width: min(33.33%, 14.9375rem);
}

.top-page__floating-cta-phone {
  padding-top: 0.625rem;
  padding-right: 0.75rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
  background: radial-gradient(50% 50% at 50% 50%, #c2b136, #d2ad26 8.2%, #95851a);
  text-align: left;
  font-size: 1.0625rem;
}

.top-page__floating-cta-booking {
  background: radial-gradient(50% 50% at 50% 50%, #038aaa, #2e92ab 49.37%, #057c98);
}

.top-page__floating-cta-contact {
  background: radial-gradient(50% 50% at 50% 50%, #2d599c, #003384);
}

.top-page__floating-cta-hours {
  position: absolute;
  bottom: 0.5rem;
  left: 1.4375rem;
  font-weight: 500;
}

.top-page__floating-cta-tel {
  margin-top: 0.5rem;
  font-size: 1.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.top-page__floating-cta-tel-icon {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 1.3125rem;
  height: auto;
  transform: translateY(-50%);
}

.top-page__floating-cta-booking-text {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.top-page__floating-cta-booking-icon,
.top-page__floating-cta-contact-icon {
  margin-top: 0.375rem;
  width: 1.875rem;
  height: auto;
}

.top-page__floating-cta-contact-text {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.top-page__section--medical-guide {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  padding-top: calc(80 * min(100vw, 1920px) / 1920);
  padding-bottom: calc(220 * min(100vw, 1920px) / 1920);
  background: radial-gradient(ellipse 95% 70% at 50% 15%, #fff 0%, #f5fafe 42%, #fff 100%);
}
@media screen and (max-width: 768px) {
  .top-page__section--medical-guide {
    padding-bottom: 3.75rem;
  }
}

.medical-guide__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow-x: clip;
  overflow-y: visible;
  pointer-events: none;
}

.medical-guide__decor-circle {
  position: absolute;
  top: 1.5rem;
  left: -6.25rem;
  z-index: 0;
  width: 100%;
  max-width: 62.5rem;
  height: auto;
  aspect-ratio: 1/1;
  opacity: 1;
}

.medical-guide__deco-graphic {
  position: absolute;
  left: calc(50% - 39.6875rem - 6.25rem);
  top: clamp(22.5rem, 48vw, 37.5rem);
  z-index: 0;
  width: 100%;
  max-width: 50rem;
  height: auto;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  .medical-guide__deco-graphic {
    left: 0.5rem;
    top: clamp(18.75rem, 68vw, 37.5rem);
    max-width: min(26.25rem, 88vw);
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .medical-guide__deco-graphic {
    top: auto;
    right: 0.5rem;
    bottom: 1rem;
    left: auto;
    max-width: min(16.25rem, 72vw);
    width: 100%;
  }
}
.medical-guide {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: 1920px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  width: 100%;
}

.medical-guide__intro {
  margin-top: 0;
  margin-bottom: 2.5rem;
  text-align: center;
}

.medical-guide__label-en {
  margin-top: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  font-family: "Source Han Serif", serif;
  color: #00368b;
}

.medical-guide__rule {
  margin-top: 0.75rem;
  margin-right: auto;
  margin-bottom: 0.75rem;
  margin-left: auto;
  border-top: 1px solid #9e8903;
  width: 3.375rem;
  height: 0;
}

.medical-guide__title {
  margin-top: 0;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  font-family: "Kozuka Mincho Pro", serif;
  font-weight: 400;
  color: #333;
}

.medical-guide__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  box-sizing: border-box;
  max-width: 1270px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style: none;
  width: 100%;
  border-top: 1px solid #9e8903;
  border-left: 1px solid #9e8903;
}

.medical-guide__cell {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
  aspect-ratio: 318/304;
}

.medical-guide__card {
  box-sizing: border-box;
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  border-right: 1px solid #9e8903;
  border-bottom: 1px solid #9e8903;
  background-color: transparent;
  transition: background-color 0.28s ease;
  padding-top: 1.75rem;
  padding-right: 1rem;
  padding-bottom: 1.75rem;
  padding-left: 1rem;
}

.medical-guide__card:hover {
  background-color: #a1bce8;
}

.medical-guide__card:hover .medical-guide__card-title {
  color: #fff;
}

.medical-guide__card:hover .medical-guide__desc {
  color: #fff;
}

.medical-guide__card:focus-visible {
  outline: 2px solid #00368b;
  outline-offset: 2px;
}

.medical-guide__card-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-family: "Kozuka Mincho Pro", serif;
  font-weight: 400;
  color: #9e8903;
  transition: color 0.28s ease;
}

.medical-guide__icon-wrap {
  max-width: 6.5rem;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0.75rem;
  aspect-ratio: 1/0.75;
  display: flex;
  align-items: center;
  justify-content: center;
}

.medical-guide__icon-wrap .medical-guide__icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.medical-guide__desc {
  margin-top: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "Source Han Sans", sans-serif;
  color: #333;
  transition: color 0.28s ease;
}

@media screen and (max-width: 1024px) {
  .medical-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(min-content, auto);
  }
  .medical-guide__cell {
    aspect-ratio: auto;
    min-height: 0;
  }
  .medical-guide__card {
    height: auto;
    min-height: 0;
    padding-top: 0.875rem;
    padding-right: 0.625rem;
    padding-bottom: 0.875rem;
    padding-left: 0.625rem;
  }
  .medical-guide__card-title {
    margin-bottom: 0.375rem;
    font-size: 1rem;
  }
  .medical-guide__icon-wrap {
    max-width: 4.5rem;
    margin-bottom: 0.5rem;
  }
  .medical-guide__desc {
    font-size: 0.6875rem;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }
}
@media screen and (max-width: 768px) {
  .medical-guide {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
  .medical-guide__card {
    padding-top: 0.75rem;
    padding-right: 0.5rem;
    padding-bottom: 0.75rem;
    padding-left: 0.5rem;
  }
  .medical-guide__card-title {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
  }
  .medical-guide__icon-wrap {
    max-width: 3.75rem;
    margin-bottom: 0.375rem;
  }
  .medical-guide__desc {
    font-size: 0.625rem;
    line-height: 1.5;
  }
}
.top-page__section--feature {
  position: relative;
  overflow-x: visible;
  overflow-y: visible;
  padding-top: 0;
  padding-bottom: 4rem;
}

.feature-block__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.feature-block__deco-circle--lower-left {
  position: absolute;
  bottom: calc(-72 * min(100vw, 1920px) / 1920);
  left: calc(-88 * min(100vw, 1920px) / 1920);
  width: calc(945 * min(100vw, 1920px) / 1920);
  height: auto;
  aspect-ratio: 1/1;
  opacity: 1;
}

.feature-block__deco-photo-wide {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(63%, 56.25rem);
  height: auto;
  max-height: 48%;
  aspect-ratio: 1217/1163;
  object-fit: cover;
  opacity: 0.22;
}

.feature-block {
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  max-width: 1920px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  width: 100%;
}

.feature-block__header {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 3.5rem;
  padding-right: 1.5rem;
  padding-bottom: 2.5rem;
  padding-left: 1.5rem;
  text-align: center;
}

.feature-block__label-en {
  margin-top: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  color: #00368b;
}

.feature-block__rule {
  margin-top: 0.75rem;
  margin-right: auto;
  margin-bottom: 0.75rem;
  margin-left: auto;
  border-top: 1px solid #c2a712;
  width: 3.375rem;
  height: 0;
}

.feature-block__title {
  margin-top: 0;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  font-family: "Kozuka Mincho Pro", serif;
  font-weight: 400;
  color: #333;
}

.feature-block__rows {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.feature-block__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  min-height: 0;
}

.feature-block__row--reverse {
  flex-direction: row-reverse;
}

.feature-block__media {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  overflow: hidden;
  position: relative;
  background-color: #f5fafe;
}
.feature-block__media::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to right, transparent 0%, transparent 80%, rgba(245, 250, 254, 0.2) 88%, rgba(245, 250, 254, 0.55) 92%, #f5fafe 96%, #f5fafe 100%);
}

.feature-block__row--reverse .feature-block__media::after {
  background: linear-gradient(to left, transparent 0%, transparent 80%, rgba(245, 250, 254, 0.2) 88%, rgba(245, 250, 254, 0.55) 92%, #f5fafe 96%, #f5fafe 100%);
}

.feature-block__image {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 17.5rem;
  object-fit: cover;
}

.feature-block__content {
  box-sizing: border-box;
  flex: 0 0 50%;
  max-width: 50%;
  width: 50%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  background-color: #f5fafe;
}

.feature-block__content-inner {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 3rem;
  padding-right: 3.5rem;
  padding-bottom: 3rem;
  padding-left: 3.5rem;
}
@media screen and (max-width: 1024px) {
  .feature-block__content-inner {
    padding-top: 2rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    padding-left: 1.5rem;
  }
}

.feature-block__lead {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 0.75rem;
}

.feature-block__num {
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 5rem;
  line-height: 1;
  font-family: Garamond, serif;
  font-weight: 400;
  color: #a1bce8;
  opacity: 0.55;
}

.feature-block__heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  font-family: "Source Han Serif", serif;
  font-weight: 500;
  color: #333;
}

.feature-block__rule-line {
  margin-top: 1rem;
  margin-right: 0;
  margin-bottom: 1.5rem;
  margin-left: 0;
  border-top: 1px solid #c2a712;
  width: 100%;
  height: 0;
}

.feature-block__body {
  margin-top: 0;
  font-size: 0.875rem;
  line-height: 1.875rem;
  letter-spacing: 0.05em;
  font-family: "Source Han Sans", sans-serif;
  color: #333;
}

@media screen and (max-width: 768px) {
  .feature-block__row {
    flex-direction: column;
  }
  .feature-block__row--reverse {
    flex-direction: column;
  }
  .feature-block__media {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .feature-block__content {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .feature-block__image {
    min-height: 13.75rem;
    aspect-ratio: 960/565;
    height: auto;
  }
  .feature-block__media::after {
    background: linear-gradient(to bottom, transparent 0%, transparent 78%, rgba(245, 250, 254, 0.2) 88%, rgba(245, 250, 254, 0.55) 92%, #f5fafe 96%, #f5fafe 100%);
  }
  .feature-block__row--reverse .feature-block__media::after {
    background: linear-gradient(to bottom, transparent 0%, transparent 78%, rgba(245, 250, 254, 0.2) 88%, rgba(245, 250, 254, 0.55) 92%, #f5fafe 96%, #f5fafe 100%);
  }
}
.top-page__section--greeting {
  position: relative;
  overflow-x: visible;
  overflow-y: visible;
  padding-top: 3.5rem;
  padding-right: 1.5rem;
  padding-bottom: 20rem;
  padding-left: 1.5rem;
  color: #333;
}

.greeting-section__decor {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: visible;
  pointer-events: none;
}

.greeting-section__deco-circle--lower-right {
  position: absolute;
  right: calc(-88 * min(100vw, 1920px) / 1920);
  bottom: calc(-72 * min(100vw, 1920px) / 1920);
  width: calc(945 * min(100vw, 1920px) / 1920);
  height: auto;
  aspect-ratio: 1/1;
  opacity: 1;
}

.greeting-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 70vw;
  max-width: min(70vw, 84rem);
  height: auto;
  pointer-events: none;
  overflow: hidden;
}

.greeting-section__bg-inner {
  position: relative;
  width: 100%;
  height: auto;
}

.greeting-section__bg-image {
  width: 100%;
  max-width: 76.0625rem;
  height: auto;
  aspect-ratio: 1217/1163;
}
.greeting-section__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greeting-section__bg-photo {
  display: block;
}

.greeting-section__inner {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  max-width: 81.25rem;
  width: 100%;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.greeting-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  align-items: stretch;
}

.greeting-section__column--text {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  min-width: 0;
}

.greeting-section__intro {
  box-sizing: border-box;
  padding-top: 2.5rem;
  padding-right: 1.25rem;
  padding-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.greeting-section__head {
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
}

.greeting-section__label-en {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  font-family: "Source Han Serif", serif;
  color: #ECD5D5;
}

.greeting-section__rule {
  margin-top: 0.75rem;
  margin-right: auto;
  margin-bottom: 0.75rem;
  margin-left: auto;
  border-top: 1px solid #9e8903;
  width: 3.375rem;
  height: 0;
}

.greeting-section__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.875rem;
  letter-spacing: 0.1em;
  font-family: "Kozuka Mincho Pro", serif;
  font-weight: 400;
  color: #ECD5D5;
}

.greeting-section__text-panel {
  max-width: 657px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.5rem;
  flex-grow: 0;
  margin-top: 1.75rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 1.5rem;
  padding-right: 1.25rem;
  padding-bottom: 1.5rem;
  padding-left: 1.25rem;
  background-color: rgba(35, 35, 35, 0.67);
}

.greeting-section__lead {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.06em;
  font-family: "Kozuka Mincho Pro", serif;
  color: #ECD5D5;
  text-align: center;
}

.greeting-section__body {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.75rem;
  line-height: 1.75rem;
  letter-spacing: 0.05em;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-weight: 400;
  color: #fff;
  text-align: left;
  text-shadow: 0 0.1875rem 0 #000;
}

.greeting-section__cta {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 15rem;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: 0;
  align-self: flex-start;
  padding-top: 1.625rem;
  padding-right: 3.75rem;
  padding-bottom: 1.625rem;
  padding-left: 3.75rem;
  border: 1px solid #9e8903;
  background-color: #fff;
  color: #333333;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.greeting-section__cta:hover {
  opacity: 0.88;
}

.greeting-section__cta-text {
  font-weight: 300;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

.greeting-section__cta-icon {
  display: block;
  width: 0.5625rem;
  height: auto;
  flex-shrink: 0;
}

.greeting-section__column--aside {
  position: relative;
  z-index: 2;
  margin-top: 7rem;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 1.75rem;
  min-width: 0;
  justify-self: end;
  width: 100%;
  max-width: 42.3125rem;
}

.greeting-section__aside-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-end;
  width: 100%;
}

.greeting-section__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42.3125rem;
  height: auto;
  aspect-ratio: 677/625;
}
.greeting-section__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.greeting-section__card-bg {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 42.3125rem;
  margin-top: -7rem;
  margin-right: 20px;
  margin-bottom: 0;
  margin-left: -3rem;
  padding-top: 0.9375rem;
  padding-right: 1.75rem;
  padding-bottom: 1.8125rem;
  padding-left: 1.75rem;
  background-color: #00368b;
}

.greeting-section__card-name {
  margin-top: 0;
  text-align: right;
}

.greeting-section__role {
  display: inline-block;
  margin-right: 0.625rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  font-family: "Source Han Sans", sans-serif;
  color: #fff;
}

.greeting-section__name {
  display: inline-block;
  font-size: 1.75rem;
  letter-spacing: 0.08em;
  font-family: "Kozuka Mincho Pro", serif;
  font-weight: 400;
  color: #fff;
}

.greeting-section__card-columns {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.greeting-section__card-col {
  min-width: 0;
}

.greeting-section__card-col:first-child {
  flex-grow: 0.88;
  flex-shrink: 1;
  flex-basis: 0;
}

.greeting-section__card-col:last-child {
  flex-grow: 1.12;
  flex-shrink: 1;
  flex-basis: 0;
}

.greeting-section__cv-label,
.greeting-section__society-label {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  font-family: "Source Han Sans", sans-serif;
  font-weight: 500;
  color: #fff;
}

.greeting-section__col-rule {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0.75rem;
  margin-left: 0;
  border-top: 1px solid #9e8903;
  width: 3rem;
  height: 0;
}

.greeting-section__career,
.greeting-section__societies {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.6875rem;
  line-height: 1.5rem;
  letter-spacing: 0.04em;
  font-family: "Source Han Sans", sans-serif;
  font-weight: 400;
  color: #fff;
}

.greeting-section__career-nowrap {
  white-space: nowrap;
}

.greeting-section__societies {
  column-count: 2;
  column-gap: 1rem;
}

@media screen and (max-width: 1024px) {
  .top-page__section--greeting {
    padding-top: 2.25rem;
    padding-right: 1rem;
    padding-bottom: 4.5rem;
    padding-left: 1rem;
  }
  .greeting-section__bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: auto;
    overflow: hidden;
    pointer-events: none;
  }
  .greeting-section__bg-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .greeting-section__bg-inner::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: rgba(245, 250, 254, 0.52);
    pointer-events: none;
  }
  .greeting-section__bg-image {
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    aspect-ratio: unset;
  }
  .greeting-section__bg-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .greeting-section__layout {
    grid-template-columns: 1fr;
    gap: 0;
    row-gap: 0;
  }
  .greeting-section__column--text {
    align-items: stretch;
  }
  .greeting-section__intro {
    min-height: clamp(12.5rem, 38vh, 22.5rem);
    padding-top: 1.75rem;
    padding-right: 0.75rem;
    padding-bottom: 1rem;
    padding-left: 0.75rem;
  }
  .greeting-section__title {
    font-size: 1.625rem;
  }
  .greeting-section__text-panel {
    max-width: none;
    margin-top: 1.25rem;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding-top: 1.25rem;
    padding-right: 1rem;
    padding-bottom: 1.25rem;
    padding-left: 1rem;
    gap: 1.25rem;
  }
  .greeting-section__lead {
    font-size: 1rem;
    line-height: 1.65;
  }
  .greeting-section__body {
    font-size: 0.8125rem;
    line-height: 1.625rem;
  }
  .greeting-section__cta {
    box-sizing: border-box;
    margin-top: 2.5rem;
    margin-right: 0;
    margin-left: 0;
    align-self: stretch;
    justify-content: center;
    padding-top: 1.125rem;
    padding-right: 1.25rem;
    padding-bottom: 1.125rem;
    padding-left: 1.25rem;
    width: 100%;
  }
  .greeting-section__column--aside {
    margin-top: 2rem;
    margin-right: 0;
    margin-left: 0;
    max-width: none;
    justify-self: stretch;
  }
  .greeting-section__aside-inner {
    align-items: stretch;
  }
  .greeting-section__photo {
    max-width: none;
  }
  .greeting-section__card-bg {
    width: 100%;
    max-width: none;
    margin-top: -4rem;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 1.125rem;
    padding-right: 1.25rem;
    padding-bottom: 1.5rem;
    padding-left: 1.25rem;
  }
  .greeting-section__card-name {
    text-align: left;
  }
  .greeting-section__card-columns {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
  .greeting-section__card-col:first-child,
  .greeting-section__card-col:last-child {
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
  }
  .greeting-section__career-nowrap {
    white-space: normal;
  }
  .greeting-section__societies {
    column-count: 1;
  }
}
@media screen and (max-width: 768px) {
  .top-page__section--greeting {
    padding-top: 1.75rem;
    padding-right: 0.75rem;
    padding-bottom: 3.5rem;
    padding-left: 0.75rem;
  }
  .greeting-section__intro {
    min-height: 0;
    padding-top: 1.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.75rem;
    padding-left: 0.5rem;
  }
  .greeting-section__title {
    font-size: 1.375rem;
  }
  .greeting-section__text-panel {
    margin-top: 1rem;
    padding-top: 1rem;
    padding-right: 0.75rem;
    padding-bottom: 1rem;
    padding-left: 0.75rem;
    gap: 1rem;
  }
  .greeting-section__lead {
    font-size: 0.9375rem;
  }
  .greeting-section__body {
    font-size: 0.75rem;
    line-height: 1.5rem;
  }
  .greeting-section__cta {
    margin-top: 2rem;
    padding-top: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    width: 100%;
  }
  .greeting-section__card-bg {
    margin-top: -3rem;
    padding-top: 0.875rem;
    padding-right: 1rem;
    padding-bottom: 1.25rem;
    padding-left: 1rem;
  }
  .greeting-section__name {
    font-size: 1.5rem;
  }
}
/* 16px＝1rem（組み込みの rem() と区別） */
.clinic-section {
  position: relative;
  overflow-x: hidden;
}

.clinic-section__image {
  position: relative;
  width: 100%;
  height: 493px;
}
@media screen and (max-width: 768px) {
  .clinic-section__image {
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .clinic-section__image {
    height: 150px;
  }
}
.clinic-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clinic-section__inner {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 50px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .clinic-section__inner {
    padding-top: 30px;
    padding-right: 15px;
    padding-bottom: 30px;
    padding-left: 15px;
  }
}

.clinic-section__title {
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  font-size: 2.5rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 2.32px;
  line-height: 1;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .clinic-section__title {
    font-size: 1.5rem;
    letter-spacing: 1.4px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.clinic-section__content {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .clinic-section__content {
    flex-direction: column;
    gap: 25px;
  }
}

.clinic-section__gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .clinic-section__gallery {
    flex-direction: row;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .clinic-section__gallery {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}

.clinic-section__photo {
  max-width: 100%;
  width: 100%;
  height: auto;
  aspect-ratio: 672/420;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .clinic-section__photo {
    max-width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 768px) {
  .clinic-section__photo {
    max-width: 90%;
    width: 90%;
  }
}

.clinic-section__map-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .clinic-section__map-wrapper {
    max-width: calc(50% - 7.5px);
  }
}
@media screen and (max-width: 768px) {
  .clinic-section__map-wrapper {
    max-width: 90%;
    width: 90%;
  }
}

.clinic-section__map {
  width: 100%;
  aspect-ratio: 672/420;
}
.clinic-section__map iframe {
  width: 100%;
  height: 100%;
}

.clinic-section__map-link {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #009dc4;
  text-decoration: none;
}
.clinic-section__map-link:hover {
  text-decoration: underline;
}

.clinic-section__info {
  flex: 1;
  min-width: 0;
}

.clinic-section__logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .clinic-section__logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
}
.clinic-section__logo img:first-child {
  max-width: 117px;
  width: 15%;
  min-width: 70px;
  height: auto;
  aspect-ratio: 117/73;
  object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .clinic-section__logo img:first-child {
    width: 80px;
  }
}
.clinic-section__logo img:last-child {
  max-width: 496px;
  width: 100%;
  height: auto;
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 1024px) {
  .clinic-section__logo img:last-child {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .clinic-section__logo img:last-child {
    max-width: 280px;
  }
}

.clinic-section__schedule {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .clinic-section__schedule {
    margin-bottom: 20px;
  }
}

.clinic-section__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  table-layout: fixed;
}
@media screen and (max-width: 768px) {
  .clinic-section__table {
    margin-bottom: 10px;
  }
}
.clinic-section__table th,
.clinic-section__table td {
  font-size: 1.125rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.47px;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  text-align: center;
  border: 1px solid #cfcfcf;
}
@media screen and (max-width: 1024px) {
  .clinic-section__table th,
  .clinic-section__table td {
    font-size: 0.875rem;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .clinic-section__table th,
  .clinic-section__table td {
    font-size: 0.625rem;
    padding-top: 5px;
    padding-right: 3px;
    padding-bottom: 5px;
    padding-left: 3px;
    letter-spacing: 0;
  }
}
@media screen and (max-width: 375px) {
  .clinic-section__table th,
  .clinic-section__table td {
    font-size: 0.5625rem;
    padding-top: 4px;
    padding-right: 2px;
    padding-bottom: 4px;
    padding-left: 2px;
  }
}
.clinic-section__table th {
  background-color: #00368b;
  color: #fff;
}
.clinic-section__table th:first-child {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .clinic-section__table th:first-child {
    width: 30%;
  }
}
.clinic-section__table td {
  color: #242424;
}

.clinic-section__mark {
  color: #9e8903;
  font-size: 1.4375rem;
}
@media screen and (max-width: 1024px) {
  .clinic-section__mark {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .clinic-section__mark {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 375px) {
  .clinic-section__mark {
    font-size: 0.625rem;
  }
}

.clinic-section__circle {
  color: #00368b;
  font-size: 1.4375rem;
}
@media screen and (max-width: 1024px) {
  .clinic-section__circle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .clinic-section__circle {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 375px) {
  .clinic-section__circle {
    font-size: 0.625rem;
  }
}

.clinic-section__schedule-note {
  font-size: 0.9375rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.47px;
  color: #242424;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .clinic-section__schedule-note {
    font-size: 0.8125rem;
    letter-spacing: 0.34px;
    line-height: 1.6;
  }
}

.clinic-section__contact {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .clinic-section__contact {
    margin-bottom: 20px;
  }
}

.clinic-section__address {
  font-size: 1.125rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.47px;
  color: #242424;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .clinic-section__address {
    font-size: 0.875rem;
    letter-spacing: 0.34px;
  }
}

.clinic-section__tel {
  font-size: 1.25rem;
  font-family: "Source Han Sans JP", sans-serif;
  line-height: 41px;
  color: #242424;
  margin-bottom: 5px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .clinic-section__tel {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.clinic-section__tel a {
  font-size: 2.25rem;
  letter-spacing: 0.94px;
  color: #242424;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .clinic-section__tel a {
    font-size: 1.5rem;
    letter-spacing: 0.48px;
  }
}

.clinic-section__time {
  font-size: 1.125rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.47px;
  line-height: 30px;
  color: #242424;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .clinic-section__time {
    font-size: 0.8125rem;
    letter-spacing: 0.34px;
    line-height: 1.5;
  }
}

.clinic-section__map-link {
  font-size: 0.8125rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.34px;
  color: #242424;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .clinic-section__map-link {
    font-size: 0.75rem;
  }
}

.clinic-section__menu h3 {
  font-size: 1.125rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.47px;
  color: #242424;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .clinic-section__menu h3 {
    font-size: 0.9375rem;
    letter-spacing: 0.39px;
  }
}
.clinic-section__menu ul {
  list-style: none;
}
.clinic-section__menu ul li {
  font-size: 0.9375rem;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.39px;
  line-height: 23px;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .clinic-section__menu ul li {
    font-size: 0.8125rem;
    letter-spacing: 0.34px;
    line-height: 1.7;
  }
}

/* ========================================
  headerのCSS記述2026/02/08最新
   ======================================== */

   .new-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 100;
    }
    
    .new-header__inner {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 12px;
    padding-right: clamp(15px, 2vw, 30px);
    padding-left: clamp(15px, 2vw, 30px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 95px;
    }
    
    .new-header__brand {
    display: flex;
    align-items: center;
    gap: clamp(5px, 0.8vw, 15px);
    flex-shrink: 1;
    min-width: 0;
    }
    
    .new-header__logo {
    display: block;
    width: clamp(40px, 4vw, 80px);
    flex-shrink: 0;
    height: auto;
    }
    .new-header__logo img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    }
    
    .new-header__title {
    font-size: clamp(11px, 1.3vw, 24px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #00368b;
    white-space: nowrap;
    }
    
    .new-header__icl-badge {
    background-color: #009dc4;
    color: #fff;
    font-size: clamp(11px, 1.1vw, 21px);
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    letter-spacing: 0.21px;
    padding-top: clamp(3px, 0.3vw, 5px);
    padding-right: clamp(6px, 0.6vw, 12px);
    padding-bottom: clamp(3px, 0.3vw, 5px);
    padding-left: clamp(6px, 0.6vw, 12px);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    }

    .new-header__cta {
    display: flex;
    align-items: center;
    gap: clamp(6px, 0.6vw, 10px);
    text-decoration: none;
    color: #fff;
    background-color: #009dc4;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
    }
    .new-header__cta:hover {
    opacity: 0.85;
    }
    .new-header__cta-icon {
    flex-shrink: 0;
    display: block;
    }
    .new-header__cta-text {
    line-height: 1.3;
    letter-spacing: 0.02em;
    }

    .new-header__cta--reservation {
    gap: 6px;
    padding-top: clamp(7px, 0.6vw, 10px);
    padding-right: clamp(10px, 0.9vw, 14px);
    padding-bottom: clamp(7px, 0.6vw, 10px);
    padding-left: clamp(10px, 0.9vw, 14px);
    border-radius: 4px;
    font-size: clamp(11px, 0.8vw, 13px);
    background: radial-gradient(circle, #2D599C 0%, #003384 100%);
    }
    .new-header__cta--reservation .new-header__cta-icon {
    width: clamp(13px, 1vw, 17px);
    height: auto;
    }

    .new-header__cta--exam {
    align-self: flex-start;
    height: 95px;
    margin-top: -12px;
    margin-right: calc(-1 * (max(0px, (100vw - 1400px) / 2) + clamp(15px, 2vw, 30px)));
    padding-right: clamp(20px, 2vw, 35px);
    padding-left: clamp(20px, 2vw, 35px);
    font-size: clamp(12px, 1vw, 16px);
    text-align: left;
    gap: clamp(10px, 1vw, 14px);
    background: radial-gradient(circle, #038AAA 0%, #2E92AB 50%, #057C98 100%);
    }
    .new-header__cta--exam .new-header__cta-icon {
    width: clamp(24px, 2vw, 32px);
    height: auto;
    }

    .new-header__nav {
    display: flex;
    align-items: center;
    }
    
    .new-header__nav-list {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 30px);
    }
    
    .new-header__nav-item {
    list-style: none;
    }
    
    .new-header__nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #00368b;
    }
    
    .new-header__nav-text {
    font-size: clamp(11px, 1.1vw, 18px);
    font-family: "Noto Sans CJK JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    white-space: nowrap;
    }
    
    .new-header__nav-sub {
    font-size: clamp(9px, 0.7vw, 12px);
    font-family: "Source Han Serif", serif;
    color: #947705;
    letter-spacing: 0;
    }
    
    .new-header__nav-item--has-mega {
    position: relative;
    }
    .new-header__nav-item--has-mega:hover .new-header__mega-menu {
    opacity: 1;
    visibility: visible;
    }
    
    .new-header__mega-menu {
    position: fixed;
    top: 95px;
    left: 0;
    right: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
    }
    @media screen and (max-width: 768px) {
    .new-header__mega-menu {
      display: none;
    }
    }
    
    .new-header__mega-accordion {
    display: none !important;
    visibility: hidden;
    overflow: hidden;
    max-height: 0;
    }
    
    .new-header__mega-accordion-list,
    .new-header__mega-accordion-item,
    .new-header__mega-accordion-link {
    display: none !important;
    }
    
    @media screen and (max-width: 768px) {
    .new-header__mega-accordion {
      display: block !important;
      visibility: visible;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
      background-color: #f9f9f9;
    }
    .new-header__nav-item--has-mega.is-accordion-open .new-header__mega-accordion {
      max-height: 500px;
    }
    .new-header__nav-link--accordion-trigger .new-header__nav-text {
      position: relative;
      padding-right: 14px;
    }
    .new-header__nav-link--accordion-trigger .new-header__nav-text::after {
      content: "";
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 0;
      height: 0;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      border-bottom: 5px solid #00368b;
      transition: transform 0.25s ease;
    }
    .new-header__nav-item--has-mega.is-accordion-open .new-header__nav-link--accordion-trigger .new-header__nav-text::after {
      transform: translateY(-50%) rotate(180deg);
    }
    .new-header__mega-accordion-list {
      display: flex !important;
      flex-direction: column;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .new-header__mega-accordion-item {
      display: list-item !important;
      list-style: none;
      border-bottom: 1px solid #cfcfcf;
    }
    .new-header__mega-accordion-item:last-child {
      border-bottom: none;
    }
    .new-header__mega-accordion-link {
      display: block !important;
      font-size: 14px;
      font-family: "Noto Sans JP", sans-serif;
      font-weight: 500;
      color: #00368b;
      text-decoration: none;
      padding-top: 12px;
      padding-right: 20px;
      padding-bottom: 12px;
      padding-left: 20px;
    }
    }
    .new-header__mega-menu-bg {
    position: relative;
    background-image: url("../../images/mega-menu-bg.png");
    background-size: cover;
    background-position: center top;
    padding-top: 25px;
    padding-bottom: 25px;
    }
    .new-header__mega-menu-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 54, 139, 0.85);
    }
    
    .new-header__mega-menu-arrow {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(0, 54, 139, 0.85);
    z-index: 1;
    }
    @media screen and (max-width: 768px) {
    .new-header__mega-menu-arrow {
      display: none;
    }
    }
    
    .new-header__mega-menu-inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
    }
    
    .new-header__mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    }
    
    .new-header__mega-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    padding-top: 12px;
    padding-right: 15px;
    padding-bottom: 12px;
    padding-left: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    }
    .new-header__mega-menu-item:hover {
    opacity: 0.8;
    }
    
    .new-header__mega-menu-icon {
    width: 45px;
    height: 45px;
    -o-object-fit: contain;
       object-fit: contain;
    flex-shrink: 0;
    }
    
    .new-header__mega-menu-text {
    font-size: 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: #242424;
    letter-spacing: 0.01em;
    line-height: 1.4;
    white-space: nowrap;
    }
    
    .new-header__sub-nav {
    width: 100%;
    background-color: #009dc4;
    height: 48px;
    }
    
    .new-header__sub-nav-list {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    padding-right: clamp(10px, 1vw, 15px);
    padding-left: clamp(10px, 1vw, 15px);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0;
    }
    
    .new-header__sub-nav-item {
    list-style: none;
    padding-right: clamp(8px, 1.5vw, 30px);
    padding-left: clamp(8px, 1.5vw, 30px);
    border-right: 2px solid #fff;
    }
    .new-header__sub-nav-item:last-child {
    border-right: none;
    }
    
    .new-header__sub-nav-link {
    font-size: clamp(11px, 1.1vw, 18px);
    font-family: "Noto Sans CJK JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    }
    .new-header__sub-nav-link.is-active {
    text-decoration: underline;
    }
    
    .new-header__mobile-sub-nav {
    display: none;
    }
    
    .new-header__mobile-sub-nav-title {
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    color: #fff;
    background-color: #009dc4;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    margin-top: 20px;
    }
    
    .new-header__mobile-sub-nav-list {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    }
    
    .new-header__mobile-sub-nav-item {
    list-style: none;
    border-bottom: 1px solid #cfcfcf;
    }
    .new-header__mobile-sub-nav-item:last-child {
    border-bottom: none;
    }
    
    .new-header__mobile-sub-nav-link {
    display: block;
    font-size: 14px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #00368b;
    text-decoration: none;
    padding-top: 12px;
    padding-right: 20px;
    padding-bottom: 12px;
    padding-left: 20px;
    }
    .new-header__mobile-sub-nav-link.is-active {
    background-color: #009dc4;
    color: #fff;
    }
    
    .new-header__hamburger {
    display: none;
    width: 30px;
    height: 24px;
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    }
    @media screen and (max-width: 768px) {
    .new-header__hamburger {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    }
    .new-header__hamburger.is-active .new-header__hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
    }
    .new-header__hamburger.is-active .new-header__hamburger-line:nth-child(2) {
    opacity: 0;
    }
    .new-header__hamburger.is-active .new-header__hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
    }
    
    .new-header__hamburger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #00368b;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    }
    
    @media screen and (max-width: 768px) {
    .new-header__inner {
      padding-right: 15px;
      padding-left: 15px;
      height: 70px;
    }
    .new-header__brand {
      gap: 10px;
    }
    .new-header__logo {
      max-width: 50px;
    }
    .new-header__title {
      font-size: 14px;
    }
    .new-header__icl-badge {
      font-size: 14px;
      padding-top: 3px;
      padding-right: 8px;
      padding-bottom: 3px;
      padding-left: 8px;
    }
    .new-header__cta--reservation {
      padding-top: 8px;
      padding-right: 10px;
      padding-bottom: 8px;
      padding-left: 10px;
      font-size: 11px;
      gap: 6px;
    }
    .new-header__cta--reservation .new-header__cta-icon {
      width: 14px;
    }
    .new-header__cta--exam {
      display: none;
    }
    .new-header__nav {
      position: fixed;
      top: 0;
      right: -80%;
      width: 80%;
      max-width: 100vw;
      height: 100vh;
      height: 100dvh;
      min-height: -webkit-fill-available;
      background-color: #fff;
      overflow-x: hidden;
      overflow-y: hidden;
      z-index: 1000;
      transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
      padding-top: 60px;
      padding-bottom: env(safe-area-inset-bottom, 10px);
      display: flex;
      flex-direction: column;
    }
    .new-header__nav.is-open {
      right: 0;
    }
    .new-header__nav-list {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      width: 100%;
      max-width: 100%;
      padding-right: 5px;
      padding-left: 5px;
      box-sizing: border-box;
    }
    .new-header__nav-item {
      border-bottom: 1px solid #cfcfcf;
    }
    .new-header__nav-item:last-child {
      border-bottom: none;
    }
    .new-header__nav-link {
      flex-direction: row;
      justify-content: space-between;
      padding-top: clamp(8px, 1vh, 15px);
      padding-bottom: clamp(8px, 1vh, 15px);
      padding-right: 10px;
      padding-left: 10px;
    }
    .new-header__nav-text {
      font-size: clamp(13px, 3.5vw, 16px);
    }
    .new-header__nav-sub {
      font-size: clamp(10px, 2.5vw, 12px);
    }
    .new-header__sub-nav {
      display: none;
    }
    .new-header__mobile-sub-nav {
      display: block;
      width: 100%;
      max-width: 100%;
      overflow-x: hidden;
    }
    .new-header__mobile-sub-nav-title {
      font-size: clamp(12px, 3vw, 14px);
      padding-top: clamp(6px, 1.5vh, 10px);
      padding-bottom: clamp(6px, 1.5vh, 10px);
      margin-top: clamp(10px, 2vh, 20px);
    }
    .new-header__mobile-sub-nav-link {
      font-size: clamp(12px, 3vw, 14px);
      padding-top: clamp(8px, 1.5vh, 12px);
      padding-bottom: clamp(8px, 1.5vh, 12px);
    }
    }
    body.is-menu-open {
    overflow: hidden;
    overflow-x: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    }
    
    .new-header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    overflow: hidden;
    }
    .new-header__overlay.is-visible {
    opacity: 1;
    visibility: visible;
    }
    
  

.top-footer {
  background-color: #00368b;
  overflow-x: hidden;
}

.top-footer__inner {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 40px;
  padding-right: 30px;
  padding-bottom: 40px;
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .top-footer__inner {
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
  }
}

.top-footer__logo {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top-footer__logo {
    margin-bottom: 15px;
  }
}
.top-footer__logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .top-footer__logo img {
    max-width: 280px;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

.top-footer__content {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .top-footer__content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-footer__content {
    flex-direction: column;
    gap: 25px;
  }
}

.top-footer__info {
  flex: 1;
  min-width: 200px;
}
@media screen and (max-width: 768px) {
  .top-footer__info {
    text-align: center;
  }
}

.top-footer__address {
  font-size: 16px;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 1.6px;
  line-height: 31px;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top-footer__address {
    font-size: 14px;
    line-height: 1.6;
  }
}

.top-footer__tel {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 31px;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 3.1px;
  line-height: 31px;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top-footer__tel {
    font-size: 24px;
    letter-spacing: 1.6px;
    justify-content: center;
  }
}
.top-footer__tel a {
  color: #fff;
  text-decoration: none;
}

.top-footer__tel-icon {
  width: 20px;
  height: auto;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-footer__tel-icon {
    width: 16px;
  }
}

.top-footer__time {
  font-size: 14px;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 1.4px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-footer__time {
    font-size: 12px;
    letter-spacing: 0.48px;
  }
}

.top-footer__nav {
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .top-footer__nav {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top-footer__nav {
    flex-direction: column;
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-footer__nav-column {
    text-align: center;
  }
}
.top-footer__nav-column h4 {
  font-size: 14px;
  font-family: "Noto Sans CJK JP", sans-serif;
  letter-spacing: 0.14px;
  line-height: 28px;
  color: #fff;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .top-footer__nav-column h4 {
    font-size: 13px;
    margin-bottom: 8px;
    text-align: left;
  }
}
.top-footer__nav-column ul {
  list-style: none;
  padding-left: 15px;
}
.top-footer__nav-column ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: baseline;
}
.top-footer__nav-column ul li::before {
  content: "└";
  margin-right: 8px;
  color: #fff;
}
.top-footer__nav-column ul li a {
  font-size: 14px;
  font-family: "Noto Sans CJK JP", sans-serif;
  letter-spacing: 0.14px;
  line-height: 28px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .top-footer__nav-column ul li a {
    font-size: 13px;
    line-height: 1.8;
  }
}

.top-footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .top-footer__buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.top-footer__button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(50% 50% at 50% 50%, #c2b136, #d2ad26 8.2%, #95851a);
  width: 176px;
  height: 54px;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .top-footer__button {
    width: 150px;
    height: 50px;
  }
}
@media screen and (max-width: 375px) {
  .top-footer__button {
    width: calc(50% - 5px);
    max-width: 160px;
  }
}
.top-footer__button img {
  width: 25px;
  height: 21px;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .top-footer__button img {
    width: 20px;
    height: 17px;
    margin-right: 6px;
  }
}
.top-footer__button span {
  font-size: 16px;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.99px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-footer__button span {
    font-size: 13px;
    letter-spacing: 0.48px;
  }
}

.top-footer__button--contact span {
  line-height: 22px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-footer__button--contact span {
    line-height: 1.3;
  }
}

.top-footer__breadcrumb {
  padding-top: 15px;
  padding-right: 30px;
  padding-bottom: 15px;
  padding-left: 260px;
}
@media screen and (max-width: 1024px) {
  .top-footer__breadcrumb {
    padding-left: 100px;
  }
}
@media screen and (max-width: 768px) {
  .top-footer__breadcrumb {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.top-footer__breadcrumb p {
  font-size: 12px;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.48px;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .top-footer__breadcrumb p {
    font-size: 11px;
  }
}
.top-footer__breadcrumb p a {
  color: #333;
  text-decoration: none;
}
.top-footer__breadcrumb p a:hover {
  text-decoration: underline;
}

.top-footer__copyright {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top-footer__copyright {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.top-footer__copyright p {
  font-size: 15px;
  font-family: "Source Han Sans JP", sans-serif;
  letter-spacing: 0.39px;
  line-height: 23px;
  color: #242424;
}
@media screen and (max-width: 768px) {
  .top-footer__copyright p {
    font-size: 12px;
    letter-spacing: 0.28px;
    line-height: 1.5;
  }
}

/* ====================================
   共通CTAボタン
   ==================================== */
.common-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.common-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 768px) {
  .common-cta {
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    gap: 0;
    width: 100%;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background-color: #31457a;
  }
}

.common-cta__phone,
.common-cta__reservation,
.common-cta__contact {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 15px 20px;
  width: 239px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .common-cta__phone,
  .common-cta__reservation,
  .common-cta__contact {
    width: 33.3333333333%;
    height: clamp(50px, 15vw, 60px);
    padding: clamp(4px, 2vw, 8px) clamp(2px, 1vw, 5px);
    border-radius: 0;
    box-shadow: none;
  }
}

@media screen and (max-width: 768px) {
  .common-cta__phone {
    flex-direction: column;
    gap: 2px;
    width: clamp(50px, 16vw, 70px);
    flex-shrink: 0;
  }
  .common-cta__reservation,
  .common-cta__contact {
    flex: 1;
    width: auto;
  }
}

@media screen and (max-width: 768px) {
  .common-cta__reservation,
  .common-cta__contact {
    flex-direction: row;
    gap: clamp(2px, 1vw, 5px);
  }
}

.common-cta__phone {
  background: linear-gradient(135deg, #c9a227, #947705);
}
.common-cta__phone:hover {
  opacity: 0.8;
}

.common-cta__reservation {
  background: linear-gradient(135deg, #009dc4, #0388a8);
}
.common-cta__reservation:hover {
  opacity: 0.8;
}

.common-cta__contact {
  background: linear-gradient(135deg, #31457a, #00368b);
}
.common-cta__contact:hover {
  opacity: 0.8;
}

.common-cta__phone-top {
  position: absolute;
  top: 4px;
  left: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .common-cta__phone-top {
    position: static;
    gap: 0;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}

.common-cta__phone-hours {
  position: absolute;
  bottom: 8px;
  left: 23px;
  font-weight: 500;
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .common-cta__phone-hours {
    display: none;
  }
}

.common-cta__phone-hours-time {
  font-size: 17px;
  letter-spacing: 0.17px;
  white-space: nowrap;
}

.common-cta__phone-hours-note {
  font-size: 12px;
  letter-spacing: 0.12px;
  white-space: nowrap;
}

.common-cta__phone-number {
  font-size: 29px;
  letter-spacing: 0.29px;
  font-weight: 500;
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .common-cta__phone-number {
    display: none;
  }
}

.common-cta__phone-icon {
  width: 21.4px;
  height: 27.9px;
}
@media screen and (max-width: 768px) {
  .common-cta__phone-icon {
    width: clamp(22px, 6vw, 30px);
    height: clamp(22px, 6vw, 30px);
    flex-shrink: 0;
  }
}

.common-cta__reservation-text,
.common-cta__contact-text {
  font-size: 21px;
  letter-spacing: 1.3px;
  line-height: 30px;
  font-weight: 500;
  font-family: "Noto Sans CJK JP", sans-serif;
  color: #fff;
  text-align: center;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .common-cta__reservation-text,
  .common-cta__contact-text {
    font-size: clamp(9px, 3vw, 14px);
    line-height: 1.3;
    margin-left: 0;
    margin-top: 0;
    text-align: left;
  }
}

.common-cta__reservation-icon,
.common-cta__contact-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  width: 30px;
  height: 26px;
}
@media screen and (max-width: 768px) {
  .common-cta__reservation-icon,
  .common-cta__contact-icon {
    position: static;
    transform: none;
    width: clamp(14px, 4vw, 18px);
    height: clamp(14px, 4vw, 18px);
    flex-shrink: 0;
  }
}

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