@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Noto+Serif+JP:wght@200..900&display=swap");
:root {
  --black:#3D3D3C;
  --white:#FFFFFF;
  --gray:#F1F1EF;
  color: var(--black);
  --cor:"Cormorant Garamond", serif;
  --noto:"Noto Serif JP", serif;
  --yugo:"游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-family: var(--yugo);
  font-size: 10px;
  line-height: 1.875;
  letter-spacing: 0.2em;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--gray);
}

a {
  color: var(--black);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.8;
}

ul, ol {
  list-style: none;
}

p {
  font-size: 15px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #F1F1EF;
  padding: 0 30px;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .logo {
  width: 178px;
  line-height: 1;
}
header .logo a {
  display: block;
  line-height: 1;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 80px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.header__nav-list > li {
  font-size: 15px;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}
.header__nav-list > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 15px;
}
.header__nav-list > li > a .arrow {
  display: none;
}

.header__hover-cont {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: 650px;
  background-color: var(--gray);
  padding: 30px;
  transition: all 0.3s ease-in-out;
}
.header__hover-cont.active {
  opacity: 1;
  visibility: visible;
}

.header__hover-vont-ttl {
  font-size: 20px;
  padding-bottom: 7px;
  border-bottom: 1px solid #CECECB;
  margin-bottom: 20px;
  display: block;
  font-family: var(--noto);
}

.header__hover-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 30px;
}
.header__hover-list li a {
  font-size: 15px;
}

.header__nav-bl {
  display: flex;
}

#ham {
  display: none;
}

.header__nav-contact {
  display: flex;
  border: 1px solid var(--black);
}

.header__nav-contact-web {
  background-color: var(--black);
  padding: 2px 12px;
  color: var(--white);
  font-size: 16px;
}

.header__nav-contact-tel {
  background-color: var(--white);
  padding: 2px 12px;
  color: var(--black);
  font-size: 16px;
  letter-spacing: 2px;
}

@media screen and (max-width: 1300px) {
  .header__nav-list {
    gap: 25px;
  }
}
@media screen and (max-width: 1200px) {
  #ham {
    display: block;
    width: 29px;
    height: 37px;
  }
  .ham__icon {
    display: block;
    width: 23.5px;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  .ham__icon::before {
    content: "";
    position: absolute;
    top: 11px;
    left: -3px;
    width: 30px;
    height: 1px;
    transform: rotate(-45deg);
    background-color: var(--black);
    display: block;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .ham__icon::after {
    content: "";
    position: absolute;
    top: 11px;
    left: -3px;
    width: 30px;
    height: 1px;
    transform: rotate(45deg);
    background-color: var(--black);
    display: block;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .ham__icon img {
    transition: all 0.3s ease-in-out;
  }
  .ham__icon.active img {
    opacity: 0;
  }
  .ham__icon.active::before {
    opacity: 1;
  }
  .ham__icon.active::after {
    opacity: 1;
  }
  .ham__menu-txt {
    display: block;
    color: var(--black);
  }
  .ham__menu-txt a {
    color: var(--black);
  }
  header {
    padding: 0 20px;
    border-bottom: 1px solid #CECECB;
    height: 75px;
  }
  .header__nav-bl {
    position: fixed;
    z-index: -1;
    top: 0;
    right: -451px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background-color: #F1F1EF;
    overflow-y: scroll;
    display: block;
    transition: all 0.7s ease-in-out;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
  }
  .header__nav-bl::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
  .header__nav-bl::before {
    content: "";
    position: fixed;
    top: 0;
    right: -451px;
    width: 450px;
    max-width: 100%;
    height: 75px;
    background-color: #F1F1EF;
    border-bottom: 1px solid #CECECB;
    z-index: 1001;
    transition: all 0.7s ease-in-out;
  }
  .header__nav-bl.active {
    right: 0;
  }
  .header__nav-bl.active::before {
    right: 0;
  }
  .header__nav-list {
    position: relative;
  }
  .header__nav-list {
    flex-direction: column;
    height: auto;
    gap: 0;
  }
  .header__nav-list > li {
    width: 100%;
    height: auto;
  }
  .header__nav-list > li > a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 40px;
    padding: 20px 40px 20px 0;
    font-family: var(--noto);
    font-size: 18px;
  }
  .header__nav-list li a .arrow {
    display: block;
  }
  .header__nav {
    padding: 115px 8% 50px;
  }
  .header__nav-contact {
    flex-direction: column;
    gap: 10px;
    border: none;
    padding: 0 8% 100px;
  }
  .header__nav-contact-web {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
  }
  .header__nav-contact-tel {
    border: 1px solid var(--black);
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
  }
  .header__hover-btn::after {
    content: "＋";
    position: absolute;
    right: 15px;
    top: 24px;
    display: block;
    font-size: 25px;
    line-height: 1;
    z-index: -1;
  }
  .header__nav-list > li {
    flex-direction: column;
    border-bottom: 1px solid #CECECB;
  }
  .header__hover-cont {
    width: 100%;
    padding: 0;
  }
  .header__hover-cont.active {
    position: relative;
  }
  .header__hover-vont-ttl {
    display: none;
  }
  .header__hover-list {
    padding-bottom: 25px;
  }
}
#footer-info {
  padding: 200px 0 120px;
}

.footer-info__bl {
  display: flex;
  gap: 3%;
}
.footer-info__bl .top-clinic__link-bl {
  display: none;
}

.footer-info__cont {
  width: 45%;
}
.footer-info__cont .ttl-bl-deco {
  margin-bottom: 50px;
}

.footer-info__list li {
  display: flex;
  border-bottom: 1px solid #cececb;
  padding: 15px 0;
  align-items: center;
}

.footer-info__list-ttl {
  width: 140px;
  font-family: var(--noto);
  font-weight: 400;
  font-size: 16px;
}

.footer-info__list-txt {
  width: calc(100% - 140px);
  font-size: 16px;
}
.footer-info__list-txt a {
  color: var(--black);
}

.footer-info__access {
  width: 52%;
  display: flex;
}

.footer-info__access-map {
  width: 50%;
  aspect-ratio: 320/460;
  border: 1px solid var(--black);
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
}

.footer-info__access-img {
  width: 50%;
  aspect-ratio: 320/460;
  border: 1px solid var(--black);
  position: relative;
  margin-top: 40px;
  height: -moz-fit-content;
  height: fit-content;
}
.footer-info__access-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

footer {
  padding: 30px 30px 70px;
  background-color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-logo {
  width: 125px;
  line-height: 1;
}
.footer-logo a {
  display: block;
}
.footer-logo a img {
  width: 100%;
}

.footer__nav-list {
  display: flex;
  gap: 30px;
}
.footer__nav-list li a {
  color: #fff;
  font-size: 15px;
}

.footer__nav-contact {
  display: flex;
}

.footer__nav-contact-web {
  display: block;
  padding: 3px 15px;
  background-color: var(--white);
  font-size: 16px;
}

.footer__nav-contact-tel {
  display: block;
  padding: 3px 15px;
  border: 1px solid var(--white);
  font-size: 16px;
  color: #fff;
}

.footer__address {
  display: none;
}

.footer__copy {
  color: #fff;
  text-align: center;
  font-size: 12px;
  width: 100%;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

#sp-fixed-nav {
  display: none;
}

@media screen and (max-width: 1200px) {
  .footer__address {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 12px;
  }
  footer {
    padding: 50px 20px 80px;
    flex-direction: column;
    gap: 30px;
  }
  #footer-info {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .footer-info__bl {
    flex-direction: column;
    gap: 30px;
    max-width: 100% !important;
  }
  .footer-info__cont {
    width: 90%;
    margin: 0 auto;
  }
  .footer-info__access {
    width: 99%;
    margin: 0 auto;
  }
  .footer-info__list-ttl {
    font-size: 14px;
  }
  .footer-info__list-txt {
    font-size: 14px;
  }
  .footer-info__cont .ttl-bl-deco {
    margin-bottom: 25px;
  }
  .footer-info__access-map,
  .footer-info__access-img {
    aspect-ratio: 196/220;
  }
  .footer-info__access-img {
    margin-top: 30px;
  }
  .footer-info__list-txt {
    width: calc(100% - 85px);
    letter-spacing: 0.05em;
  }
  .footer-info__list-ttl {
    width: 85px;
  }
  .footer-info__bl .top-clinic__link-bl {
    width: 90%;
    bottom: auto;
    margin: 0 auto;
    display: block;
    position: relative;
  }
  .footer__nav-list {
    gap: 20px 0;
    flex-wrap: wrap;
    width: 310px;
    max-width: 100%;
    margin-top: 20px;
  }
  .footer__nav-list li {
    width: 50%;
  }
  .footer__nav-list li a {
    font-size: 14px;
  }
  footer {
    gap: 20px;
    padding: 50px 20px 140px;
  }
  .footer__copy {
    bottom: 88px;
  }
  .footer__nav-contact {
    width: 310px;
    max-width: 100%;
    flex-direction: column;
  }
  .footer__nav-contact-web,
  .footer__nav-contact-tel {
    width: 100%;
    text-align: center;
  }
  .footer-logo {
    width: 125px;
  }
  .footer-logo a {
    display: block;
  }
  .footer-logo img {
    width: 100%;
  }
  #sp-fixed-nav {
    position: fixed;
    width: 90%;
    bottom: -70px;
    left: 5%;
    z-index: 10;
    display: flex;
    gap: 10px;
    transition: all 0.8s ease-in-out;
  }
  #sp-fixed-nav.active {
    bottom: 10px;
  }
  #sp-fixed-nav .footer__nav-contact-tel {
    background-color: var(--black);
    padding: 7px 11px;
    font-size: 16px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
  }
  #sp-fixed-nav .footer__nav-contact-web {
    padding: 7px 15px;
    padding: 7px 11px;
    font-size: 16px;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
  }
}
@media screen and (max-width: 400px) {
  #sp-fixed-nav .footer__nav-contact-tel {
    font-size: 14px;
  }
  #sp-fixed-nav .footer__nav-contact-web {
    font-size: 14px;
  }
}
main {
  margin-top: 80px;
  overflow: hidden;
}

#top-mv {
  width: 100%;
  height: calc(100vh - 80px);
  position: relative;
}
#top-mv img, #top-mv video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.base__deco-bl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.base__deco-bl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 1px;
  background-color: var(--white);
  display: block;
}
.base__deco-bl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: calc(100% - 40px);
  transform: translateY(-50%);
  background-color: var(--white);
  display: block;
}

.out-line02 {
  position: relative;
  width: 100%;
  height: 100%;
}
.out-line02::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  height: 1px;
  background-color: var(--white);
  display: block;
}
.out-line02::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 40px);
  transform: translateY(-50%);
  background-color: var(--white);
  display: block;
}

.dot-relative-top {
  position: relative;
  width: 100%;
  height: 100%;
}
.dot-relative-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}
.dot-relative-top::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}

.dot-relative-bottom {
  position: relative;
  width: 100%;
  height: 100%;
}
.dot-relative-bottom::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}
.dot-relative-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 9px;
  height: 9px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}

.top-shasen {
  position: relative;
  width: 100%;
  height: 100%;
}
.top-shasen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: -3px;
  width: 28px;
  height: 1px;
  background-color: var(--white);
  display: block;
  transform: rotate(-45deg);
}
.top-shasen::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -4px;
  width: 28px;
  height: 1px;
  background-color: var(--white);
  display: block;
  transform: rotate(45deg);
}

.bottom-shasen {
  position: relative;
  width: 100%;
  height: 100%;
}
.bottom-shasen::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -3px;
  width: 28px;
  height: 1px;
  background-color: var(--white);
  display: block;
  transform: rotate(45deg);
}
.bottom-shasen::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: -4px;
  width: 28px;
  height: 1px;
  background-color: var(--white);
  display: block;
  transform: rotate(-45deg);
}

.deco-in-border {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid var(--white);
}

#top-price {
  position: relative;
}

@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.top-mv__cont-bl {
  position: absolute;
  left: 100px;
  bottom: 100px;
  width: -moz-fit-content;
  width: fit-content;
  opacity: 0;
  animation: fadeUp 1s 0.8s ease-in-out forwards;
}

.top-mv__ttl {
  color: var(--white);
  font-family: var(--noto);
  font-size: 70px;
  line-height: 1.3;
  font-weight: 400;
  margin-bottom: 35px;
  opacity: 0;
  animation: fadeUp 1s 0.8s ease-in-out forwards;
}

.top-mv__txt {
  font-size: 21px;
  line-height: 1;
  color: var(--white);
  font-family: var(--cor);
  opacity: 0;
  animation: fadeUp 1s 0.8s ease-in-out forwards;
}

.top-mv__list {
  position: absolute;
  right: 100px;
  bottom: 100px;
  width: 324px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--white);
  opacity: 0;
  animation: fadeUp 1s 0.8s ease-in-out forwards;
}
.top-mv__list li {
  border: 1px solid var(--white);
  border-top: none;
  padding: 10px 20px;
  font-size: 15px;
  text-align: center;
  color: #fff;
  position: relative;
  letter-spacing: 0;
}
.top-mv__list li::after {
  content: "";
  position: absolute;
  bottom: -2.5px;
  left: -2.5px;
  width: 5px;
  height: 5px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}
.top-mv__list li::before {
  content: "";
  position: absolute;
  bottom: -2.5px;
  right: -2.5px;
  width: 5px;
  height: 5px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}
.top-mv__list::after {
  content: "";
  position: absolute;
  top: -2.5px;
  left: -2.5px;
  width: 5px;
  height: 5px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}
.top-mv__list::before {
  content: "";
  position: absolute;
  top: -2.5px;
  right: -2.5px;
  width: 5px;
  height: 5px;
  background-color: var(--white);
  display: block;
  border-radius: 50%;
}

#top-news {
  padding: 120px 0;
}
#top-news .ttl-bl-deco {
  margin-bottom: 100px;
}

.inner {
  width: 1120px;
  margin: 0 auto;
  max-width: 90%;
}

.top-news__bl {
  display: flex;
}
.top-news__bl .ttl-bl {
  width: 400px;
}
.top-news__bl .cont-bl {
  width: calc(100% - 400px);
}

.ttl-bl-deco {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 25px;
}
.ttl-bl-deco::before {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: block;
}
.ttl-bl-deco::after {
  width: 8px;
  height: 8px;
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background-color: var(--black);
  display: block;
}
.ttl-bl-deco.ttl-bl-deco-ver {
  writing-mode: vertical-rl;
  padding-right: 0;
  padding-bottom: 25px;
  height: -moz-fit-content;
  height: fit-content;
}
.ttl-bl-deco.ttl-bl-deco-ver::before {
  border-right: none;
  border-left: 1px solid var(--black);
  left: 0;
  right: auto;
}
.ttl-bl-deco.ttl-bl-deco-ver::after {
  right: auto;
  left: -4px;
}

.top-news__ttl-en {
  font-size: 60px;
  line-height: 1.2;
  font-family: var(--cor);
  white-space: nowrap;
}

.top-news__ttl-ja {
  font-size: 20px;
  line-height: 1.2;
  font-family: var(--noto);
  font-weight: 500;
}

.base__link-bl {
  width: 160px;
  position: relative;
}

.base__link {
  width: 100%;
  display: flex;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--black);
  align-items: center;
  justify-content: space-between;
  padding-right: 30px;
  position: relative;
  line-height: 0.9;
}
.base__link .txt {
  font-size: 20px;
  font-family: var(--cor);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.base__link:hover {
  opacity: 1;
}
.base__link:hover .txt::after {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  right: 32px;
}

.base__link-bl-white .base__link {
  border-bottom: 1px solid var(--white);
}
.base__link-bl-white .base__link .txt {
  color: var(--white);
}
.base__link-bl-white .base__link:hover .txt::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.base__link-bl-white .arrow {
  background-color: var(--white);
}
.base__link-bl-white .arrow .dot {
  background-color: rgba(255, 255, 255, 0.3);
}
.base__link-bl-white .arrow::after {
  background-color: var(--white);
}
.base__link-bl-white .arrow::before {
  background-color: var(--white);
}
.base__link-bl-white a:hover .dot {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

iframe {
  vertical-align: bottom;
}

.arrow {
  width: 5px;
  height: 5px;
  background-color: var(--black);
  display: block;
  border-radius: 50%;
  position: relative;
}
.arrow .dot {
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
}
.arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translate(0, -50%);
  width: 30px;
  height: 1px;
  background-color: var(--black);
  transition: all 0.3s ease;
}
.arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translate(0, -75%) rotate(-59deg);
  width: 1px;
  height: 5px;
  background-color: var(--black);
  transition: all 0.3s ease;
}

a:hover .arrow::after {
  right: -40px;
  width: 40px;
}
a:hover .arrow::before {
  right: -38px;
}
a:hover .arrow .dot {
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.3);
}

.news__list {
  border-top: 1px solid #cececb;
}
.news__list li a {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #cececb;
  position: relative;
  align-items: center;
}
.news__list li a time {
  width: 160px;
  font-size: 16px;
  text-align: center;
  display: block;
}
.news__list li a .news__txt {
  font-size: 16px;
  line-height: 1.5;
  width: calc(100% - 210px);
  border-left: 1px solid #cececb;
  padding: 0 40px 0 30px;
  margin-bottom: 0 !important;
}

.top-news__img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7%;
  margin-top: 120px;
}

.top-news__img01 {
  width: 58%;
}

.top-news__img02 {
  width: 23%;
}

#top-clinic {
  position: relative;
}

.top-clinic__deco-line {
  position: relative;
  top: 0;
  width: 1320px;
  max-width: calc(90% - 40px);
  height: 1px;
  background-color: var(--black);
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 120px;
}
.top-clinic__deco-line::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 1px;
  height: 30px;
  background-color: var(--black);
  display: block;
}
.top-clinic__deco-line::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 1px;
  height: 30px;
  background-color: var(--black);
  display: block;
}

.deco-left-top {
  position: absolute;
  left: -20px;
  top: 0;
  width: 20px;
  height: 20px;
}
.deco-left-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--black);
  display: block;
  border-radius: 50%;
}
.deco-left-top::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -3px;
  width: 28px;
  height: 1px;
  background-color: var(--black);
  display: block;
  transform: rotate(-45deg);
}

.deco-right-top {
  position: absolute;
  right: -20px;
  top: 0;
  width: 20px;
  height: 20px;
}
.deco-right-top::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 6px;
  background-color: var(--black);
  display: block;
  border-radius: 50%;
}
.deco-right-top::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -3px;
  width: 28px;
  height: 1px;
  background-color: var(--black);
  display: block;
  transform: rotate(45deg);
}

.top-clinic__bl-intr {
  display: flex;
  flex-direction: row-reverse;
  padding-right: 10%;
  gap: 4%;
  padding-bottom: 300px;
  position: relative;
  justify-content: space-between;
}

.circle-list li {
  position: relative;
  font-family: var(--noto);
  padding-left: 37px;
  font-size: 20px;
  margin-bottom: 13px;
}
.circle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  background-color: var(--black);
  border-radius: 50%;
  display: block;
}
.circle-list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 15.5px;
  width: 23px;
  height: 1px;
  background-color: var(--black);
  display: block;
}

.top-clinic__link-bl {
  position: absolute;
  bottom: 150px;
  left: 0;
  width: 240px;
}

.top-clinic__link-web {
  width: 100%;
  padding: 8px;
  background-color: var(--black);
  color: var(--white);
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
  display: block;
}

.top-clinic__link-tel {
  width: 100%;
  padding: 8px;
  background-color: var(--white);
  color: var(--black);
  font-size: 16px;
  text-align: center;
  border: 1px solid var(--black);
  display: block;
}

.top-clinic__img {
  width: 50%;
  bottom: -150px;
  position: absolute;
  left: auto;
  right: 0;
  z-index: 5;
}

.top-clinic__swiper {
  margin-bottom: 140px;
}
.top-clinic__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.top-clinic__swiper .swiper-wrapper .swiper-slide {
  font-size: 9vw;
  font-family: var(--cor);
  color: var(--white);
  line-height: 0.8;
  opacity: 0.4;
}

.top-clinic__cont-bl {
  background-color: #6d6d68;
  overflow: hidden;
  padding-bottom: 100px;
  position: relative;
}

.top-clinic__cont {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-bottom: 100px;
}
.top-clinic__cont::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  max-width: 100%;
  height: 1px;
  background-color: var(--white);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top-clinic__cont-ttl-bl {
  width: 280px;
}

.top-clinic__list {
  display: flex;
  gap: 0 10px;
  flex-wrap: wrap;
  width: 770px;
}
.top-clinic__list li {
  aspect-ratio: 250/260;
  background-image: url(../img/top/circle-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-family: var(--noto);
  width: 250px;
}
.top-clinic__list li:nth-of-type(4) {
  margin-top: -28px;
}
.top-clinic__list li:nth-of-type(5) {
  margin-top: -28px;
}
.top-clinic__list li:nth-of-type(6) {
  margin-top: -28px;
}

.inner-w {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
}

.top-clinic__cont-ttl {
  font-size: 25px;
  font-family: var(--noto);
  color: #fff;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.7;
}

.shasen {
  width: 280px;
  aspect-ratio: 1/1;
  position: relative;
}
.shasen::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 400px;
  height: 1px;
  background-color: var(--white);
  display: block;
}

.top-clinic__cont-ttl-en {
  font-size: 16px;
  font-family: var(--cor);
  color: var(--white);
  margin-top: 35px;
}

.top-clinic__doctor-bl {
  padding: 100px 0 0;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 0 40px;
}
.top-clinic__doctor-bl .cont > .txt {
  font-size: 18px;
  color: #fff;
  font-family: var(--noto);
  margin-bottom: 50px;
}

#top-doctor {
  padding: 120px 0;
  border-bottom: 1px solid #cececb;
}

.top-doctor__bl {
  display: flex;
  gap: 30px 5%;
}
.top-doctor__bl .cont {
  width: 57%;
}
.top-doctor__bl .cont .ttl-bl-deco {
  margin-bottom: 50px;
}
.top-doctor__bl .cont .base__link-bl {
  margin-top: 40px;
}
.top-doctor__bl .img {
  width: 38%;
}

.bold {
  font-weight: bold;
}

.circle-dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  flex-wrap: wrap;
  border-top: 1px solid var(--black);
}
.circle-dl dt {
  position: relative;
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  border-left: 1px solid var(--black);
  padding: 20px;
  font-size: 20px;
  font-family: var(--noto);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.circle-dl dt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--black);
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.circle-dl dt::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--black);
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  transform: translate(-50%, 50%);
}
.circle-dl.doctor-dl {
  grid-template-columns: 220px 1fr;
}
.circle-dl dd {
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
}
.circle-dl dd::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: var(--black);
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  transform: translate(50%, -50%);
}
.circle-dl dd::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  background-color: var(--black);
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  transform: translate(50%, 50%);
}
.circle-dl dd .circle-dd-span {
  padding: 20px;
  display: block;
  font-size: 15px;
}
.circle-dl dd .circle-dd-span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--black);
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.circle-dl dd .circle-dd-span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  background-color: var(--black);
  border: 3px solid #f5f5f5;
  border-radius: 50%;
  transform: translate(-50%, 50%);
}

#top-reason {
  padding: 120px 0;
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
#top-reason .ttl-bl-deco {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.top-reason__bl {
  width: calc(100% - 200px);
}

.top-reason__list li {
  background-color: #9e9e98;
  position: relative;
}
.top-reason__list li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 40px);
  height: 1px;
  background-color: #fff;
  display: block;
}
.top-reason__list li:last-of-type::before {
  display: none;
}

.top-reason__list-cont {
  display: flex;
  padding: 40px 0 40px 40px;
  position: relative;
  width: 100%;
  gap: 30px;
  width: 1000px;
  max-width: 95%;
  align-items: center;
}
.top-reason__list-cont img {
  width: 570px;
}
.top-reason__list-cont .cont {
  width: calc(100% - 600px);
}
.top-reason__list-cont .cont > .txt {
  font-size: 15px;
  color: #fff;
  margin-bottom: 30px;
}

.top-reason__list-point-num {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  color: #fff;
  font-family: var(--cor);
  font-size: 20px;
}

.top-reason__list-ttl {
  font-size: 28px;
  font-family: var(--noto);
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.under-txt {
  margin-top: -15px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #fff;
  text-decoration: underline;
}

.top-bg-fixed {
  height: 600px;
  overflow: hidden;
}

#top-care {
  padding: 120px 0 0;
}
#top-care .ttl-bl-deco {
  margin-bottom: 60px;
}

.top-care__ttl-bl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-care__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--black);
}
.top-care__list li {
  aspect-ratio: 298/180;
  position: relative;
}
.top-care__list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--black);
  transform: translate(-50%, -50%);
}
.top-care__list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--black);
  transform: translate(-50%, 50%);
}
.top-care__list li a {
  position: relative;
  border-bottom: 1px solid var(--black);
  border-right: 1px solid var(--black);
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.top-care__list li a:hover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.top-care__list li a:hover p,
.top-care__list li a:hover h3 {
  color: var(--white);
}
.top-care__list li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--black);
  transform: translate(50%, -50%);
}
.top-care__list li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--black);
  transform: translate(50%, 50%);
}
.top-care__list li a .top-care__list-cont {
  width: 100%;
  height: 100%;
  position: relative;
}
.top-care__list li a .top-care__list-cont::before {
  content: "";
  position: absolute;
  inset: 0; /* top:0; right:0; bottom:0; left:0 と同じ */
  background-size: cover;
  background-position: center;
  opacity: 0; /* ← ここで透明度を調整 */
  z-index: -1; /* 背景にする */
  transition: all 0.3s ease-in-out; /* ホバー時のアニメーション */
}
.top-care__list li a:hover .top-care__list-cont::before {
  opacity: 1; /* ホバー時に透明度を1にする */
}
.top-care__list li:first-of-type, .top-care__list li:nth-of-type(5), .top-care__list li:nth-of-type(9) {
  border-left: 1px solid var(--black);
}
.top-care__list li:nth-of-type(1) .top-care__list-cont::before {
  background-image: url(../img/top/care01.webp);
}
.top-care__list li:nth-of-type(2) .top-care__list-cont::before {
  background-image: url(../img/top/care02.webp);
}
.top-care__list li:nth-of-type(3) .top-care__list-cont::before {
  background-image: url(../img/top/care03.webp);
}
.top-care__list li:nth-of-type(4) .top-care__list-cont::before {
  background-image: url(../img/top/care04.webp);
}
.top-care__list li:nth-of-type(5) .top-care__list-cont::before {
  background-image: url(../img/top/care05.webp);
}
.top-care__list li:nth-of-type(6) .top-care__list-cont::before {
  background-image: url(../img/top/care06.webp);
}
.top-care__list li:nth-of-type(7) .top-care__list-cont::before {
  background-image: url(../img/top/care07.webp);
}
.top-care__list li:nth-of-type(8) .top-care__list-cont::before {
  background-image: url(../img/top/care08.webp);
}
.top-care__list li:nth-of-type(9) .top-care__list-cont::before {
  background-image: url(../img/top/care09.webp);
}
.top-care__list li:nth-of-type(10) .top-care__list-cont::before {
  background-image: url(../img/top/care10.webp);
}
.top-care__list li:nth-of-type(11) .top-care__list-cont::before {
  background-image: url(../img/top/care11.webp);
}

.top-care__list-point {
  position: absolute;
  writing-mode: vertical-rl;
  font-family: var(--cor);
  font-size: 12px;
  color: var(--black);
  top: 20px;
  right: 20px;
}

.top-care__list-ttl {
  font-family: var(--noto);
  font-size: 20px;
  color: var(--black);
  position: absolute;
  left: 20px;
  bottom: 20px;
  line-height: 1.05;
  font-weight: 400;
}
.top-care__list-ttl .small {
  font-size: 12px;
}

.top-care__list-txt {
  font-size: 14px;
  color: var(--black);
  position: absolute;
  left: 20px;
  top: 20px;
  line-height: 1.5;
}

.top-care__list-viewmore {
  text-decoration: underline;
  font-size: 14px;
  color: var(--black);
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-family: var(--cor);
  margin-bottom: 0 !important;
}

#top-price {
  padding: 70px 0 0;
}
#top-price .base__link-bl {
  width: initial;
}
#top-price .base__link {
  width: 240px;
  text-align: center;
  padding-left: 62px;
}

.top-price__link {
  display: flex;
  position: relative;
  height: 250px;
  background-color: #3d3d3c;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--white);
}

.top-price__txt {
  font-size: 24px;
  color: var(--white);
  font-family: var(--noto);
  margin-bottom: 20px;
  text-align: center;
}

.top-price__link-txt {
  width: 240px;
}

.top-price__link:hover .dot {
  background-color: rgba(255, 255, 255, 0.3) !important;
}

.m {
  display: none;
}

@media screen and (max-width: 1500px) {
  .top-bg-fixed {
    height: 450px;
  }
}
@media screen and (max-width: 1350px) {
  .top-reason__list-point-num {
    right: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv__list {
    right: auto;
    bottom: 45px;
    width: calc(100% - 100px);
    left: 50%;
    transform: translateX(-50%);
  }
  .top-mv__cont-bl {
    position: absolute;
    left: 50px;
    bottom: 280px;
    width: -moz-fit-content;
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .m {
    display: inline-block;
  }
  .top-mv__ttl {
    font-size: clamp(7vw, 7vw, 70px);
    margin-bottom: 0;
  }
  .top-mv__txt {
    line-height: 1.4;
    font-size: clamp(2.5vw, 2.5vw, 21px);
  }
  .top-news__bl {
    flex-direction: column;
    position: relative;
  }
  .top-news__bl .base__link-bl {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  #top-news {
    padding: 80px 0;
  }
  .top-news__ttl-en {
    font-size: 40px;
  }
  .top-news__ttl-ja {
    font-size: 16px;
  }
  #top-news .ttl-bl-deco {
    margin-bottom: 40px;
  }
  .top-news__bl .cont-bl {
    width: 100%;
    padding-bottom: 70px;
  }
  .news__list li a time {
    width: 75px;
    font-size: 13px;
    line-height: 1.3;
    text-align: center;
    display: block;
  }
  .news__list li a .news__txt {
    font-size: 13px;
    width: calc(100% - 108px);
    padding: 0 15px 0 15px;
  }
  .news__list li a {
    padding: 12px 0;
  }
  .dot-relative-top::before,
  .dot-relative-top::after {
    width: 5px;
    height: 5px;
  }
  .dot-relative-bottom::before,
  .dot-relative-bottom::after {
    width: 5px;
    height: 5px;
  }
  .dot-relative-top::before {
    top: 1px;
    left: 1px;
  }
  .dot-relative-top::after {
    top: 1px;
    right: 1px;
  }
  .dot-relative-bottom::before {
    bottom: 1px;
    left: 1px;
  }
  .dot-relative-bottom::after {
    width: 5px;
    height: 5px;
  }
  .dot-relative-top::before {
    top: 1px;
    left: 1px;
  }
  .dot-relative-top::after {
    top: 1px;
    right: 1px;
  }
  .dot-relative-bottom::before {
    bottom: 1px;
    left: 1px;
  }
  .base__deco-bl {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .deco-in-border {
    width: calc(100% - 8px);
    height: calc(100% - 8px);
  }
  #top-mv {
    height: calc(100vh - 75px);
  }
  main {
    margin-top: 75px;
  }
  .ttl-bl-deco::before {
    width: 18px;
    height: 18px;
  }
  .ttl-bl-deco::after {
    width: 5px;
    height: 5px;
    right: -2px;
    bottom: -2px;
  }
  .arrow {
    width: 4px;
    height: 4px;
  }
  .arrow::after {
    right: -24px;
    width: 24px;
  }
  .arrow::before {
    right: -22px;
  }
  a:hover .arrow::after {
    right: -33px;
    width: 33px;
  }
  a:hover .arrow::before {
    right: -31px;
  }
  .arrow .dot {
    width: 4px;
    height: 4px;
  }
  a:hover .arrow .dot {
    width: 25px;
    height: 25px;
  }
  .base__link .txt {
    font-size: 18px;
  }
  .ttl-bl-deco.ttl-bl-deco-ver::after {
    left: -2px;
  }
  .top-clinic__bl-intr {
    padding-right: 5%;
  }
  .top-clinic__img {
    width: 55%;
    bottom: -12vw;
  }
  .shasen {
    display: none;
  }
  .top-clinic__cont {
    flex-direction: column;
    gap: 35px;
    align-items: center;
    padding-bottom: 50px;
  }
  .pc {
    display: none;
  }
  .top-clinic__cont-ttl-bl {
    width: 100%;
    text-align: center;
  }
  .top-clinic__cont-ttl {
    font-size: 21px;
    margin-bottom: 10px;
  }
  .top-clinic__cont-ttl-en {
    font-size: 12px;
    margin-top: 15px;
  }
  .top-clinic__list {
    width: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
  .top-clinic__list li {
    font-size: 14px;
    width: 100%;
  }
  .top-clinic__list li:nth-of-type(3),
  .top-clinic__list li:nth-of-type(4),
  .top-clinic__list li:nth-of-type(5),
  .top-clinic__list li:nth-of-type(6) {
    margin-top: -10px;
  }
  .top-clinic__doctor-bl {
    padding: 50px 0 0;
    display: flex;
    gap: 35px;
    flex-direction: column-reverse;
  }
  .top-clinic__doctor-bl .base__link-bl.base__link-bl-white {
    margin-left: auto;
    margin-right: auto;
  }
  .top-clinic__doctor-bl .cont > .txt {
    font-size: 15px;
    margin-bottom: 35px;
    text-align: center;
  }
  .top-clinic__cont-bl .img {
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-reason__list-point-num {
    position: relative;
    right: auto;
    left: 0;
    top: 0;
    transform: translateY(0);
    writing-mode: horizontal-tb;
    font-size: 20px;
  }
  .top-reason__list-cont {
    padding: 0;
    flex-direction: column-reverse;
  }
  .top-reason__list-cont .cont {
    width: 100%;
  }
  .top-reason__list-cont .img {
    width: 100%;
  }
  .top-reason__list-cont .img img {
    width: 100%;
  }
  .top-reason__bl {
    width: calc(100% - 120px);
  }
  #top-reason {
    padding: 80px 0;
    gap: 20px;
  }
  .top-reason__list li {
    padding: 30px 5%;
  }
  .top-reason__list-cont {
    width: 100%;
    max-width: 100%;
  }
  .top-reason__list li::before {
    left: 5%;
    width: 90%;
  }
  .top-reason__list-point-num {
    font-size: 16px;
  }
  .top-reason__list-ttl {
    font-size: clamp(18px, 3vw, 28px);
  }
  .top-reason__list-cont .cont > .txt {
    font-size: 13px;
    margin-bottom: 25px;
  }
  .top-bg-fixed {
    height: 35vw;
  }
  .top-care__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .top-care__list li:nth-of-type(5),
  .top-care__list li:nth-of-type(9) {
    border-left: none;
  }
  .top-care__list li:nth-of-type(4),
  .top-care__list li:nth-of-type(7),
  .top-care__list li:nth-of-type(10) {
    border-left: 1px solid var(--black);
  }
  .footer-info__list-ttl {
    width: 100px;
  }
  .footer-info__list-txt {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 1000px) {
  .top-care__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-care__list li:nth-of-type(4),
  .top-care__list li:nth-of-type(10) {
    border-left: none;
  }
  .top-care__list li:nth-of-type(odd) {
    border-left: 1px solid var(--black);
  }
}
@media screen and (max-width: 767px) {
  #top-news {
    padding: 80px 0 calc(23vw + 60px);
  }
  .top-news__img {
    justify-content: flex-start;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
  }
  .top-news__img01 {
    width: 80%;
  }
  .top-news__img02 {
    width: 41%;
    position: absolute;
    right: 0;
    bottom: -23vw;
  }
  .top-clinic__bl-intr {
    padding-right: 0;
  }
  .top-clinic__bl-intr .ttl-bl-deco.ttl-bl-deco-ver {
    width: 80px;
  }
  .circle-list {
    width: calc(100% - 80px);
  }
  .circle-list li {
    padding-left: 25px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .circle-list li::before {
    top: 13px;
    width: 5px;
    height: 5px;
  }
  .circle-list li::after {
    top: 15px;
    width: 13px;
  }
  .top-clinic__deco-line {
    max-width: calc(90% - 20px);
    margin-bottom: 50px;
  }
  .top-clinic__swiper {
    margin-bottom: 70px;
  }
  .top-clinic__swiper .swiper-wrapper .swiper-slide {
    font-size: 8.5vw;
  }
  .top-doctor__bl {
    flex-direction: column-reverse;
    position: relative;
    padding-top: 100px;
  }
  .top-doctor__bl .ttl-bl-deco {
    position: absolute;
    top: 0;
    left: 0;
  }
  .top-doctor__bl .img {
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-doctor__bl .cont {
    width: 100%;
  }
  .top-doctor__bl .cont .base__link-bl {
    margin: 40px auto 0;
  }
  .circle-dl dt {
    padding: 15px 10px;
  }
  .circle-dl dt .circle-dt-span {
    font-size: 16px;
    writing-mode: vertical-rl;
    height: initial;
  }
  .circle-dl {
    grid-template-columns: 100px 1fr;
  }
  .circle-dl.doctor-dl {
    grid-template-columns: 100px 1fr;
  }
  .circle-dl dd .circle-dd-span {
    font-size: 13px;
    padding: 15px 10px;
  }
  #top-doctor {
    padding: 80px 0;
  }
  #top-reason {
    gap: 10px;
  }
  #top-reason .top-news__ttl-en {
    font-size: 30px;
  }
  #top-reason .top-news__ttl-ja {
    font-size: 14px;
  }
  .top-reason__bl {
    width: calc(100% - 90px);
  }
  #top-care {
    padding: 80px 0 0;
    position: relative;
  }
  #top-care .base__link-bl {
    display: none;
  }
  .top-care__list {
    grid-template-columns: 1fr;
  }
  .top-care__list li {
    aspect-ratio: 346/140;
  }
  .top-care__list li a {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .top-care__list li:nth-of-type(1) a {
    background-image: url(../img/top/care01.webp);
  }
  .top-care__list li:nth-of-type(2) a {
    background-image: url(../img/top/care02.webp);
  }
  .top-care__list li:nth-of-type(3) a {
    background-image: url(../img/top/care03.webp);
  }
  .top-care__list li:nth-of-type(4) a {
    background-image: url(../img/top/care04.webp);
  }
  .top-care__list li:nth-of-type(5) a {
    background-image: url(../img/top/care05.webp);
  }
  .top-care__list li:nth-of-type(6) a {
    background-image: url(../img/top/care06.webp);
  }
  .top-care__list li:nth-of-type(7) a {
    background-image: url(../img/top/care07.webp);
  }
  .top-care__list li:nth-of-type(8) a {
    background-image: url(../img/top/care08.webp);
  }
  .top-care__list li:nth-of-type(9) a {
    background-image: url(../img/top/care09.webp);
  }
  .top-care__list li:nth-of-type(10) a {
    background-image: url(../img/top/care10.webp);
  }
  .top-care__list li:nth-of-type(11) a {
    background-image: url(../img/top/care11.webp);
  }
  .top-care__list li:nth-last-of-type(even) {
    border-left: 1px solid var(--black);
  }
  .top-care__list-point,
  .top-care__list-ttl,
  .top-care__list-txt,
  .top-care__list-viewmore {
    color: var(--white);
  }
  .top-care__list-txt {
    font-size: 12px;
  }
  .top-care__list-ttl {
    font-size: 22px;
  }
  .top-care__list-viewmore {
    font-size: 12px;
  }
  .top-price__txt {
    font-size: 20px;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  #top-price .base__link {
    width: 180px;
    padding-left: 35px;
  }
  #top-price .base__link .txt {
    font-size: 16px;
  }
  #top-care .ttl-bl-deco {
    margin-bottom: 40px;
  }
  #top-price {
    padding: 50px 0 0;
  }
  .top-bg-fixed {
    height: 400px;
  }
  .top-bg-fixed .simpleParallax {
    height: 100%;
  }
  .top-bg-fixed .simpleParallax img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top 50% right 34%;
       object-position: top 50% right 34%;
  }
}
@media screen and (max-width: 600px) {
  .top-clinic__link-bl {
    width: 100%;
    bottom: 51vw;
  }
  .top-clinic__img {
    width: 109%;
    bottom: -21vw;
    right: -6%;
  }
  .top-clinic__cont-bl {
    padding-top: 23vw;
  }
  .top-clinic__swiper .swiper-wrapper .swiper-slide {
    font-size: 8vw;
  }
  .top-clinic__bl-intr {
    padding-bottom: calc(150px + 50vw);
  }
}
@media screen and (max-width: 450px) {
  .top-mv__list li {
    font-size: 12px;
    padding: 10px;
  }
  .top-mv__ttl {
    font-size: clamp(6.5vw, 6.5vw, 70px);
  }
  .top-mv__cont-bl {
    left: 35px;
    bottom: 240px;
    width: calc(100% - 70px);
  }
  .top-mv__list {
    width: calc(100% - 70px);
  }
  .top-mv__txt {
    font-size: clamp(2.7vw, 2.7vw, 21px);
    text-align: right;
  }
}
.under-mv__bl {
  height: 438px;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.under-mv__bl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.under-mv__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  font-size: 42px;
  font-weight: 400;
  line-height: 1.5;
  font-family: var(--noto);
  white-space: nowrap;
}
.under-mv__ttl.en {
  font-size: 56px;
  line-height: 1.2;
  font-family: var(--cor);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
  gap: 5px 23px;
}
.breadcrumb li {
  position: relative;
  font-size: 13px;
}
.breadcrumb li::after {
  content: "";
  position: absolute;
  right: -10px;
  display: block;
  width: 5px;
  height: 5px;
  transform: rotate(-45deg);
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  top: 10px;
}
.breadcrumb li:last-child::after {
  display: none;
}

.inner-s {
  width: 960px;
  margin: 0 auto;
  max-width: 90%;
}

.under-dp {
  padding: 140px 0 0;
}
.under-dp p {
  margin-bottom: 30px;
}

.base__under-ttl {
  text-align: center;
  font-family: var(--noto);
  font-size: 36px;
  font-weight: 400;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(61, 61, 60, 0.3);
  position: relative;
  line-height: 1.5;
}
.base__under-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background-color: var(--black);
  bottom: -1px;
  display: block;
}

.base__under-line-img {
  border: 1px solid var(--black);
}

.mb0 {
  margin-bottom: 0 !important;
}

.base__under-flex {
  display: flex;
  gap: 4%;
}
.base__under-flex .cont {
  width: 40%;
}
.base__under-flex .img {
  width: 56%;
}

.mb100 {
  margin-bottom: 100px !important;
}

.flow__cont-list li {
  border: 1px solid var(--black);
  border-bottom: none;
  background-color: var(--white);
  padding: 30px 5%;
  display: flex;
  gap: 4%;
}
.flow__cont-list li .img {
  width: 30%;
}
.flow__cont-list li .cont {
  width: 66%;
  padding-top: 20px;
}
.flow__cont-list li .cont p:last-child {
  margin-bottom: 0;
}
.flow__cont-list li:last-child {
  border-bottom: 1px solid var(--black);
}

.base__under-ttl-middle {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(61, 61, 60, 0.3);
  font-family: var(--noto);
  line-height: 1.5;
}

.base__border-bl {
  border: 1px solid rgba(61, 61, 60, 0.3);
  padding: 30px 5% 45px;
  border-bottom: none;
}
.base__border-bl.base__border-bl-bottom {
  border-bottom: 1px solid rgba(61, 61, 60, 0.3);
}
.base__border-bl *:last-child {
  margin-bottom: 0;
}

.base__under-ttl-center {
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  font-family: var(--noto);
  padding-bottom: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(61, 61, 60, 0.3);
}

.base__obi-ttl {
  padding: 14px;
  background-color: #9e9e98;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--noto);
  margin-bottom: 20px;
  line-height: 1.5;
}

.last-sec {
  padding-bottom: 100px !important;
}

.base__flow-list {
  display: grid;
  gap: 50px;
}
.base__flow-list li p {
  margin-bottom: 0;
}

@keyframes mask-animation {
  0% {
    -webkit-mask-position: left bottom;
    mask-position: left bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  to {
    -webkit-mask-size: auto 500%;
    -webkit-mask-position: left 0%;
    mask-position: left 0%;
    -webkit-mask-size: auto 900%;
    mask-size: auto 900%;
    opacity: 1;
  }
}
.js-fadeUp {
  -webkit-mask-image: url(../img/common/mask.webp);
  mask-image: url(../img/common/mask.webp);
  mask-mode: alpha;
  -webkit-mask-position: left bottom;
  mask-position: left bottom;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  mask-size: auto 200%;
}
.js-fadeUp.is-show {
  animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
}

.base__list li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0.7em;
  position: relative;
  padding-left: 1.3em;
}
.base__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.3em;
  height: 0.3em;
  background-color: var(--black);
  border-radius: 50%;
  display: block;
}
.base__list li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.8em;
  height: 1px;
  background-color: var(--black);
  display: block;
}
.base__list li:last-child {
  margin-bottom: 0;
}

.sp {
  display: none;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.base__under-line-img img {
  width: 100%;
}

.base__table {
  border-top: 1px solid var(--black);
  border-left: 1px solid var(--black);
  border-collapse: collapse;
  width: 100%;
}
.base__table th {
  padding: 10px;
  text-align: center;
  background-color: #75756f;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.base__table td {
  padding: 10px;
  font-size: 15px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
}
.base__table.column4 th, .base__table.column4 td {
  width: 25%;
}
.base__table.column3 th, .base__table.column3 td {
  width: 33.33%;
}
.base__table.column2 th, .base__table.column2 td {
  width: 50%;
}
.base__table.price__table td {
  text-align: right;
}

.base__under-line-doctor-img {
  width: 400px;
  margin: 0 auto 42px;
  max-width: 70%;
  border: 1px solid var(--black);
}

.access__map {
  width: 100%;
  aspect-ratio: 3/2;
}

.base__flex-bl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2%;
}
.base__flex-bl p {
  font-size: 23px;
  margin-top: 10px;
  margin-bottom: 0;
}
.base__flex-bl p.bold {
  font-weight: 600;
}
.base__flex-bl p.center-txt {
  text-align: center;
}

.base__under-line-img-flex {
  display: flex !important;
}
.base__under-line-img-flex img {
  width: 50% !important;
}

.connection__nav-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: auto;
  gap: 0;
}
.connection__nav-list > li {
  font-size: 15px;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #CECECB;
}
.connection__nav-list > li > a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 40px;
  padding: 20px 40px 20px 0;
  font-family: var(--noto);
  font-size: 18px;
}
.connection__nav-list > li > a .arrow {
  display: block;
}

@media screen and (max-width: 1200px) {
  .under-dp {
    padding: 90px 0 0;
  }
  .base__under-ttl {
    font-size: 32px;
    padding-bottom: 15px;
    margin-bottom: 35px;
  }
  .base__under-ttl-middle {
    font-size: 21px;
    padding-bottom: 12px;
  }
  .base__under-ttl-center {
    font-size: 21px;
    margin-bottom: 22px;
    padding-bottom: 12px;
  }
  .base__obi-ttl {
    padding: 10px;
    font-size: 18px;
    margin-bottom: 16px;
  }
  .last-sec {
    padding-bottom: 60px !important;
  }
}
@media screen and (max-width: 767px) {
  .under-dp p {
    font-size: 14px;
  }
  .under-mv__bl {
    height: 320px;
  }
  .under-dp {
    padding: 60px 0 0;
  }
  .under-mv__ttl {
    font-size: 36px;
  }
  .under-mv__ttl.en {
    font-size: 48px;
    line-height: 1.2;
  }
  .base__under-ttl {
    font-size: 28px;
  }
  .base__under-flex {
    flex-direction: column;
  }
  .base__under-flex .img {
    width: 100%;
  }
  .base__under-flex .cont {
    width: 100%;
  }
  .smb40 {
    margin-bottom: 40px !important;
  }
  .flow__cont-list li {
    padding: 30px 5%;
    gap: 20px;
    flex-direction: column-reverse;
  }
  .flow__cont-list li .img {
    width: 195px;
    max-width: 100%;
    margin: 0 auto;
  }
  .flow__cont-list li .cont {
    width: 100%;
    padding-top: 0;
  }
  .base__under-ttl-middle {
    font-size: 20px;
    padding-bottom: 8px;
  }
  .base__under-ttl-center {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 8px;
  }
  .base__obi-ttl {
    font-size: 16px;
  }
  .base__flow-list {
    gap: 30px;
  }
  .last-sec {
    padding-bottom: 0px !important;
  }
  .sp {
    display: inline-block;
  }
  .base__table th {
    padding: 5px;
    font-size: 14px;
  }
  .base__table td {
    padding: 5px;
    font-size: 12px;
  }
  .base__flex-bl {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .base__flex-bl p {
    font-size: 19px;
  }
  .smb20 {
    margin-bottom: 20px !important;
  }
}/*# sourceMappingURL=style.css.map */