@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
:root {
  --black: #555;
  --zen: "Zen Maru Gothic", sans-serif;
  font-size: 10px;
  font-family: var(--zen);
  letter-spacing: 0.1em;
  color: var(--black);
  line-height: 1.875;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

body {
  opacity: 0;
  animation: fadeIn 1s 1s ease-in-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
}

ul, ol {
  list-style: none;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}
.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1000px) {
  html {
    scroll-padding-top: 100px;
  }
}
body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background-color: #fff;
  z-index: 50;
  display: block;
}

header .logo {
  width: 210px;
  position: fixed;
  top: 7px;
  left: 20px;
  z-index: 100;
}
header .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.header__bl {
  position: fixed;
  top: 25px;
  right: 20px;
  z-index: 100;
}

.header__bl-wrapper {
  width: -moz-fit-content;
  width: fit-content;
}

.header__contact-bl {
  display: flex;
  gap: 7px;
  margin: 0 0 12px auto;
  width: -moz-fit-content;
  width: fit-content;
}

.header__btn {
  width: 200px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #51BBD6;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  position: relative;
  padding-bottom: 2px;
}
.header__btn::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background-image: url(../img/top/triangle.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.header__btn.header__btn-pink {
  background-color: #ED81A7;
}
.header__btn .icon {
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 1;
  padding-top: 2px;
}

.header__nav-list {
  display: flex;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.header__nav-list > li {
  padding-bottom: 19px;
}
.header__nav-list > li > a {
  font-size: 1.8rem;
  transition: all 0.3s ease;
}
.header__nav-list > li > a:hover {
  color: #528DD7;
}

.header__logo {
  display: none;
}

#ham {
  display: none;
}

.fixed-contacts {
  display: none;
}

.header__hover-btn {
  position: relative;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}

.header__hover-cont {
  position: absolute;
  top: 100%;
  left: 0;
  width: 260px;
  height: 0;
  background-color: #DCE8F7;
  z-index: 10;
  transition: all 0.2s ease;
  visibility: hidden;
  border-radius: 0 0 20px 20px;
  opacity: 0;
}
.header__hover-cont .header__hover-list {
  padding: 30px;
}

.header__hover-btn.active .header__hover-cont {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.header__hover-list > li {
  margin-bottom: 20px;
}
.header__hover-list > li > a {
  font-size: 1.8rem;
  color: #528DD7;
}
.header__hover-list > li:last-child {
  margin-bottom: 0;
}

@media screen and (max-height: 1000px) {
  .header__hover-list {
    padding: 20px;
  }
  .header__hover-list > li {
    margin-bottom: 10px;
  }
  .header__hover-list > li > a {
    font-size: 1.6rem;
  }
  .header__hover-list > li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1000px) {
  .header__bl {
    background-color: #E0EFF3;
    top: -110vh;
    right: 0;
    z-index: 101;
    width: 100%;
    height: 100vh;
    transition: all 0.5s ease;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .header__bl::-webkit-scrollbar {
    display: none;
  }
  .header__bl.active {
    top: 0;
  }
  .header__bl-wrapper {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    padding: 10px 0 100px;
    width: 100%;
  }
  .header__logo {
    width: 210px;
    margin: 0 auto;
    display: block;
  }
  .header__nav-list {
    flex-direction: column;
  }
  .header__contact-bl {
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
  }
  #ham {
    display: block;
    width: 46px;
    height: 46px;
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0;
  }
  #ham .ham {
    width: 100%;
    height: 100%;
    background-color: #0089D1;
    border-radius: 0 0 0 10px;
    position: relative;
    display: block;
  }
  #ham .ham .ham__line {
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    display: block;
    left: 10px;
    transition: all 0.5s ease;
  }
  #ham .ham .ham__line.ham__line:first-child {
    top: 12px;
  }
  #ham .ham .ham__line.ham__line:nth-child(2) {
    top: 22px;
  }
  #ham .ham .ham__line.ham__line:last-child {
    top: 32px;
  }
  #ham.active .ham .ham__line.ham__line:first-child {
    top: 22px;
    transform: rotate(45deg);
  }
  #ham.active .ham .ham__line.ham__line:nth-child(2) {
    opacity: 0;
  }
  #ham.active .ham .ham__line.ham__line:last-child {
    top: 22px;
    transform: rotate(-45deg);
  }
  header .logo {
    top: 10px;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
  .top-feature__ttl-bl {
    margin-bottom: 20px;
  }
  .fixed-contacts {
    position: fixed;
    bottom: -60px;
    top: auto;
    right: 0;
    z-index: 100;
    width: 100%;
    height: 55px;
    display: flex;
    gap: 0;
    transition: all 0.5s ease;
  }
  .fixed-contacts.active {
    bottom: 0;
  }
  .fixed-contacts .header__btn {
    width: 50% !important;
    height: 100% !important;
    border-radius: 10px 10px 0 0 !important;
  }
  body::before {
    height: 95px;
  }
  .header__hover-cont {
    border-radius: 20px;
    width: 360px;
    position: relative;
    margin: 0 auto 0;
    background-color: #fff;
  }
  .header__hover-cont.active {
    height: auto;
    visibility: visible;
    opacity: 1;
    margin: 20px auto 0;
  }
  .header__nav-list > li {
    padding-bottom: 0;
  }
  .toggle-btn {
    width: 15px;
    height: 15px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
  }
  .toggle-btn::before {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #528DD7;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
  }
  .toggle-btn::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #528DD7;
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
  }
  .toggle-btn.active::after {
    opacity: 0;
  }
  .header__nav-list > li {
    width: 100%;
    text-align: center;
  }
  .header__hover-cont .header__hover-list {
    padding: 20px 3%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
  }
  .header__hover-list > li > a {
    font-size: 1.5rem;
  }
  .header__hover-list > li {
    margin-bottom: 0;
  }
}
footer {
  background-color: #51BBD6;
  padding: 70px 0 30px;
}

.footer__flex {
  display: flex;
  gap: 40px;
}

.footer__left {
  display: flex;
  gap: 40px;
  width: 60%;
}

.footer__right {
  width: calc(40% - 40px);
  gap: 40px;
}

.footer__logo {
  width: 300px;
}
.footer__logo a {
  display: block;
}

.footer__left-flex-item {
  width: calc(50% - 20px);
}

.footer__left-flex {
  display: flex;
  gap: 40px;
  width: calc(100% - 340px);
}

.footer__list-column {
  grid-template-columns: 1fr !important;
}

.footer__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.footer__list > li > a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
}
.footer__list > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/top/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer__treat-flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.footer__treat-flex .footer__treat-link {
  margin-top: -7px;
}

.footer__link {
  font-size: 1.6rem;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 30px;
}

.footer__treat-link {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
  margin-top: 23px;
}
.footer__treat-link > li > a {
  position: relative;
  padding-left: 1em;
  display: block;
  color: #fff;
  font-size: 1.4rem;
}
.footer__treat-link > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  display: block;
  background-color: #fff;
}

.footer__treat-link-column {
  grid-template-columns: 1fr !important;
}

.footer__copy {
  text-align: center;
  margin-top: 70px;
  color: #fff;
  font-size: 1.2rem;
}

@media (max-width: 1200px) {
  .footer__right {
    width: calc(45% - 40px);
  }
  .footer__left {
    width: 55%;
  }
  .footer__logo {
    width: 200px;
  }
  .footer__left-flex {
    width: calc(100% - 240px);
  }
  .footer__list > li > a {
    font-size: 1.5em;
    padding-left: 20px;
  }
  .footer__list > li > a::before {
    width: 15px;
    height: 15px;
  }
  .footer__left {
    gap: 25px;
  }
  .footer__left-flex {
    width: calc(100% - 225px);
  }
  .footer__treat-flex {
    gap: 25px;
  }
  .footer__flex {
    gap: 25px;
  }
  .footer__flex {
    flex-direction: column;
    align-items: center;
  }
  .footer__left-flex-item {
    width: calc(50% - 12.5px);
  }
}
@media (max-width: 1000px) {
  footer {
    padding: 50px 0 80px;
  }
  .footer__logo {
    margin: 0 auto 30px;
  }
  .footer__flex {
    gap: 15px;
    flex-direction: column;
    align-items: center;
    width: 320px !important;
  }
  .footer__left {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .footer__left-flex {
    width: 100%;
  }
  .footer__left-flex-item {
    width: calc(50% - 12.5px);
  }
  .footer__right {
    width: 100%;
  }
  .footer__treat-flex {
    gap: 15px;
  }
  .footer__treat-link > li > a {
    padding-left: 0.9em;
    font-size: 1.3rem;
  }
}
#mv {
  margin-top: 140px;
  position: relative;
}

.mv__main-catch {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 100px;
  left: 7%;
  z-index: 1;
}

.mv__main-catch-ttl {
  font-size: 7.5rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
  opacity: 0;
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white, 0px 0px 2px white;
  animation: fadeIn 1s 2s ease-in-out forwards;
}

.mv__main-catch-txt {
  font-size: 4.4rem;
  font-weight: bold;
  line-height: 1.5;
  opacity: 0;
  text-shadow: -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 1px 1px 0 white, 0px 0px 1px white;
  animation: fadeIn 1s 2.5s ease-in-out forwards;
}

.mv__list {
  display: flex;
  position: absolute;
  left: 7%;
  bottom: 17px;
  opacity: 0;
  animation: fadeIn 1s 3s ease-in-out forwards;
}
.mv__list li {
  aspect-ratio: 1/1;
  width: 250px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/top/mv-list01.webp);
  background-size: 130%;
  background-position: center;
}
.mv__list li:nth-child(2) {
  background-image: url(../img/top/mv-list02.webp);
  margin-bottom: 110px;
}
.mv__list li:nth-child(3) {
  background-image: url(../img/top/mv-list03.webp);
}

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

.top-news__bl {
  background-color: rgba(82, 141, 215, 0.2);
  border-radius: 30px;
  padding: 60px 5%;
  display: flex;
  gap: 4%;
  min-height: 450px;
}

.top-news__none {
  font-size: 1.5rem;
}

.top-news__left {
  width: 56%;
}

.top-news__right {
  width: 40%;
  background-image: url(../img/top/insta-bg.webp);
  background-size: contain;
  aspect-ratio: 468/412;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 5%;
  bottom: 0;
}

.top-sns-bl {
  width: 40%;
  margin: -25px auto 0;
}

.top-base__ttl-sns {
  padding-top: 65px !important;
  color: #93C962 !important;
  margin-bottom: 7px;
}

.instagram-btn {
  display: block;
  width: 40%;
  margin: -7px auto 0;
}

.top-base__ttl {
  font-size: 6rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
}

.top-base__ttl-en {
  text-align: center;
  font-style: italic;
  font-size: 1.6rem !important;
  font-weight: 900;
}

#top-news {
  padding: 100px 0;
}
#top-news .top-base__ttl-en {
  margin-bottom: 40px;
}
#top-news .top-base__ttl-en .color-txt {
  color: #528DD7;
}
#top-news .base__link {
  margin: 50px auto 0;
}

.top-news__list li {
  margin-bottom: 20px;
}
.top-news__list li a {
  display: flex;
}
.top-news__list li a time {
  width: 130px;
  display: block;
  font-size: 2rem;
  font-weight: bold;
  color: #999;
  display: block;
}
.top-news__list li a .txt {
  width: calc(100% - 130px);
  font-size: 2rem;
  font-weight: 500;
}

.base__link {
  display: flex;
  width: 160px;
  height: 40px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  background-color: #528DD7;
}
.base__link::before {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  background-image: url(../img/top/triangle.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

#top-greeting {
  padding: 100px 0;
  position: relative;
  background-image: url(../img/top/doctor-bg.webp);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#top-greeting .base__link {
  margin-top: 30px;
}

.top-greeting__bl {
  position: relative;
  width: calc(50% + 640px);
  margin: 0 0 0 auto;
}

.top-greeting__doctor {
  width: 590px;
  position: absolute;
  z-index: 2;
  left: 30px;
}

.top-greetine__cont {
  border-radius: 30px;
  transform: skewX(-10deg) translateX(100px);
  background-color: #fff;
  width: calc(100% - 400px);
  margin: 0 0 0 auto;
  padding: 60px 10% 100px 9%;
}
.top-greetine__cont p {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.top-greetine__ttl-bl {
  margin-bottom: 30px;
}
.top-greetine__ttl-bl .top-base__ttl-en .color-txt {
  color: #51BBD6;
}

.top-greeting__name {
  font-size: 2.8rem !important;
  font-weight: 500;
  margin-bottom: 20px !important;
}

.bg-cyan {
  background-color: #51BBD6 !important;
}

.top-greetine__cont-inner {
  transform: skewX(10deg);
}

.cta__sec {
  background-color: #FFFBAE;
  padding: 80px 0;
}

.cta__flex {
  display: flex;
}
.cta__flex .cta__left {
  padding-right: 5%;
  width: 50%;
}
.cta__flex .cta__right {
  width: 50%;
}

.cta__logo {
  width: 320px;
  max-width: 100%;
  margin: 0 auto 45px;
}

.cta__list {
  position: relative;
  padding-left: 50px;
  line-height: 1;
  margin-bottom: 20px;
}
.cta__list .icon {
  display: inline-block;
  width: 38px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-42%);
}
.cta__list .map-txt {
  font-size: 2rem;
}
.cta__list .phone-txt {
  font-size: 5rem;
}
.cta__list .phone2-txt {
  font-size: 4rem;
}

.time__table {
  border-collapse: collapse;
  width: 100%;
}
.time__table thead th {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  padding: 15px 0;
  text-align: center;
  background-color: #D6EBF8;
  font-size: 1.6rem;
  font-weight: bold;
  width: calc((100% - 130px) / 7);
  border-top: 1px solid #B6B3B0;
}
.time__table .time__table-left {
  width: 130px !important;
}
.time__table tbody td {
  font-size: 2.4rem;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  padding: 15px 0;
  text-align: center;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  width: calc((100% - 130px) / 7);
  border-top: 1px solid #B6B3B0;
}
.time__table tbody td .blue-circle {
  font-size: 1.6rem;
  color: #528DD7;
}
.time__table tbody td .shasn {
  font-size: 1.6rem;
}

.tame__table-caution {
  font-size: 1.6rem;
  margin-top: 15px;
  line-height: 1.5;
}

.cta__map {
  aspect-ratio: 628/481;
  width: 100%;
  margin-bottom: 20px;
}
.cta__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.cta__map-caution-bl {
  border-radius: 10px;
  padding: 20px 5%;
  background-color: #fff;
}

.cta__map-caution {
  font-weight: bold;
  color: #ED0000;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.cta__map-caution-icon-txt {
  color: #528DD7;
  position: relative;
  padding-left: 45px;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
}
.cta__map-caution-icon-txt:last-of-type {
  margin-bottom: 0;
}
.cta__map-caution-icon-txt .icon {
  width: 28px;
  height: 28px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.cta__map-caution-icon-txt .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

#top-feature {
  position: relative;
  padding: 120px 0;
}
#top-feature .inner {
  position: relative;
  z-index: 3;
}

.top-feature__bg01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/1073;
  background-image: url(../img/top/feature-bg01.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.top-feature__bg02 {
  position: absolute;
  top: 1400px;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/964;
  background-image: url(../img/top/feature-bg02.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.top-feature__bg03 {
  position: absolute;
  top: 2400px;
  left: 0;
  width: 100%;
  aspect-ratio: 1440/974;
  background-image: url(../img/top/feature-bg03.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.top-feature__ttl-bl {
  margin-bottom: 80px;
}
.top-feature__ttl-bl .top-base__ttl-en .color-txt {
  color: #E8850D;
}

.top-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 7%;
}
.top-feature__list li {
  position: relative;
  padding-bottom: 40px;
}
.top-feature__list li p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.top-feature__list li:nth-child(1) .top-feature__list-ttl {
  color: #51BBD6;
}
.top-feature__list li:nth-child(2) .top-feature__list-ttl {
  color: #A273CC;
}
.top-feature__list li:nth-child(3) .top-feature__list-ttl {
  color: #ED81A7;
}
.top-feature__list li:nth-child(4) .top-feature__list-ttl {
  color: #B6C300;
}
.top-feature__list li:nth-child(5) .top-feature__list-ttl {
  color: #93C962;
}
.top-feature__list li:nth-child(6) .top-feature__list-ttl {
  color: #528DD7;
}
.top-feature__list li .img {
  margin-bottom: 20px;
}
.top-feature__list li .base__link {
  margin-left: auto;
  margin-right: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.top-feature__list-ttl {
  font-size: 3.9rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5;
}

.bg-cyan {
  background-color: #51BBD6 !important;
}

.bg-perple {
  background-color: #A273CC !important;
}

.bg-pink {
  background-color: #ED81A7 !important;
}

.bg-l-green {
  background-color: #B6C300 !important;
}

.bg-green {
  background-color: #93C962 !important;
}

#top-treatment {
  position: relative;
  z-index: 3;
  padding: 120px 0 0;
  background-image: linear-gradient(180deg, #E0EFF3 0%, #BEDDE6 100%);
}

.top-treatment__ttl-bl {
  margin-bottom: 60px;
}
.top-treatment__ttl-bl .top-base__ttl-en .color-txt {
  color: #ED81A7;
}

.top-treatment__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}
.top-treatment__list li {
  aspect-ratio: 1/1;
}
.top-treatment__list li a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.top-treatment__list li a .txt {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #0B95C3;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  white-space: nowrap;
  line-height: 1.4;
}
.top-treatment__list li a .circle {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.top-treatment__list li a .circle .img {
  width: 80px;
  aspect-ratio: 1/1;
  display: block;
  margin: 80px auto 0;
}
.top-treatment__list li a .circle .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.top-treatment__list li a .circle .img.p4 {
  transform: translateY(10px);
}
.top-treatment__list li a .circle .img.p5 {
  transform: translateY(13px);
  width: 75px;
}
.top-treatment__list li a .circle .detail-txt {
  height: 55px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  background-color: #0B95C3;
  position: absolute;
  bottom: 0;
  padding-right: 15px;
}
.top-treatment__list li a .circle .detail-txt::before {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 70px;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 15px solid #fff;
  border-right: 0;
}

#top-recommend {
  background-color: #BEDDE6;
  padding: 120px 0;
  z-index: 3;
  position: relative;
}

.top-recommend__ttl-bl {
  margin-bottom: 60px;
}
.top-recommend__ttl-bl .color-txt {
  color: #ED81A7;
}

.top-recommend__list li {
  width: 100%;
  aspect-ratio: 1280/480;
  display: block;
  padding: 50px 10% 70px;
  background-image: url(../img/top/recommend01.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 30px;
}
.top-recommend__list li .cont {
  width: 500px;
}
.top-recommend__list li .cont p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.top-recommend__list li:nth-child(2) {
  background-image: url(../img/top/recommend02.webp);
}
.top-recommend__list li:nth-child(2) .cont {
  margin-left: auto;
  margin-right: 0;
}
.top-recommend__list li:nth-child(3) {
  background-image: url(../img/top/recommend03.webp);
  aspect-ratio: 1280/535;
}

.top-recommend__list-ttl {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 25px;
  line-height: 1.5;
}

#top-reserve {
  padding: 120px 0;
  background-image: url(../img/top/about-bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}

.w1110 {
  width: 1110px;
  margin: 0 auto;
  max-width: 90%;
}

.top-reserve__bl {
  border-radius: 30px;
  background-color: #fff;
  padding: 120px 10% 80px;
}

.top-reserve__ttl {
  position: relative;
  margin-bottom: 60px;
}
.top-reserve__ttl .ja-txt {
  text-align: center;
  font-size: 3.9rem;
  font-weight: bold;
  display: block;
}
.top-reserve__ttl .en-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -60%);
  font-size: 123px;
  opacity: 0.1;
  font-style: italic;
  text-align: center;
  font-weight: bold;
  color: #51BBD6;
  line-height: 1;
}
.top-reserve__ttl .en-txt .red-txt {
  color: #ED81A7;
  font-size: 165px;
}

.top-reserve__list {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
}
.top-reserve__list li {
  width: 411px;
}
.top-reserve__list li .top-reserve__btn {
  display: flex;
  height: 110px;
  width: 100%;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  font-size: 3.1rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  gap: 5px;
  flex-direction: column;
}
.top-reserve__list li .top-reserve__btn .icon {
  width: 29px;
  height: 29px;
  display: block;
  line-height: 1;
}
.top-reserve__list li .top-reserve__btn .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.top-reserve__list li .top-reserve__btn .txt {
  line-height: 1;
}
.top-reserve__list li .top-reserve__btn::before {
  content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 10px;
  height: 10px;
  background-image: url(../img/top/triangle.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.top-reserve__list li .top-reserve__btn.top-reserve__btn-green {
  background-color: #93C962;
}
.top-reserve__list li .top-reserve__btn.top-reserve__btn-pink {
  background-color: #ED81A7;
}
.top-reserve__list li .top-reserve__btn.top-reserve__btn-cyan {
  background-color: #51BBD6;
}

.top-reserve__txt {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-top: 40px;
}

.sp {
  display: none;
}

.top-news__list li a .txt {
  word-break: break-word;
}

@media screen and (max-width: 1600px) {
  .mv__main-catch-ttl {
    font-size: 4.5vw;
    margin-bottom: 1.2vw;
  }
  .mv__main-catch-txt {
    font-size: 2.7vw;
  }
  .mv__list {
    bottom: 1vw;
  }
  .mv__list li {
    width: 16vw;
    font-size: 1.4vw;
  }
  .mv__list li:nth-child(2) {
    margin-bottom: 7vw;
  }
  .mv__main-catch {
    top: 7vw;
  }
}
@media screen and (max-width: 1420px) {
  .top-treatment__list li a .txt {
    font-size: 1.7vw;
    height: 3.5vw;
  }
  .top-treatment__list li a .circle .img.p5 {
    width: 5vw;
    transform: translateY(5px);
  }
  .top-treatment__list li a .circle .img {
    width: 5vw;
    margin: 5.5vw auto 0;
  }
  .top-treatment__list li a .circle .detail-txt {
    height: 4vw;
    font-size: 1.5vw;
    padding-right: 1.3vw;
  }
  .top-treatment__list li a .circle .detail-txt::before {
    bottom: 1.5vw;
    right: 4.5vw;
    border-top: 0.5vw solid transparent;
    border-bottom: 0.5vw solid transparent;
    border-left: 1vw solid #fff;
  }
  .top-recommend__list-ttl {
    font-size: 2.4vw;
    margin-bottom: 1.3vw;
  }
  .top-recommend__list li .cont p {
    font-size: 1.3vw;
    margin-bottom: 2vw;
  }
  .top-reserve__ttl .ja-txt {
    font-size: 3rem;
  }
  .top-reserve__ttl .en-txt {
    font-size: 100px;
  }
  .top-reserve__ttl .en-txt .red-txt {
    font-size: 140px;
  }
  .top-reserve__list li .top-reserve__btn {
    height: 100px;
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 1300px) {
  .top-greetine__ttl-bl {
    margin-bottom: 20px;
  }
  .top-base__ttl {
    font-size: 5rem;
  }
  .top-base__ttl-en {
    font-size: 1.4rem !important;
  }
  .top-greetine__cont p {
    margin-bottom: 11px;
    font-size: 1.4rem;
  }
  .top-greeting__name {
    font-size: 2.3rem !important;
    margin-bottom: 10px !important;
  }
  .top-greetine__cont {
    width: calc(100% - 315px);
    padding: 40px 18% 65px 9%;
  }
  .top-greeting__doctor {
    width: 480px;
    bottom: -100px;
  }
  .top-greeting__bl {
    width: calc(50% + 570px);
  }
  .cta__list .map-txt {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  .cta__list .phone-txt {
    font-size: 4rem;
  }
  .cta__list .phone2-txt {
    font-size: 3rem;
  }
  .cta__map-caution {
    font-size: 2.1rem;
  }
  .cta__map-caution-icon-txt {
    font-size: 1.8rem;
  }
  .top-feature__list-ttl {
    font-size: 3rem;
  }
  .top-news__left {
    width: 52%;
  }
  .top-base__ttl-sns {
    font-size: 4rem !important;
  }
  .top-sns-bl {
    margin: -20px auto 0;
  }
}
@media screen and (max-width: 1000px) {
  .mv__main-catch-ttl {
    font-size: 6.5vw;
    margin-bottom: 3.2vw;
    white-space: nowrap;
    text-align: center;
  }
  .mv__main-catch {
    top: 100px;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 48%;
  }
  .mv__main-catch-txt {
    font-size: 4.2vw;
    text-align: center;
  }
  .mv__list {
    bottom: -32vw;
    transform: translateX(-50%);
    left: 50%;
  }
  .mv__list li {
    width: 22vw;
    font-size: 2vw;
  }
  #mv {
    margin-bottom: 26vw;
    margin-top: 95px;
  }
  #top-news {
    padding: 40px 0 60px;
  }
  .top-news__bl {
    flex-direction: column;
    padding: 30px 5% 0;
    overflow: hidden;
  }
  .top-news__left {
    width: 100%;
  }
  .top-base__ttl {
    font-size: 4rem;
  }
  .top-base__ttl-en {
    font-size: 1.6rem !important;
  }
  #top-news .top-base__ttl-en {
    margin-bottom: 20px;
  }
  .top-news__list li a time {
    width: 100px;
    font-size: 1.4rem;
  }
  .top-news__list li a .txt {
    width: calc(100% - 100px);
    font-size: 1.4rem;
  }
  #top-news .base__link {
    margin: 30px auto 0;
  }
  .top-greetine__cont {
    width: 100%;
    padding: 30px 5%;
    transform: skewX(0deg) translateX(0);
    position: relative;
    z-index: 3;
  }
  .top-greeting__doctor {
    width: 168px;
    top: -274px;
    right: 15px;
    left: auto;
  }
  .top-greetine__cont-inner {
    transform: skewX(0deg);
  }
  #top-greeting {
    padding: 247px 0 50px;
    overflow: initial;
  }
  .top-greeting__bl {
    width: 90%;
    margin-right: auto;
  }
  .top-greetine__ttl-bl {
    margin-bottom: 20px;
    position: absolute;
    top: -189px;
    left: 0;
    z-index: 3;
  }
  .top-greetine__ttl-bl .top-base__ttl {
    text-align: left;
  }
  .top-greetine__ttl-bl .top-base__ttl-en {
    text-align: left;
  }
  #top-greeting .base__link {
    margin: 30px auto 0;
  }
  .top-greeting__name {
    font-size: 2.4rem !important;
    text-align: center;
  }
  .cta__flex {
    flex-direction: column;
    gap: 20px;
  }
  .cta__flex .cta__left {
    width: 100%;
    padding-right: 0;
  }
  .cta__flex .cta__right {
    width: 100%;
  }
  .cta__logo {
    width: 200px;
    margin: 0 auto 30px;
  }
  .cta__list .icon {
    width: 24px;
  }
  .cta__list {
    padding-left: 35px;
  }
  .cta__list .map-txt {
    font-size: 1.4rem;
  }
  .cta__list .phone-txt {
    font-size: 3rem;
  }
  .cta__list .phone2-txt {
    font-size: 2.4rem;
  }
  .time__table .time__table-left {
    width: 100px !important;
  }
  .time__table thead th {
    padding: 13px 0;
    font-size: 1.2rem;
    width: calc((100% - 100px) / 7);
  }
  .time__table tbody td {
    padding: 13px 0;
    font-size: 1.2rem;
    width: calc((100% - 100px) / 7);
  }
  .time__table tbody td .blue-circle {
    font-size: 1.2rem;
  }
  .tame__table-caution {
    font-size: 1.2rem;
    margin-top: 10px;
  }
  .cta__map-caution {
    font-size: 1.6rem;
  }
  .cta__map-caution-icon-txt .icon {
    width: 18px;
    height: 18px;
  }
  .cta__map-caution-icon-txt {
    font-size: 1.4rem;
    padding-left: 25px;
  }
  .cta__map iframe {
    border-radius: 6px;
  }
  .cta__map-caution-bl {
    border-radius: 6px;
    padding: 20px 5% 25px;
  }
  .cta__sec {
    padding: 60px 0;
  }
  #top-feature {
    padding: 60px 0;
  }
  .top-feature__list {
    grid-template-columns: 1fr;
    gap: 50px;
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-feature__list-ttl {
    font-size: 2.4rem;
  }
  .top-feature__list li p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .top-feature__bg01 {
    aspect-ratio: 860/2764;
    background-image: url(../img/top/feature-bg-sp01.webp);
  }
  .top-feature__bg02 {
    top: 1760px;
    aspect-ratio: 860/2483;
    background-image: url(../img/top/feature-bg-sp02.webp);
  }
  .top-feature__bg03 {
    top: 3300px;
    aspect-ratio: 860/2510;
    background-image: url(../img/top/feature-bg-sp03.webp);
  }
  #top-treatment {
    padding: 50px 0 0;
  }
  .top-treatment__list {
    width: 400px;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-treatment__list li a .txt {
    font-size: 2.2rem;
    height: 55px;
    top: 15px;
  }
  .top-treatment__list li a .circle .detail-txt {
    height: 40px;
    font-size: 1.4rem;
    padding-right: 10px;
  }
  .top-treatment__list li a .circle .detail-txt::before {
    bottom: 14px;
    right: 60px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 10px solid #fff;
  }
  .top-treatment__list li a .circle .img {
    width: 70px;
    margin: 63px auto 0;
  }
  .top-treatment__ttl-bl {
    margin-bottom: 30px;
  }
  .top-treatment__list li a .circle .img.p5 {
    width: 70px;
    transform: translateY(10px);
  }
  .sp {
    display: inline-block;
  }
  #top-recommend {
    padding: 50px 0 30px;
  }
  .top-recommend__ttl-bl {
    margin-bottom: 30px;
  }
  .top-recommend__list li {
    aspect-ratio: 390/536;
    padding: 250px 5% 40px;
    background-image: url(../img/top/reccomend01-sp.webp);
  }
  .top-recommend__list li .base__link {
    margin-left: auto;
    margin-right: auto;
  }
  .top-recommend__list li:nth-child(2) {
    background-image: url(../img/top/reccomend02-sp.webp);
    aspect-ratio: 780/1133;
  }
  .top-recommend__list li:nth-child(3) {
    background-image: url(../img/top/reccomend03-sp.webp);
    aspect-ratio: 780/1185;
  }
  .top-recommend__list {
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-recommend__list li .cont {
    width: 100%;
  }
  .top-recommend__list-ttl {
    font-size: 2rem;
    margin-bottom: 0.8em;
  }
  .top-recommend__list li .cont p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .top-reserve__ttl .ja-txt {
    font-size: 2rem;
  }
  .top-reserve__ttl .en-txt {
    font-size: 68px;
    top: 0%;
  }
  .top-reserve__ttl .en-txt .red-txt {
    font-size: 90px;
  }
  .top-reserve__list li .top-reserve__btn {
    height: 80px;
    font-size: 2.5rem;
    gap: 10px;
    flex-direction: row;
  }
  .top-reserve__list li {
    width: 300px;
    max-width: 100%;
  }
  .top-reserve__list {
    flex-direction: column;
    align-items: center;
  }
  .top-reserve__ttl {
    margin-bottom: 30px;
  }
  .top-reserve__txt {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 30px;
  }
  .top-reserve__bl {
    padding: 60px 5%;
  }
  #top-reserve {
    padding: 60px 0;
  }
  .top-news__right {
    width: 340px;
    position: relative;
    right: auto;
    margin: 40px auto 0;
    bottom: 0;
  }
  .top-base__ttl-sns {
    font-size: 4rem !important;
    padding-top: 50px !important;
  }
  .top-sns-bl {
    margin: -16px auto 0;
  }
  .top-feature__list li {
    padding-bottom: 0;
  }
  .top-feature__list li .base__link {
    position: relative;
    right: auto;
    bottom: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 450px) {
  .top-treatment__list li a .txt {
    font-size: 5.5vw;
    height: 11vw;
  }
  .top-treatment__list li a .circle .img {
    width: 14vw;
    margin: 15vw auto 0;
  }
  .top-treatment__list li a .circle .img.p5 {
    width: 14vw;
  }
  .top-treatment__list li a .circle .detail-txt::before {
    right: 13vw;
  }
  .top-recommend__list li .cont p {
    font-size: 3.4vw;
    margin-bottom: 4vw;
  }
  .top-recommend__list li {
    padding: 50vw 5% 0;
  }
  .top-recommend__list-ttl {
    font-size: 4.5vw;
  }
  .top-reserve__txt {
    font-size: 1.5rem;
  }
  .top-reserve__ttl .ja-txt {
    font-size: 1.8rem;
  }
  .top-reserve__ttl .en-txt {
    font-size: 60px;
  }
  .mv__list {
    bottom: -36vw;
  }
  .mv__list li {
    width: 30vw;
    font-size: 2.8vw;
  }
  .top-news__right {
    width: 300px;
  }
  #sb_instagram #sbi_images {
    padding: 0 !important;
    margin-bottom: 7px !important;
  }
  .top-base__ttl-sns {
    font-size: 3rem !important;
  }
  .top-sns-bl {
    margin: -7px auto 0;
  }
}
@media screen and (max-width: 400px) {
  .top-news__right {
    width: 100%;
  }
}
.under-mv__ttl {
  width: 100%;
  aspect-ratio: 2880/799;
  background-image: url(../img/treatment/cavity/under-mv.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 95px;
}
.under-mv__ttl.p1 {
  background-image: url(../img/under/under-mv01.webp);
}
.under-mv__ttl.p2 {
  background-image: url(../img/under/under-mv02.webp);
}
.under-mv__ttl.p3 {
  background-image: url(../img/under/under-mv03.webp);
}
.under-mv__ttl.p4 {
  background-image: url(../img/under/under-mv04.webp);
}
.under-mv__ttl.p5 {
  background-image: url(../img/under/under-mv05.webp);
}
.under-mv__ttl.p6 {
  background-image: url(../img/under/under-mv06.webp);
}
.under-mv__ttl.p7 {
  background-image: url(../img/under/under-mv07.webp);
}
.under-mv__ttl.p8 {
  background-image: url(../img/under/under-mv08.webp);
}
.under-mv__ttl.p9 {
  background-image: url(../img/under/under-mv09.webp);
}
.under-mv__ttl.p10 {
  background-image: url(../img/under/under-mv10.webp);
}
.under-mv__ttl.p11 {
  background-image: url(../img/under/under-mv11.webp);
}
.under-mv__ttl.p12 {
  background-image: url(../img/under/under-mv12.webp);
}
.under-mv__ttl.p13 {
  background-image: url(../img/under/under-mv13.webp);
}
.under-mv__ttl.p14 {
  background-image: url(../img/under/under-mv14.webp);
}
.under-mv__ttl.p15 {
  background-image: url(../img/under/under-mv15.webp);
}
.under-mv__ttl.p16 {
  background-image: url(../img/under/under-mv16.webp);
}
.under-mv__ttl.p17 {
  background-image: url(../img/under/under-mv17.webp);
}
.under-mv__ttl.p18 {
  background-image: url(../img/under/under-mv18.webp);
}
.under-mv__ttl.p19 {
  background-image: url(../img/under/under-mv19.webp);
}
.under-mv__ttl.p20 {
  background-image: url(../img/under/under-mv20.webp);
}
.under-mv__ttl.p21 {
  background-image: url(../img/under/under-mv21.webp);
}
.under-mv__ttl .ttl {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 4.8rem;
  font-weight: bold;
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white, 0px 0px 2px white;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  font-weight: bold;
  padding-top: 15px;
}
.breadcrumb li {
  position: relative;
  font-size: 1.3rem;
  color: var(--black);
}
.breadcrumb li a {
  font-size: 1.3rem;
  position: relative;
}
.breadcrumb li a::before {
  content: "/";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb li:last-of-type::before {
  display: none;
}

.under-inner {
  width: 1062px;
  margin: 0 auto;
  max-width: 90%;
  padding: 70px 0 100px;
}
.under-inner > *:first-child {
  margin-top: 0 !important;
}
.under-inner p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.under-inner h2 {
  margin-top: 70px;
  margin-bottom: 40px;
  font-size: 4rem;
  font-weight: bold;
  color: #528DD7;
  line-height: 1.5;
}
.under-inner h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #93C962;
  font-size: 2.1rem;
  position: relative;
  padding-left: 35px;
  line-height: 1.5;
}
.under-inner h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background-color: #93C962;
  border-radius: 5px;
}
.under-inner h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  background-color: #D1E5EC;
  color: #528DD7;
  font-size: 2.6rem;
  line-height: 1.5;
}

.under-flex {
  display: flex;
}
.under-flex .img {
  width: 50%;
}
.under-flex .img img {
  width: 100%;
  border-radius: 30px;
}
.under-flex .cont {
  width: 50%;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.big-img {
  margin: 40px 0;
}
.big-img img {
  width: 100%;
  border-radius: 30px;
}

.base__list {
  margin-bottom: 30px;
}
.base__list li {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 10px;
  padding-left: 1em;
}
.base__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

#under-cont .top-treatment__list {
  padding: 70px 0 100px;
}
#under-cont .top-treatment__list li a {
  transition: all 0.3s ease;
}
#under-cont .top-treatment__list li a .circle {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#under-cont .top-treatment__list li a:hover {
  opacity: 0.8;
}

.base__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.base__table th, .base__table td {
  padding: 10px;
  border: 1px solid #ddd;
  text-align: left;
  font-size: 1.6rem;
  width: 50%;
}
.base__table th {
  background-color: #FFFBAE;
  font-weight: bold;
}

.price-page-sec .base__table td {
  text-align: right;
}

.base__link-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.under-flex.under-doctor-flex .img {
  width: 30%;
}
.under-flex.under-doctor-flex .cont {
  width: 70%;
}

.google-map-bl {
  width: 100%;
  aspect-ratio: 3/2;
}

@media screen and (max-width: 1000px) {
  .under-mv__ttl {
    aspect-ratio: 430/360;
    background-image: url(../img/treatment/cavity/under-mv-sp.webp);
  }
  .under-mv__ttl.p1 {
    background-image: url(../img/under/under-mv-sp01.webp);
  }
  .under-mv__ttl.p2 {
    background-image: url(../img/under/under-mv-sp02.webp);
  }
  .under-mv__ttl.p3 {
    background-image: url(../img/under/under-mv-sp03.webp);
  }
  .under-mv__ttl.p4 {
    background-image: url(../img/under/under-mv-sp04.webp);
  }
  .under-mv__ttl.p5 {
    background-image: url(../img/under/under-mv-sp05.webp);
  }
  .under-mv__ttl.p6 {
    background-image: url(../img/under/under-mv-sp06.webp);
  }
  .under-mv__ttl.p7 {
    background-image: url(../img/under/under-mv-sp07.webp);
  }
  .under-mv__ttl.p8 {
    background-image: url(../img/under/under-mv-sp08.webp);
  }
  .under-mv__ttl.p9 {
    background-image: url(../img/under/under-mv-sp09.webp);
  }
  .under-mv__ttl.p10 {
    background-image: url(../img/under/under-mv-sp10.webp);
  }
  .under-mv__ttl.p11 {
    background-image: url(../img/under/under-mv-sp11.webp);
  }
  .under-mv__ttl.p12 {
    background-image: url(../img/under/under-mv-sp12.webp);
  }
  .under-mv__ttl.p13 {
    background-image: url(../img/under/under-mv-sp13.webp);
  }
  .under-mv__ttl.p14 {
    background-image: url(../img/under/under-mv-sp14.webp);
  }
  .under-mv__ttl.p15 {
    background-image: url(../img/under/under-mv-sp15.webp);
  }
  .under-mv__ttl.p16 {
    background-image: url(../img/under/under-mv-sp16.webp);
  }
  .under-mv__ttl.p17 {
    background-image: url(../img/under/under-mv-sp17.webp);
  }
  .under-mv__ttl.p18 {
    background-image: url(../img/under/under-mv-sp18.webp);
  }
  .under-mv__ttl.p19 {
    background-image: url(../img/under/under-mv-sp19.webp);
  }
  .under-mv__ttl.p20 {
    background-image: url(../img/under/under-mv-sp20.webp);
  }
  .under-mv__ttl.p21 {
    background-image: url(../img/under/under-mv-sp21.webp);
  }
  .under-mv__ttl .ttl {
    font-size: 3rem;
  }
  .under-inner {
    padding: 40px 0 50px;
  }
  #under-cont .top-treatment__list {
    padding: 40px 0 50px;
  }
  .under-inner h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
  .under-inner h3 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 1.7rem;
    padding-left: 25px;
  }
  .under-inner h3::before {
    width: 15px;
    height: 2px;
  }
  .under-inner h4 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 2rem;
  }
  .under-flex {
    flex-direction: column;
  }
  .under-flex .img {
    width: 100%;
    margin-bottom: 15px;
  }
  .under-flex .img img {
    width: 100%;
  }
  .under-flex .cont {
    width: 100%;
    padding-left: 0;
  }
  .under-inner p {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  .under-flex.under-doctor-flex {
    flex-direction: column;
    align-items: center;
  }
  .under-flex.under-doctor-flex .img {
    width: 200px;
    margin-bottom: 15px;
  }
  .under-flex.under-doctor-flex .cont {
    width: 100%;
  }
  .base__table th, .base__table td {
    padding: 10px;
    width: 100%;
    display: block;
  }
}
/* お知らせ、ブログ（投稿・アーカイブ）ページ */
.w1040 {
  width: 1040px;
  max-width: 90%;
  margin: 0 auto;
}

.info__flex {
  display: flex;
  gap: 50px;
  word-break: break-all;
}

.info__sidebar {
  width: 200px;
}

.info__main-bl {
  width: calc(100% - 250px);
}

.info__side-ttl {
  border-bottom: solid 1px #ccc;
  font-size: 18px;
  padding-bottom: 10px;
  padding-left: 16px;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.6;
}
.info__side-ttl::before {
  background: #ccc;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
}

.post-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.post-list__img {
  width: 100%;
  aspect-ratio: 3/2;
  border: 1px solid #e9e9e9;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}
.post-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-list__date {
  font-size: 12px;
  font-family: var(--mar);
  line-height: 1.5;
}

.post-list__ttl {
  font-size: 16px;
}

/* お知らせ・ブログ（詳細） */
.info__ttl {
  font-size: 36px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.info__cont {
  margin-top: 30px;
}

.base__under-ttl {
  font-size: 40px;
  color: var(--cyan);
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.base__under-ttl::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--cyan);
}

.base__under-ttl-left {
  margin-top: 80px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  padding-bottom: 15px;
  font-size: 30px;
  margin-bottom: 35px;
}

.base__under-ttl-left::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--cyan);
}

.base__under-ttl-middle {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--cyan);
}

.base__txt {
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.single__info-btn {
  width: 200px;
  display: block;
  margin: 50px auto 0;
}

.news__all-link {
  width: 153px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  padding-bottom: 7px;
}

.news__all-link:hover .icon-arrow {
  right: -3px;
  transition-duration: 0.3s;
}

.news__all-link .icon-arrow {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -75%);
  color: var(--cyan);
  transition-duration: 0.3s;
}

.icon-arrow:before {
  content: "\e900";
  color: var(--cyan);
}

/* ページネーション */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px auto 0px;
  align-items: center;
}
.nav-links .page-numbers {
  font-size: 14px;
  font-family: var(--mar);
}
.nav-links .page-numbers.current {
  background-color: #ebebeb;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyan-txt {
  color: var(--cyan);
}

.mb20 {
  margin-bottom: 20px;
}

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

.bold {
  font-weight: bold;
}

.under-mv__ttl-en {
  text-align: center;
}

#under-intr .top-menu__list-img {
  border-radius: 50%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.img600 {
  margin-inline: auto;
  width: min(100%, 600px);
}

.info__flex {
  padding: 70px 0 100px;
}
.info__flex .top-news__list li {
  margin-bottom: 0;
}
.info__flex .top-news__list li a {
  border-bottom: #e6e6e6 solid 1px;
  padding: 15px 0;
}

.snav-lst li {
  font-size: 1.5rem;
}
.snav-lst li a {
  font-size: 1.5rem;
}

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

.info__cont > *:first-child {
  margin-top: 0 !important;
}
.info__cont p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}
.info__cont h2 {
  margin-top: 70px;
  margin-bottom: 40px;
  font-size: 4rem;
  font-weight: bold;
  color: #528DD7;
  line-height: 1.5;
}
.info__cont h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #93C962;
  font-size: 2.1rem;
  position: relative;
  padding-left: 35px;
  line-height: 1.5;
}
.info__cont h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 4px;
  background-color: #93C962;
  border-radius: 5px;
}
.info__cont h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
  background-color: #D1E5EC;
  color: #528DD7;
  font-size: 2.6rem;
  line-height: 1.5;
}
.info__cont img {
  margin-bottom: 20px;
}

.base__link.center {
  margin-left: auto;
  margin-right: auto;
}

.mt50 {
  margin-top: 50px !important;
}

@media screen and (max-width: 1000px) {
  .post-list__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .info__flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .info__main-bl {
    width: 100%;
  }
  .info__sidebar {
    width: 100%;
  }
  .info__flex {
    padding: 40px 0 50px;
  }
  .info__flex .top-news__list li a {
    padding: 10px 0;
  }
  .info__cont h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
  .info__cont h3 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 1.7rem;
    padding-left: 25px;
  }
  .info__cont h3::before {
    width: 15px;
    height: 2px;
  }
  .info__cont h4 {
    margin-top: 25px;
    margin-bottom: 20px;
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */