@charset "UTF-8";

/*======================　ベース　==========================*/

.fade-show {
  opacity: 0;
  transition-duration: 800ms;
  transition-property: opacity, transform;
  transition-timing-function: ease;
}

.fade-in {
  opacity: 1;
  transition-duration: 800ms;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  counter-reset: #182e32;
  overflow-x: hidden;
  padding-top: 100px;
}

.manrope {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
}

.manrope_200 {
  font-family: 'Manrope', sans-serif;
  font-weight: 200;
}

.manrope_300 {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
}

.manrope_bold {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}

/*　================ トップページ ================ */

header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 8;
}

.header__nav {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.header__nav-flex {
  width: 100%;
  padding: 0 30px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.header__logo {
  /* width: fit-content;
  height: fit-content; */
  width: 250px;
  height: 60px;
  overflow: hidden;
}

.header__logo a {
  width: 100%;
  height: 100%;
  display: block;
  color: #3da3dc;
}

.logo__big {
  font-weight: bold;
  font-size: 20px;
  /* display: block; */
  display: flex;
  line-height: 1.5;
}

.logo__small {
  font-size: 13px;
  /* display: block; */
  display: flex;
  font-weight: 200;
}

.header__nav-link {
  width: fit-content;
  display: flex;
  list-style: none;
  margin-right: 140px;
}

.header__nav-link li {
  margin-right: 30px;
}

.header__nav-link li a {
  font-weight: bold;
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: #000;
}

.header__nav-link li a .sml {
  font-size: 80%;
}

.header__nav-link li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s;
}

.header__nav-link li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.header__nav-link li:last-of-type {
  margin-right: 0;
}

.header__nav-link li a i {
  color: #5ba1d7;
}

.reservation-btn {
  width: 140px;
  height: 130px;
  background-color: #3da3dc;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition-duration: 0.3s;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  font-size: 0.9rem;
  transform: translate(100%, 0);
  transition-duration: 1s;
}

.reservation-btn_slide-in {
  transform: translate(0, 0);
  transition-duration: 1.4s;
}

.reservation-btn:hover {
  background-color: #63b0ed;
  transition-duration: 0.3s;
  opacity: 1;
}

.reservation-btn__icon {
  display: block;
  width: 40px;
  height: 30px;
  margin-bottom: 8px;
}

.mv {
  width: 100%;
  /* margin-top: 100px; */
  height: calc(100vh - 100px);
  background-image: url(../cmn_img/mv-pc.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: left;
  align-items: flex-end;
  overflow: hidden;
}

.mv__title-box {
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}

.mv__title {
  font-size: 45px;
  margin-bottom: 30px;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

.mv__address {
  border: 1px solid #fff;
  padding: 5px 15px;
  margin-bottom: 30px;
  width: fit-content;
}

.mv__txt {
  font-size: 1.1rem;
  line-height: 2;
}

.time__float-box {
  display: block;
  position: absolute;
  /* transform: translate(calc(100% - 60px),0); */
  bottom: 50px;
  right: 0;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 11px 3px rgba(0, 0, 0, 0.07);
  border-radius: 30px 0 0 30px;
  transition-duration: 0.8s;
  cursor: pointer;
}

.time__float-box.time-fixed {
  position: fixed;
  right: 0;
  animation-fill-mode: forwards;
  animation-name: time-slide-none;
  animation-duration: 0.8s;
  bottom: calc(50% - 150px);
}

.time__float-box.time-fixed.time-fixed-slide-visible {
  position: absolute;
  right: 0;
  animation-fill-mode: forwards;
  animation-name: time-slide-visible;
  animation-duration: 0.8s;
  transition-delay: 1s;
  bottom: 50px;
}

@keyframes time-slide-none {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(calc(100% - 60px), 0);
  }

  100% {
    transform: translate(calc(100% - 60px), 0);
    bottom: calc(50% - 150px);
  }
}

@keyframes time-slide-visible {
  0% {
    transform: translate(calc(100% - 60px), 0);
  }

  50% {
    transform: translate(calc(100% - 60px), 0);
    bottom: 50px;
  }

  100% {
    transform: translate(0, 0);
    bottom: 50px;
  }
}


.time__float-box.time-fixed.time-active {
  animation-fill-mode: forwards;
  animation-name: time-slide;
  animation-duration: 0.8s;
}

@keyframes time-slide {
  0% {
    transform: translate(calc(100% - 60px), 0);
    bottom: calc(50% - 150px);
  }

  100% {
    transform: translate(0, 0);
    bottom: calc(50% - 150px);
  }
}

.time__float-box-flex {
  display: flex;
  width: 600px;
  height: 300px;
}

.time__float-box-flex-item:first-of-type {
  background-color: #f3f6fb;
  height: 100%;
  width: 60px;
  border-radius: 30px 0 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.time__float-box-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
}

.time__float-box-title {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #3da3dc;
}

.txt__blue {
  color: #3da3dc;
}

.time__float-box-flex-item:last-of-type {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding-left: 30px;
  width: calc(100% - 60px);
}

.time__table {
  border-collapse: collapse;
}

.time__table th {
  padding: 15px 15px;
  border-top: 1px solid #d8d8d8;
  text-align: left;
  font-weight: 400;
  text-align: center;
}

.time__table tr:last-of-type th,
.time__table tr:last-of-type td {
  border-bottom: 1px solid #d8d8d8;
}

.time__table td {
  padding: 15px 15px;
  border-top: 1px solid #d8d8d8;
  text-align: center;
}

.slide__archive-news-link .material-symbols-outlined {
  color: #32b6a0;
  margin-right: 10px;
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

/*　================ swiper ================ */

/*　================ swiperぬるっとめくれる動きここから ================ */

.swiper {
  width: 95%;
}

.swiper-slide {
  width: 100%;
  height: calc(100vh - 100px);
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*　================ swiperぬるっとめくれる動きここまで ================ */


/* .slider__space {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  overflow: hidden;
  height: calc(100vh - 100px);
  position: relative;
} */

/* .swiper{
  overflow: visible!important;
} */

/* .swiper--wrapper {
  width: 100%;
  height: 300px;
} */

/* .swiper-slide{
  background-image: url(../cmn_img/top/mv-pc01.jpg);
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 100%;
} */

/* .swiper-slide {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

/* .slide__item-wrapper{
  width: calc( 100% - 30px );
  margin-right: 30px;
}

.slide__item-img{
  width: 100%;
  position: relative;
  z-index: 1;
}

.slide__item-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.slide__item-time{
  width: fit-content;
  color: #fff;
  background-color: #32b6a0;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  right: 10px;
  transform: translateY(50%);
  z-index: 2;
}

.slide__item-title{
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0!important;
  bottom: -60px!important;
  height: 5px!important;
  width: 1200px!important;
  max-width: 90%!important;
}
.swiper-scrollbar {
	background: #f1f1f1!important;
	border-radius: 50px!important;
}
.swiper-scrollbar-drag {
	background: #32b6a0!important;
	border-radius: 50px!important;
} */


/* .swiper-slide img{ 
  /* animation:text_anime_on 1s ease-in-out forwards; */
/*animation-name: zoom-out-anim;
  animation-duration: 10s;
  animation-fill-mode:backwords;
  animation-timing-function: ease;
  animation-iteration-count:infinite;
} */

@keyframes zoom-out-anim {
  0% {
    transform: translate(0, 0) scale(1);
  }

  60% {
    transform: translate(0, 0) scale(1);
    animation-timing-function: ease;
  }

  80% {
    transform: translate(30px, 0) scale(1.04);
    animation-timing-function: ease;
  }

  100% {
    transform: translate(0, 0) scale(1);
    animation-timing-function: ease;
  }
}



#hamburger,
#sp__menu,
#social {
  display: none;
}

/* ===============　Newsスペース　=============== */

.news {
  padding: 100px 0;
}

.news__flex {
  display: flex;
}

.news__title-box {
  width: 250px;
}

.news__title {
  font-size: 2.5rem;
}

.news__title_small {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.news__archive-link {
  width: fit-content;
  padding: 5px 20px;
  border-radius: 50px;
  background-color: #3da3dc;
  color: #fff;
}

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

.news__list-item {
  width: 100%;
  display: flex;
  border-top: 1px solid #dddddd;
  padding: 20px;
}

.news__list-item:last-of-type {
  border-bottom: 1px solid #dddddd;
}

.news__list-time {
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  padding: 20px 20px;
}

.news__list-month {
  font-size: 0.9rem;
  line-height: 1;
}

.news__list-day {
  font-size: 3rem;
  line-height: 1;
}

.news__list-content {
  width: calc(100% - 260px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news__list-cate {
  display: block;
  color: #778385;
}

.news__list-cate::before {
  content: "《";
}

.news__list-cate::after {
  content: "》";
}

.news__list-title {
  display: block;
}

.c-button_ly {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

/* ===============ホバーしたらSVGの円が出て来る動きここから=============== */
.c-button {
  display: block;
  width: 100px;
  height: 100px;
  position: relative;
  margin-left: 30px;
}

.c-button .circle100 {
  fill: transparent;
  stroke: transparent;
  stroke-width: 2px
}

.c-button .circle100 circle {
  stroke-dasharray: 314;
  stroke-dashoffset: 0;
  transition: all 1s ease;
}

a:hover .c-button .circle100 circle {
  stroke-dashoffset: 628;
  stroke: #3da3dc;
}

.c-button-svgReverseDirection .circle100 {
  transform: rotate(180deg) scale(1, -1);
}

.c-button-svgTop .circle100 {
  transform: rotate(-90deg) scale(1, -1);
}

.c-button-bg::after {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #edf9ff;
  content: "";
  background-image: url(../cmn_img/top/base-arrow.svg);
  background-position: center center;
  background-size: 25px 10px;
  color: #182e32;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition-duration: 1s;
}

a:hover .c-button.c-button-bg::after {
  width: 93px;
  height: 93px;
  transition-duration: 1s;
}

/* ===============ホバーしたらSVGの円が出て来る動きここまで=============== */

.news-list-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  /* display: block; */
  width: 100px;
  height: 100px;
  position: relative;
  margin-left: 30px;
}

.news-list-button .circle100 {
  fill: transparent;
  stroke: transparent;
  stroke-width: 2px;
  transform: rotate(-90deg) scale(1, -1);
}

.news-list-button .circle100 circle {
  stroke-dasharray: 314;
  stroke-dashoffset: 0;
  transition: all 1s ease;
}

a:hover .news-list-button .circle100 circle {
  stroke-dashoffset: 628;
  stroke: #3da3dc;
}

.news-list-button::after {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: #edf9ff;
  content: "";
  background-image: url(../cmn_img/top/base-arrow.svg);
  background-position: center center;
  background-size: 25px 10px;
  color: #182e32;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition-duration: 1s;
}

a:hover .news-list-button::after {
  width: 93px;
  height: 93px;
  transition-duration: 1s;
}


/* ==================== Our Policy ===================== */

.policy {
  position: relative;
  overflow: hidden;
  height: 1000px;
  /* background-image: url(../cmn_img/top/policy-bg.png); */
  background-size: cover;
}

.policy__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.policy__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.policy__content {
  width: 350px;
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
}

.policy__style {
  font-size: 2.5rem;
  line-height: 1.6;
  margin-bottom: 40px;
}

.title__small {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 20px;
  color: #3da3dc;
}

.circle__link {
  width: 140px;
  height: 100px;
  position: relative;
  display: block;
  margin-top: 20px;
  z-index: 2;
}

.circle__link-txt {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  left: 0;
  z-index: 2;
}

.c-button-item_ly {
  display: block;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.policy__img01 {
  width: calc((100% - 450px) / 2.3);
  /* aspect-ratio: 3 / 3.8; */
  top: 100px;
  left: 0;
  position: absolute;
  /* background-image: url(../cmn_img/top/top-policy01.jpg);
  background-size: cover; */
}

.policy__img02 {
  width: calc((100% - 450px) / 2.6);
  top: 250px;
  right: 0;
  z-index: 2;
  position: absolute;
  object-fit: cover;
}

.policy__img03 {
  width: calc((100% - 450px) / 2.5);
  top: 350px;
  right: 60px;
  z-index: 1;
  position: absolute;
  object-fit: cover;
}

/* .policy__img01,
.policy__img02,
.policy__img03{
  width: 200px;
} */

/* .policy__circle{
  display: block;
  border-radius: 50%;
  background-color: #778385;
}

.policy__circle01{
  width: 30px;
  height: 30px;
  top: 500px;
  right: 100px;
  position: absolute;
} */

#scroll-up {
  background-position: center center;
}

#scroll-up-bg {
  background-position: right top;
}

/* .policy__square{
  display: block;
  background-color: #778385;
} */

.policy__treatment {
  width: 1200px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  padding-top: 70px;
  padding-bottom: 100px;
  position: relative;
  flex-direction: column;
}

.policy__treatment__txt {
  font-size: 90px;
  color: #9eadd7;
  opacity: 0.2;
  position: absolute;
  top: 65px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: 200;
  /* animation-duration: 20s;
  animation-name: txt-slide;
  animation-iteration-count: infinite;
  animation-timing-function: linear; */
}

@keyframes txt-slide {
  0% {
    opacity: 0;
    transform: translate(10%);
  }

  1% {
    opacity: 0.2;
  }

  99% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translate(-90%);
  }
}

.policy__treatment-img {
  width: 700px;
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
}

.stage-link-flex {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.stage-link-item {
  width: 7em;
  height: 2em;
  background-color: #3da3dc;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50px;
  margin-right: 20px;
  padding-right: 3px;
}

.stage-link-item::after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
}

@keyframes circle {
  0% {
    stroke-dasharray: 0 366;
  }

  99.9%,
  to {
    stroke-dasharray: 366 366;
  }
}

.feature {
  padding-top: 150px;
  padding-bottom: 100px;
  background-image: url(../cmn_img/top/feature-bg.jpg);
  background-size: cover;
  background-position: center center;
}

.feature__box {
  background-color: #fff;
  border-radius: 40px;
  padding: 100px 100px 80px;
  position: relative;
}

.feature__title {
  font-size: 80px;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
}

.feature__title_big {
  position: relative;
  background-image: linear-gradient(0deg, #9eadd7 0 34%, #fff 30%);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: bold;
  font-weight: 200;
}

.feature__title_big:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(0deg, #3D1F15 0 50%, white 30%); */
  content: '';
  z-index: -1;
}

.feature__title_small {
  display: block;
  color: #9eadd7;
  font-size: 14px;
  text-align: center;
  transform: translateY(-9px);
}

.feature__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature__item {
  display: flex;
  border-bottom: 1px solid #182e32;
  padding-bottom: 30px;
  padding-top: 30px;
  align-items: center;
  justify-content: space-between;
  width: 30%;
}

.feature__num-box {
  width: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #3da3dc;
}

.feature__num_small_txt {
  font-weight: 400;
  font-size: 12px;
}

.feature__num {
  font-weight: 400;
  font-size: 70px;
  line-height: 0.8;
}

.feature__txt {
  width: calc(100% - 110px);
  font-size: 1.15rem;
  font-weight: bold;
}

.feature__txt_small {
  font-size: 0.85rem;
  font-weight: normal;
}

.menu {
  padding-top: 100px;
  padding-bottom: 100px;
}

.menu__bg {
  background-color: #e9eff8;
  width: calc(50% + 660px);
  max-width: 90%;
  margin-right: 0;
  margin-left: auto;
  padding: 50px;
}

.menu__ly {
  width: 1200px;
  max-width: 95%;
  margin-left: 0;
  margin-right: auto;
  display: flex;
}

.menu__box {
  width: 50%;
}

.menu__list-box {
  width: 500px;
  max-width: 90%;
  margin-left: 0;
  margin-right: auto;
}

.menu__list-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.menu__content-bg {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  width: 100%;
  height: 230px;
  transition-duration: 0.3s;
}

a:hover .menu__content-bg {
  width: 95%;
  transition-duration: 0.3s;
  height: 215px;
}

.menu__list {
  width: 49%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 230px;
  margin-bottom: 10px;
}

.menu__img {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition-duration: 0.3s;
}

.menu__img.img-width-big {
  width: 110px;
}

a:hover .menu_img {
  transition-duration: 0.3s;
}

.menu__img img {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  width: auto;
  display: block;
  transform: scale(1, 1);
}

a:hover .menu__img img {
  transform: scall(0.9, 0.9);
  transition-duration: 0.3s;
}

.menu__list-title {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  display: block;
  transition-duration: 0.3s;
}

.menu__list-title span {
  font-size: 14px;
  display: block;
  transition-duration: 0.3s;
}

a:hover .menu__list-title {
  font-size: 17px;
  transition-duration: 0.3s;
}

.menu__list-title_small {
  font-size: 0.85rem;
  color: #3da3dc;
  text-align: center;
  display: block;
}

.menu__content {
  width: 50%;
  position: relative;
  height: 910px;
}

.menu__list__last {
  width: 100%;
  height: 180px;
}

.menu__list__last .menu__content-bg {
  background-color: #fffbfd;
  display: flex;
  flex-direction: row;
  height: 180px;
}

.menu__list__last .menu__img {
  margin-right: 10px;
}

.menu__list__last .menu__txt-box {
  margin-left: 10px;
}

a.menu__list__last:hover .menu__content-bg {
  width: 95%;
  transition-duration: 0.3s;
  height: 170px;
}

.menu__txt-box {
  display: flex;
  flex-direction: column;
}

.base__title {
  margin-bottom: 40px;
}

.base__title_big {
  font-size: 80px;
  line-height: 1;
  display: block;
  margin-bottom: 10px;
  font-family: 'Manrope';
}

.base__title_small {
  font-size: 14px;
  display: block;
}

.c-button-bg-white::after {
  background-color: #fff;
}

.menu__online {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 110%;
  z-index: 1;
}



.menu__online-bg {
  position: relative;
  border-radius: 30px;
  background-color: #fff;
  width: 100%;
  height: 340px;
  box-shadow: 0px 0px 11px 3px rgba(0, 0, 0, 0.07);
}

.menu__online-img {
  width: 240px;
  position: absolute;
  top: -50px;
  right: -65px;
}

.online__txt-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -35%);
  width: 85%;
}

.online__title {
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.online__title::after {
  position: absolute;
  z-index: -1;
  font-size: 50px;
  content: "Telemedicine";
  display: inline-block;
  top: -1.3em;
  left: -0.2em;
  opacity: 0.2;
  color: #9eadd7;
  font-size: 65px;
  font-weight: 200;
  font-family: 'Manrope';
}

.txt-blue {
  color: #3da3dc;
}

/* ================= Approach ================= */

.approach {
  padding-top: 100px;
  padding-bottom: 200px;
}

.approach__flex {
  display: flex;
  width: calc(50% + 600px);
  max-width: 90%;
  margin-right: 0;
  margin-left: auto;
  justify-content: space-between;
}

.approach__content {
  width: 600px;
}

.approach__img {
  width: calc(100% - 660px);
}

.circle__link.approach__circle-link {
  width: 190px;
}

.base__title_middle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ================= Doctor ================= */

/* .doctor{
  padding-bottom: 100px;
} */

.doctor__flex {
  width: calc(50% + 660px);
  display: flex;
  margin-left: 0;
  justify-content: space-between;
  margin-right: auto;
  padding: 60px 60px 60px 0;
  height: 750px;
  position: relative;
  background-image: url(../cmn_img/top/doctor-bg.jpg);
}

.doctor__profile {
  width: calc(100% - 660px);
  position: relative;
  height: 100%;
}

.doctor__img {
  display: block;
  width: 500px;
  max-width: 80%;
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 80px;
}

.doctor__profle-txt-box {
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #fff;
  border-radius: 0 30px 30px 0;
  bottom: -100px;
  padding: 100px 100px 80px 0;
  box-shadow: 0px 0px 11px 3px rgb(0 0 0 / 7%);
}

.doctor__profle-txt-box-wrapper {
  width: 480px;
  margin-right: 0;
  margin-left: auto;
  position: relative;
}

.doctor__profile-hosoku {
  color: #3da3dc;
  font-weight: 200;
  font-size: 1.5rem;
  position: absolute;
  left: -85px;
  top: 35px;
  transform: rotate(90deg);
}

.doctor__profile-hosoku::before {
  width: 25px;
  height: 1px;
  background-color: #3da3dc;
  content: "";
  display: inline-block;
  margin-right: 10px;
}

.doctor__name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.doctor__name-en {
  display: inline-block;
  margin-left: 15px;
  font-size: 0.8rem;
  color: #3da3dc;
  font-weight: 200;
}

.doctor__profile-txt {
  font-size: 0.9rem;
}

.docor__content {
  width: 600px;
  max-width: 50%;
}

.txt-white {
  color: #fff;
}

.equipment {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.equipment__ly {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.equipment__ly .base__title {
  position: absolute;
  top: -150px;
}

.equipment__title-box {
  width: 50%;
}

.equipment__content {
  width: calc(50% - 60px);
}

.equipment__bg {
  position: absolute;
  bottom: -700px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.equipment__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.corona {
  padding-bottom: 120px;
}

.corona__bg {
  background-color: #9eadd7;
  padding: 50px 50px 30px;
}

.corona__title {
  font-size: 1.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 80px;
  position: relative;
}

.corona__title::after {
  display: block;
  width: 70px;
  height: 4px;
  background-color: #fff;
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.corona__flex {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}

.corona__item {
  width: 24%;
  border-radius: 20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin-bottom: 20px;
}

.corona__img {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

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

.corona__item-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

.footer {
  width: 100%;
  background-color: #e9eff8;
  padding-top: 350px;
  position: relative;
}

.footer__slider {
  margin-bottom: -250px;
  overflow: hidden;
}

.footer-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.footer__slider .swiper-wrapper {
  transition-timing-function: linear;
  height: 500px;
}

/* .swiper-slide{ height: auto; }
.height100{ height: 100%; } */

.footer__slider .swiper-slide {
  position: relative;
  overflow: hidden;
  width: 32%;
  height: 100%;
}

.footer__slider .swiper-slide .height100 {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.footer__slider .swiper-slide img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.4);
}

.seoTxt {
    font-size: 12px;
    width: 100%;
    margin: 0 auto;
    line-height: 2;
    margin-top: 50px;
    color: #a2a2a2;
}

@keyframes moveframe {
  0% {
    transform: scale(1.2) translateX(0);
  }

  50% {
    transform: scale(1.2) translateX(20%);
  }

  100% {
    transform: scale(1.2) translateX(0);
  }
}

.footer__ly {
  display: flex;
  justify-content: space-between;
  height: 600px;
}

.footer__detail {
  width: 35%;
  height: 600px;
}

.footer__detail .social {
  margin-top: 20px;
}

.footer__detail .social i {
  color: #5ba1d7;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo-big-txt {
  font-size: 1.6rem;
  font-weight: bold;
  color: #3da3dc;
  display: block;
}

.footer__logo-small-txt {
  font-size: 0.9rem;
  color: #3da3dc;
  display: block;
}

.footer__address-about {
  display: block;
  width: fit-content;
  color: #3da3dc;
  border: 1px solid #3da3dc;
  font-size: 0.85rem;
  padding: 1px 10px;
  margin-bottom: 20px;
}

.footer__address {
  margin-bottom: 20px;
}

.fa-map-marker {
  display: inline-block;
  margin-left: 5px;
  margin-right: 5px;
}

.footer__tel {
  font-size: 1.5rem;
  color: #3da3dc;
  font-weight: bold;
  margin-bottom: 20px;
  display: inline-block;
}

.fa-phone {
  display: inline-block;
  margin-right: 10px;
}

.footer__map {
  width: 55%;
  height: 600px;
}

.iframe {
  width: 100%;
  height: 100%;
}

.footer .time__table th {
  padding: 10px 10px;
}

.time__table {
  font-size: 13.5px;
}

.time p {
  font-size: 13px;
}

.footer__copy {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  background-color: #fff;
  margin-top: 100px;
}

.recommend {
  background-image: url(../cmn_img/top/doctor-bg.jpg);
  background-position: center center;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
}

.recommend__about {
  width: 200px;
  position: absolute;
  top: 0;
  right: calc(50% + 400px);
  transform: translateY(-20%);
  font-size: 20px;
  padding: 8px 20px;
  border-radius: 50px;
  background-color: #fff;
  text-align: center;
  box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 5%);
}

.recommend__about_big {
  font-size: 24px;
  color: #3da3dc;
}

.recommend__about::before {
  display: inline-block;
  width: 1px;
  height: 25px;
  background-color: #3da3dc;
  margin-right: 15px;
  transform: rotate(-20deg) translateY(3px);
  content: "";
}

.recommend__about::after {
  display: inline-block;
  width: 1px;
  height: 25px;
  background-color: #3da3dc;
  margin-left: 15px;
  transform: rotate(20deg) translateY(3px);
  content: "";
}

.recommend__title {
  position: absolute;
  top: 80px;
  right: calc(50% + 140px);
}

/*　================ swiper ================ */

.recommend .slider__space {
  width: calc(50% + 600px);
  margin-right: 0;
  margin-left: auto;
  max-width: 100%;
  /* overflow: hidden; */
  height: 410px;
}

.swiperRecommend {
  overflow: visible !important;
}

.swiperRecommend .swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiperRecommend .slide__item-wrapper {
  width: calc(100% - 30px);
  margin-right: 30px;
}

.swiperRecommend .slide__item-img {
  width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.swiperRecommend .slide__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.swiperRecommend .swiper-slide {
  display: block;
  transition-duration: 0.3s;
}

.swiperRecommend .swiper-slide img {
  position: relative;
  transition-duration: 1s;
}

.swiperRecommend .swiper-slide:hover img {
  transform: scale(1.1);
  transition-duration: 1s;
  transition-timing-function: ease-in-out;
}

.swiperRecommend .slide__item-time {
  width: fit-content;
  color: #fff;
  background-color: #32b6a0;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 30px;
  position: absolute;
  bottom: 0;
  right: 10px;
  transform: translateY(50%);
  z-index: 2;
}

.swiperRecommend .slide__item-title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: bold;
}

.swiperRecommend .swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  left: 0 !important;
  bottom: -60px !important;
  height: 5px !important;
  width: 1200px !important;
  max-width: 90% !important;
}

.swiperRecommend .swiper-scrollbar {
  background: #f1f1f1 !important;
  /* 背景色（現在のスライド以外） */
  border-radius: 50px !important;
  /* 丸み */
}

.swiperRecommend .swiper-scrollbar-drag {
  background: #32b6a0 !important;
  /* 背景色（現在のスライド） */
  border-radius: 50px !important;
  /* 丸み */
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal {
  width: 100%;
  height: 2px;
  left: 0;
  top: calc(100% + 50px);
}

.swiper-pagination-progressbar {
  background: #fff;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #3da3dc;
}

.swiper-button-next,
.swiper-button-prev {
  top: -60px;
}

.swiper-button-prev {
  left: auto;
  right: 180px;
}

.swiper-button-next {
  left: auto;
  right: 110px;
}

.swiper-button-prev,
.swiper-button-next {
  display: block;
  width: 65px;
  height: 65px;
  position: relative;
  margin-left: 30px;
}

.swiper-button-prev .circle100,
.swiper-button-next .circle100 {
  fill: transparent;
  stroke: transparent;
  stroke-width: 2px;
  transform: rotate(-90deg) scale(1, -1);
}

.swiper-button-prev .circle100 circle,
.swiper-button-next .circle100 circle {
  stroke-dasharray: 314;
  stroke-dashoffset: 0;
  transition: all 1s ease;
}

/* .swiper-button-prev:hover .circle100 circle,
.swiper-button-next:hover .circle100 circle{
  stroke-dashoffset:628;
  stroke:#3da3dc;
} */

.swiper-button-prev::after,
.swiper-button-next::after {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  background-color: #fff;
  content: "";
  background-image: url(../cmn_img/top/base-arrow.svg);
  background-position: center center;
  background-size: 20px 8px;
  color: #182e32;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  transition-duration: 1s;
}

@keyframes arrow-right {
  0% {
    background-position: center center;
    background-blend-mode: normal;
  }

  48% {
    background-position: 150% center;
    background-blend-mode: lighten;
  }

  50% {
    background-position: -50% center;
    background-blend-mode: lighten;
  }

  100% {
    background-position: center center;
    color: #182e32;
    background-blend-mode: normal;
  }
}

@keyframes arrow-left {
  0% {
    background-position: center center;
    background-blend-mode: normal;
  }

  48% {
    background-position: -50% center;
    background-blend-mode: lighten;
  }

  50% {
    background-position: 150% center;
    background-blend-mode: lighten;
  }

  100% {
    background-position: center center;
    color: #182e32;
    background-blend-mode: normal;
  }
}

.swiper-button-prev:hover::after {
  animation-name: arrow-left;
  animation-duration: 1s;
}

.swiper-button-next:hover::after {
  animation-name: arrow-right;
  animation-duration: 1s;
}


/*.swiper-button-prev:hover::after,
.swiper-button-next:hover::after{
  width: 93px;
  height: 93px;
  transition-duration: 1s;
} */

/* .swiper-button-next.c-button.c-button-svgTop.c-button-bg,
.swiper-button-prev.c-button.c-button-svgTop.c-button-bg{
  top: -80px;
  position: absolute;
}

.swiper-button-next.c-button.c-button-svgTop.c-button-bg::after,
.swiper-button-prev.c-button.c-button-svgTop.c-button-bg::after{
  width: 75px;
  height: 75px;
  background-color: #fff;
}

.swiper-button-prev.c-button.c-button-svgTop.c-button-bg::after{
  background-image: url(../cmn_img/top/base-arrow-prev.svg);
}

.swiper-button-prev.c-button.c-button-bg:hover .circle100 circle,
.swiper-button-next.c-button.c-button-bg:hover .circle100 circle{
  stroke-dashoffset:628;
  stroke:#3da3dc;
}

.swiper-button-prev.c-button.c-button-bg:hover::after,
.swiper-button-next.c-button.c-button-bg:hover::after{
  width: 85px;
  height: 85px;
  transition-duration: 1s;
} */

.swiper-button-next,
.swiper-button-prev {
  top: -80px;
  position: absolute;
}

/* .swiper-button-next::after,
.swiper-button-prev::after{
  width: 75px;
  height: 75px;
  background-color: #fff;
} */

.swiper-button-prev::after {
  background-image: url(../cmn_img/top/base-arrow-prev.svg);
}

.swiper-button-prev:hover .circle100 circle,
.swiper-button-next:hover .circle100 circle {
  stroke-dashoffset: 628;
  stroke: #3da3dc;
}

/* .swiper-button-prev:hover::after,
.swiper-button-next:hover::after{
  width: 77px;
  height: 77px;
  transition-duration: 1s;
} */

.swiper-equipment-space {
  width: calc(50% + 600px);
  height: 850px;
  margin-right: 0;
  margin-left: auto;
  max-width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* フッタースライダーの動き */

@keyframes moveframe {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(10%);
  }
}

/* Equipmentのスライダー */

.turnOverWrap {
  padding-bottom: 94px;
  overflow: hidden;
  position: relative;
  width: 47%;
  /* スライドの幅調整 */
}

.turnOverWrap2 {
  padding-bottom: 94px;
  overflow: hidden;
  position: relative;
  width: 47%;
  /* スライドの幅調整 */
}

@media screen and (max-width: 834px) {
  .turnOverWrap {
    padding-bottom: 40px;
  }

  .turnOverWrap2 {
    padding-bottom: 40px;
  }
}

.turnOverSlide {
  position: relative;
  padding-bottom: 30px;
  pointer-events: none;
}

.turnOverSlide2 {
  position: relative;
  padding-bottom: 30px;
  pointer-events: none;
}

@media screen and (max-width: 834px) {
  .turnOverSlide {
    padding-bottom: 0;
  }

  .turnOverSlide2 {
    padding-bottom: 0;
  }
}

.turnOverSlideItem {
  /* padding: 0 2.692%; */
  position: relative;
}

.turnOverSlideItem2 {
  /* padding: 0 2.692%; */
  position: relative;
}

/* ドット　mv-list-imgの中のimgの切り替わりで動く--ここから */

.vartual-dots {
  display: flex;
  width: 136px;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.vartual-dots-item {
  display: block;
  border: none;
  outline: none;
  width: 32px;
  height: 2px;
  background: #d5e9f3;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.vartual-dots-item::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  width: 0;
  height: 100%;
  background: #38a1db;
  border: 0;
  border-radius: 0;
  content: "";
}

.vartual-dots-item.active {
  opacity: 1;
}

.vartual-dots-item.active::before {
  -webkit-animation: line 5s infinite;
  animation: line 5s infinite;
}

/* ドット　mv-list-imgの中のimgの切り替わりで動く--ここまで */

@keyframes line {
  0% {
    width: 0;
  }

  10% {
    width: 0;
  }

  80% {
    width: 100%;
    left: 0;
  }

  100% {
    width: 100%;
    left: 100%;
  }
}

.turnOverSlide .slick-slide {
  overflow: hidden;
}

.turnOverSlide2 .slick-slide {
  overflow: hidden;
}

.turnOverSlide .slick-slide .turnOverImg {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  width: 140%;
  /*　画像のサイズ指定 ここを100%より大きくすることで調整　*/
  height: 400px;
  /*　画像のサイズ指定　*/
}

.turnOverSlide2 .slick-slide .turnOverImg2 {
  position: relative;
  overflow: hidden;
  padding-bottom: 30px;
  width: 140%;
  /*　画像のサイズ指定 ここを100%より大きくすることで調整　*/
  height: 700px;
  /*　画像のサイズ指定　*/
}

.turnOverImg .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.turnOverImg2 .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.turnOverSlide .slick-slide.slick-center .turnOverImg:before {
  -webkit-animation: line 5s infinite;
  animation: line 5s infinite;
}

.turnOverSlide2 .slick-slide.slick-center .turnOverImg2:before {
  -webkit-animation: line 5s infinite;
  animation: line 5s infinite;
}

.turnOverSlide .slick-slide .turnOverListImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 30px;
  overflow: hidden;
  width: 100%;
  /*　画像のサイズ指定 基本は100%　*/
  height: 100%;
  /*　画像のサイズ指定 基本は100%　*/
}

.turnOverSlide2 .slick-slide .turnOverListImg2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 30px;
  overflow: hidden;
  width: 100%;
  /*　画像のサイズ指定 基本は100%　*/
  height: 100%;
  /*　画像のサイズ指定 基本は100%　*/
}

.turnOverSlide .slick-track {
  height: 400px;
  /*　スライドの高さ調整　*/
}

.turnOverSlide2 .slick-track {
  height: 700px;
  /*　スライドの高さ調整　*/
}

.turnOverSlide .slick-slide .turnOverListImg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0;
  -webkit-transform: scale(1.1) translateX(100%);
  -ms-transform: scale(1.1) translateX(100%);
  transform: scale(1.1) translateX(100%);
  -webkit-transition: width 1.5s;
  -o-transition: width 1.5s;
  transition: width 1.5s;
  will-change: transform, width;
}

.turnOverSlide2 .slick-slide .turnOverListImg2 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  bottom: 0;
  -webkit-transform: scale(1.1) translateX(100%);
  -ms-transform: scale(1.1) translateX(100%);
  transform: scale(1.1) translateX(100%);
  -webkit-transition: width 1.5s;
  -o-transition: width 1.5s;
  transition: width 1.5s;
  will-change: transform, width;
}

.turnOverSlide .slick-slide .turnOverListImg img.on {
  -webkit-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
  width: 100%;
  z-index: 5;
  opacity: 1;
  -webkit-transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  -o-transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
}

.turnOverSlide2 .slick-slide .turnOverListImg2 img.on {
  -webkit-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  transform: scale(1) translateX(0);
  width: 100%;
  z-index: 5;
  opacity: 1;
  -webkit-transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  -o-transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.3s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
}

.turnOverSlide .slick-slide .turnOverListImg img.off {
  -webkit-transform: scale(1.1) translateX(-200px);
  -ms-transform: scale(1.1) translateX(-200px);
  transform: scale(1.1) translateX(-200px);
  width: 0;
  z-index: 10;
  opacity: 1;
  -webkit-transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.5s cubic-bezier(0.45, 0.05, 0.6, 0.93) 0s, -webkit-transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  -o-transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
}

.turnOverSlide2 .slick-slide .turnOverListImg2 img.off {
  -webkit-transform: scale(1.1) translateX(-200px);
  -ms-transform: scale(1.1) translateX(-200px);
  transform: scale(1.1) translateX(-200px);
  width: 0;
  z-index: 10;
  opacity: 1;
  -webkit-transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.5s cubic-bezier(0.45, 0.05, 0.6, 0.93) 0s, -webkit-transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  -o-transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
  transition: width 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s, -webkit-transform 1.5s cubic-bezier(0.45, 0.05, 0.3, 0.93) 0s;
}

/* ====================== loader ====================== */

.is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

.is-locked body {
  -webkit-overflow-scrolling: auto;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 15px;
  background: #f5f5f5;
  -webkit-transition: 1s all;
  -o-transition: 1s all;
  transition: 1s all;
}

.loading-logo {
  position: relative;
  width: fit-content;
  color: #3da3dc;
  opacity: 0;
}

.loading-logo .logo__big {
  font-size: 2rem;
  margin-bottom: 5px;
  color: #3da3dc;
}

.loading-logo .logo__small {
  font-size: 1.3rem;
  color: #3da3dc;
}

.loading.hide {
  opacity: 0;
  pointer-events: none;
}

.delay2100 {
  animation-delay: 2.1s;
  transition-delay: 2.1s;
}

.delay2300 {
  animation-delay: 2.3s;
  transition-delay: 2.3s;
}

.footer__float-menu {
  display: none;
}

.return-top {
  position: fixed;
  z-index: 5;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #edf9ff;
  /* display: flex; */
  display: none;
  justify-content: center;
  align-items: center;
  bottom: 15px;
  right: 30px;
  opacity: 0;
  transition-duration: 1s;
}

.is-in .return-top {
  display: flex;
  animation-duration: 1s;
  animation-name: opacityVisible;
  animation-fill-mode: forwards;
}

@keyframes opacityVisible {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.return-top:hover {
  opacity: 1;
}

.return-top img {
  width: 30%;
  height: auto;
  transform: rotate(-90deg);
  display: block;
}

/* =================== */

.txt-doctor {
  color: #182e32;
}

.modalrecruit__inner-bnr {
  width: 300px;
  max-width: 100%;
  margin: 30px auto 0;
}

@media screen and (min-width:1501px) {
  .recommend .slider__space {
    height: 430px;
  }
}

@media screen and (min-width:1601px) {
  .recommend .slider__space {
    height: 450px;
  }
}

@media screen and (min-width:1701px) {
  .recommend .slider__space {
    height: 470px;
  }
}

@media screen and (min-width:1801px) {
  .recommend .slider__space {
    height: 490px;
  }
}

@media screen and (min-width:1901px) {
  .recommend .slider__space {
    height: 540px;
  }
}

/* @media screen and (min-width:1801px) {
  .recommend .slider__space {
    height: 490px;
  }
}

@media screen and (min-width:1701px) {
  .recommend .slider__space {
    height: 470px;
  }
} */

/* @media screen and (min-width:1601px) {
  .recommend .slider__space {
    height: 450px;
  }
}

@media screen and (min-width:1501px) {
  .recommend .slider__space {
    height: 430px;
  }
} */

@media screen and (max-width:1600px) {
  .policy {
    height: 900px;
  }

  .online__title::after {
    font-size: 60px;
  }

  .menu__online-img {
    width: 200px;
    top: -50px;
    right: -35px;
  }
}

@media screen and (max-width:1500px) {
  .doctor__profle-txt-box {
    padding: 100px 50px 80px 0;
  }
}

@media screen and (max-width:1400px) {
  .policy__treatment {
    padding-top: 30px;
  }

  .policy__treatment__txt {
    font-size: 80px;
    top: 65px;
    line-height: 1;
  }

  .policy__treatment-img {
    width: 650px;
  }

  .policy__content {
    width: 380px;
    transform: translateX(-53%);
  }

  .feature__num {
    font-size: 60px;
  }

  .feature__txt {
    width: calc(100% - 90px);
    font-size: 1rem;
  }

  .online__title {
    font-size: 1.6rem;
  }

  .online__title::after {
    font-size: 48px;
  }

  .menu__list {
    height: 200px;
  }

  .menu__content-bg {
    height: 200px;
    padding: 10px;
  }

  .menu__img {
    width: 80px;
    height: 80px;
  }

  .menu__img.img-width-big {
    width: 90px;
  }

  a:hover .menu__content-bg {
    height: 190px;
  }

  .menu__list-title {
    font-size: 16px;
  }

  a:hover .menu__list-title {
    font-size: 15px;
  }

  .approach__content {
    width: 450px;
  }

  .approach__img {
    width: calc(100% - 520px);
  }

  .doctor__flex {
    width: 95%;
  }

  .doctor__profile {
    width: 50%;
  }

  .docor__content {
    width: 45%;
    max-width: 45%;
  }

  .doctor__img {
    right: 60px;
  }

  .doctor__profle-txt-box {
    bottom: -140px;
  }

  .doctor__profle-txt-box-wrapper {
    width: 400px;
  }
}

@media screen and (max-width:1300px) {
  .recommend .slider__space {
    max-width: calc(100% - 30px);
  }

  .recommend__about {
    left: 30px;
    right: auto;
  }

  .recommend__title {
    right: auto;
    left: 30px;
  }

  .swiper-horizontal>.swiper-pagination-progressbar,
  .swiper-pagination-progressbar.swiper-pagination-horizontal {
    top: calc(100% + 10px);
  }

  .policy {
    height: 830px;
  }

  .policy__content {
    top: 120px;
  }

  .policy__style {
    font-size: 2.3rem;
  }
}

@media screen and (max-width:1200px) {
  body {
    padding-top: 80px;
  }

  .header {
    height: 80px;
  }

  .return-top {
    bottom: 95px;
  }

  /* .mv {
    margin-top: 80px;
  } */

  .header__nav-link,
  .reservation-btn {
    display: none;
  }

  #hamburger {
    display: block;
    background-color: #3da3dc;
    width: 80px;
    height: 80px;
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    cursor: pointer;
  }

  .hamburger {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hamburger .line {
    position: absolute;
    display: inline-block;
    width: 50%;
    left: 25%;
    height: 1px;
    background-color: #fff;
  }

  .hamburger .line:first-of-type {
    top: 25px;
    transition-duration: 1s;
  }

  .hamburger .line:nth-of-type(2) {
    top: 37px;
    transition-duration: 1s;
  }

  #hamburger.active .hamburger .line:first-of-type {
    top: 32px;
    transform: rotate(20deg);
    transition-duration: 1s;
  }

  #hamburger.active .hamburger .line:nth-of-type(2) {
    top: 32px;
    transform: rotate(-20deg);
    transition-duration: 1s;
  }

  .hamburger-txt {
    position: absolute;
    display: inline-block;
    top: 55%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 200;
  }

  #social {
    display: block;
    position: fixed;
    right: 80px;
  }

  #social i {
    color: #5ba1d7;
  }

  #sp__menu {
    display: block;
    width: 100%;
    background-color: #dfeefb;
    /* padding: 50px 30px; */
    z-index: 15;
    position: fixed;
    top: 80px;
    left: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition-duration: 1s;
    /* overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none; */
  }

  .sp__menu-inner {
    padding: 50px 30px 100px;
    width: 100%;
    height: 100vh;
    max-height: 800px;
    overflow: auto;
  }

  /* #sp__menu::-webkit-scrollbar{
    display: none;
  } */

  /* .sp__menu-inner::-webkit-scrollbar{
    display: none;
  } */

  #sp__menu.active {
    transform: translateY(0);
    opacity: 1;
    transition-duration: 1s;
  }

  .sp__menu-link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 700px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .sp__menu-link li {
    width: 50%;
    margin-bottom: 50px;
    list-style: none;
  }

  .sp__menu-link li .sml {
    font-size: 80%;
    display: block;
  }

  .sp__menu-link li .en-menu {
    font-size: 12px;
    display: block;
  }

  .sp__menu-link i {
    color: #5ca1d7;
  }

  .sp__menu-time {
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 30px;
    background-color: #fff;
    padding: 30px;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #time__float-box {
    display: none;
  }

  .news__title-box {
    width: 200px;
  }

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

  .swiper-button-next {
    right: 30px;
  }

  .swiper-button-prev {
    right: 100px;
  }

  .recommend .slider__space {
    height: 380px;
  }

  .policy__style {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .title__small {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .policy {
    height: 770px;
  }

  .policy__treatment__txt {
    font-size: 70px;
    top: 75px;
  }

  .policy__treatment-img {
    width: 600px;
  }

  .policy__treatment__txt {
    font-size: 65px;
  }

  .feature__box {
    padding: 90px 50px 80px;
  }

  .feature__title_small {
    transform: translateY(-17px);
  }

  .feature__item {
    padding-bottom: 25px;
    padding-top: 25px;
    width: 31%;
  }

  .feature__num {
    font-size: 50px;
  }

  .feature__num-box {
    width: 50px;
  }

  .feature__txt {
    width: calc(100% - 70px);
  }

  .menu__bg {
    max-width: 95%;
  }

  .menu__content-bg {
    height: 170px;
  }

  .menu__list {
    height: 170px;
  }

  .menu__img {
    width: 65px;
    height: 65px;
  }

  .menu__img.img-width-big {
    width: 75px;
  }

  .menu__list-title {
    font-size: 16px;
  }

  .menu__list-title_small {
    font-size: 0.7rem;
  }

  .menu__list.menu__list__last {
    height: 120px;
  }

  .menu__list__last .menu__content-bg {
    height: 120px;
  }

  a.menu__list__last:hover .menu__content-bg {
    width: 95%;
    transition-duration: 0.3s;
    height: 110px;
  }

  .base__title_big {
    font-size: 65px;
    margin-bottom: 7px;
  }

  .base__title {
    margin-bottom: 30px;
  }

  a:hover .menu__content-bg {
    height: 165px;
  }

  a:hover .menu__list-title {
    font-size: 14px;
  }

  .online__title::after {
    font-size: 37px;
  }

  .menu__online-img {
    width: 170px;
    right: -25px;
  }

  .online__title {
    font-size: 1.4rem;
  }

  .online__txt-box {
    transform: translate(-50%, -40%);
  }

  .approach {
    padding-top: 60px;
    padding-bottom: 90px;
  }

  .approach__content {
    width: 45%;
  }

  .approach__img {
    width: 49%;
    height: 500px;
  }

  .approach__img img {
    vertical-align: bottom;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .base__title_middle {
    font-size: 1.4rem;
  }

  .doctor__profle-txt-box {
    padding: 100px 40px 50px 0;
  }

  .doctor__profle-txt-box-wrapper {
    width: 300px;
  }

  .corona__item {
    border-radius: 10px;
    padding: 30px 15px 20px;
    margin-bottom: 10px;
  }

  .corona__img {
    width: 60px;
    height: 60px;
  }

  .corona__item-title {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .corona__txt {
    font-size: 0.8rem;
  }

  .footer__slider .swiper-wrapper {
    height: 400px;
  }

  .footer__slider {
    margin-bottom: -200px;
  }

  .footer {
    padding-top: 300px;
  }

  .doctor__profle-txt-box {
    bottom: -120px;
  }

  .footer__float-menu {
    width: 100%;
    height: 80px;
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    z-index: 10;
  }

  .footer__float-menu-time {
    width: 50%;
    height: 100%;
  }

  .footer__float-menu-time a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #91c3ef;
    padding: 10px;
    color: #fff;
    font-size: 1.1rem;
  }

  .footer-time-icon,
  .footer-reservation-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }

  .footer__float-menu-reservation {
    width: 50%;
    height: 100%;
  }

  .footer__float-menu-reservation a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #3da3dc;
    padding: 10px;
    color: #fff;
    font-size: 1.1rem;
  }

  .footer__float-menu-reservation a:hover,
  .footer__float-menu-time a:hover {
    opacity: 1;
  }

  footer {
    padding-bottom: 80px;
  }

  .modaal-container {
    width: 520px !important;
    max-width: 100% !important;
    border-radius: 30px !important;
    padding: 10px !important;
    border-radius: 30px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .loading-logo .logo__big {
    font-size: 1.6rem;
  }

  .loading-logo .logo__small {
    font-size: 1rem;
  }
}

@media screen and (max-width:1150px) {
  .recommend .slider__space {
    height: 360px;
  }
}

@media screen and (max-width:1100px) {
  .recommend .slider__space {
    height: 340px;
  }

  .doctor__profle-txt-box {
    bottom: -100px;
  }
}

@media screen and (max-width:1050px) {
  .recommend .slider__space {
    height: 320px;
  }
}

@media screen and (max-width:1000px) {
  .recommend .slider__space {
    height: 300px;
  }

  .doctor__profle-txt-box {
    bottom: -70px;
  }
}

@media screen and (max-width:960px) {
  .m_15px {
    font-size: 15px !important;
  }

  .news {
    padding: 40px 0 160px;
  }

  .news__flex {
    flex-direction: column;
    position: relative;
  }

  .news__title-box {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
  }

  .news__title_small {
    margin-bottom: 0;
    margin-top: 7px;
    margin-left: 20px;
  }

  .news__list {
    width: 100%;
  }

  .news__archive-link {
    position: absolute;
    bottom: -60px;
    right: 0;
  }

  .recommend .slider__space {
    height: 450px;
  }

  .base__title_big {
    font-size: 3.5rem;
  }

  .policy {
    height: 1300px;
  }

  .policy__content {
    width: 90%;
    transform: translateX(5%);
    left: 0;
    top: 60px;
  }

  .policy__img01 {
    width: 45%;
    top: 680px;
  }

  .policy__img02 {
    width: 40%;
    top: 800px;
  }

  .policy__img03 {
    width: 37%;
    top: 900px;
    right: 50px;
  }

  .policy__treatment__txt {
    font-size: 53px;
    top: 85px;
  }

  .policy__bg {
    transform: translateY(200px);
  }

  .feature__box {
    padding: 80px 40px 80px;
  }

  .feature__title_big {
    background-image: linear-gradient(0deg, #9eadd7 0 35%, #fff 30%);
  }

  .feature__title {
    top: -88px;
  }

  .feature__flex {
    width: 600px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .feature__item {
    width: 48%;
  }

  .feature__num-box {
    width: 30%;
    min-width: 50px;
  }

  .feature__txt {
    max-width: calc(100% - 70px);
    width: 70%;
    text-align: center;
  }

  .menu {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .menu__ly {
    width: 100%;
    flex-direction: column-reverse;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .menu__content {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }

  .menu__box {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .menu__list-box {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 200px;
  }

  .online__txt-box {
    transform: translate(-50%, -50%);
  }

  .online__title::after {
    font-size: 48px;
    opacity: 0.6;
    font-size: 50px;
    /* top: -0.9em; */
    top: -1.3em;
  }

  .menu__online-img {
    top: auto;
    bottom: -40px;
  }

  .menu__online-bg {
    top: 1000px;
    width: 90%;
  }

  .approach {
    padding-top: 100px;
    padding-bottom: 90px;
  }

  .approach__flex {
    width: 90%;
    flex-direction: column;
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
  }

  .approach__content {
    width: 100%;
    margin-bottom: 50px;
  }

  .approach__img {
    width: 100%;
    height: 350px;
  }

  .doctor__flex {
    width: 100%;
    align-items: center;
    flex-direction: column-reverse;
    margin-left: 0;
    justify-content: space-between;
    margin-right: auto;
    padding: 60px 0;
    height: 1210px;
    position: relative;
  }

  .docor__content {
    width: 90%;
    max-width: 90%;
  }

  .doctor__img {
    top: 20px;
    right: 50%;
    transform: translateX(50%);
  }

  .doctor__profile {
    width: 100%;
  }

  .doctor__profle-txt-box {
    padding: 80px 50px 50px 0;
    width: 95%;
    position: absolute;
    left: 0;
    background-color: #fff;
    border-radius: 0 30px 30px 0;
    bottom: 20px;
  }

  .doctor__profle-txt-box-wrapper {
    width: calc(100% - 100px);
  }

  .turnOverWrap {
    width: 100%;
  }

  .turnOverWrap2 {
    display: none;
  }

  .turnOverSlide .slick-track {
    height: 500px;
  }

  .turnOverSlide .slick-slide .turnOverImg {
    height: 500px;
  }

  .vartual-dots {
    margin-left: auto;
    margin-right: 30px;
    margin-top: 30px;
  }

  .equipment {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
  }

  .swiper-equipment-space {
    height: 550px;
  }

  .equipment__ly {
    flex-direction: column;
  }

  .equipment__ly .base__title {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }

  .equipment__title-box,
  .equipment__content {
    width: 100%;
  }

  .corona__title {
    font-size: 1.4rem;
  }

  .corona__item {
    width: 49%;
    padding: 30px 20px;
  }

  .corona__img {
    width: 70px;
    height: 70px;
  }

  .corona__item-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }

  .corona__txt {
    font-size: 0.9rem;
  }

  .footer {
    padding-top: 220px;
  }

  .footer__ly {
    height: auto;
    flex-direction: column;
  }

  .footer__detail {
    width: 100%;
    height: auto;
    margin-bottom: 50px;
  }

  .footer__map {
    width: 100%;
    height: auto;
  }

  .footer__map iframe {
    height: 300px;
  }

  .footer__copy {
    height: 60px;
    margin-top: 70px;
  }

  .footer__slider .swiper-wrapper {
    height: 300px;
  }

  .footer__slider {
    margin-bottom: -150px;
  }

  .policy__img01 {
    width: 60%;
    z-index: 3;
    top: 630px;
  }

  .policy__img02 {
    width: 45%;
    top: 700px;
  }

  .policy__img03 {
    width: 40%;
    top: 850px;
    right: 50px;
  }
}

@media screen and (max-width:900px) {
  .recommend .slider__space {
    height: 420px;
  }
}

@media screen and (max-width:850px) {
  .recommend .slider__space {
    height: 390px;
  }
}

@media screen and (max-width:800px) {
  .recommend .slider__space {
    height: 365px;
  }

  .doctor__flex {
    height: 1310px;
  }

  .doctor__img {
    top: 60px;
  }
}

@media screen and (max-width:750px) {
  .recommend .slider__space {
    height: 340px;
  }

  .doctor__img {
    top: 50px;
  }

  .policy__img01 {
    top: 650px;
  }

  .policy__img02 {
    top: 730px;
  }

  .policy__img03 {
    top: 880px;
  }
}

@media screen and (max-width:700px) {
  .recommend .slider__space {
    height: 315px;
  }
}

@media screen and (max-width:640px) {
  body {
    padding-top: 60px;
  }

  .header {
    height: 60px;
  }

  .return-top {
    bottom: 80px;
    right: 15px;
  }

  .header__nav-flex {
    padding: 0 15px;
  }

  .header__logo a {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #hamburger {
    width: 60px;
    height: 60px;
  }

  .hamburger .line:first-of-type {
    top: 20px;
  }

  .hamburger .line:nth-of-type(2) {
    top: 30px;
  }

  .hamburger-txt {
    font-size: 0.75rem;
  }

  #sp__menu {
    top: 60px;
  }

  .sp__menu-inner {
    max-height: 700px;
    padding: 50px 30px 150px;
  }

  #hamburger.active .hamburger .line:first-of-type {
    top: 23px;
  }

  #hamburger.active .hamburger .line:nth-of-type(2) {
    top: 23px;
  }

  .logo__big {
    font-size: 18px;
  }

  .logo__small {
    font-size: 11px;
  }

  .mv {
    /* margin-top: 60px; */
    height: 400px;
  }

  .mv .swiper {
    width: 100%;
  }

  .mv .swiper-wrapper {
    height: 400px;
  }

  .mv .swiper-slide {
    height: 400px;
  }

  .mv__txt {
    font-size: 12px;
  }

  .mv__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .mv__address {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .mv__title-box {
    top: auto;
    bottom: 35px;
    left: 7%;
    transform: translateY(0);
  }

  .news__list-day {
    font-size: 2rem;
  }

  .news__list-month {
    font-size: 0.7rem;
  }

  .news__list-time {
    width: 30px;
    margin-right: 20px;
  }

  /* .c-button {
    width: 60px;
    height: 60px;
    margin-left: 20px;
  }

  

  a:hover .c-button {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    margin-left: 20px;
  } */

  .news-list-button {
    width: 60px;
    height: 60px;
    margin-left: 20px;
  }

  a:hover .news-list-button {
    display: block;
    width: 60px;
    height: 60px;
    position: relative;
    margin-left: 20px;
  }

  .news__list-content {
    /* width: calc(100% - 80px); */
    width: calc(100% - 120px);
  }

  .news__list-cate {
    font-size: 0.8rem;
  }

  .news__list-title {
    font-size: 0.9rem;
  }

  /* .c-button-bg::after,
  a:hover .c-button.c-button-bg::after {
    width: 50px;
    height: 50px;
    background-size: 20px 10px;
  } */

  .news-list-button::after,
  a:hover .news-list-button::after {
    width: 50px;
    height: 50px;
    background-size: 20px 10px;
  }

  .news__list-item {
    padding: 20px 0;
  }

  .news__title {
    font-size: 2rem;
  }

  .news__title-box {
    margin-bottom: 15px;
  }

  .news {
    padding: 40px 0 130px;
  }

  .recommend__about {
    left: 15px;
    width: 180px;
    transform: translateY(-30%);
    font-size: 16px;
    padding: 4px 20px;
  }

  .recommend__about_big {
    font-size: 20px;
  }

  .recommend__about::before,
  .recommend__about::after {
    height: 20px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .policy__style {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .policy__img01 {
    width: 60%;
    z-index: 3;
  }

  .policy__img02 {
    width: 45%;
  }

  .policy__img03 {
    width: 40%;
  }

  .recommend {
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .base__title_big {
    font-size: 3rem;
  }

  .recommend__title {
    top: 60px;
  }

  .stage-link-flex {
    flex-wrap: wrap;
  }

  .stage-link-item {
    width: 30%;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
  }

  .stage-link-item:nth-of-type(3),
  .stage-link-item:last-of-type {
    margin-right: 0;
  }

  .policy__treatment__txt {
    font-size: 60px;
    left: -50%;
    animation-duration: 120s;
    animation-name: txt-slide;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }

  .feature__title {
    font-size: 60px;
    top: -67px;
  }

  .feature__box {
    padding: 60px 40px 80px;
  }

  .feature__title_big {
    background-image: linear-gradient(0deg, #9eadd7 0 34%, #fff 30%);
  }

  .feature__item {
    width: 280px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .menu__bg {
    padding: 50px 30px;
  }

  .menu__list.menu__list__last {
    height: 110px;
  }

  .menu__list__last .menu__content-bg {
    height: 110px;
  }

  a.menu__list__last:hover .menu__content-bg {
    width: 95%;
    transition-duration: 0.3s;
    height: 100px;
  }

  .corona__bg {
    padding: 50px 20px 30px;
  }

  .corona__item {
    padding: 20px;
    justify-content: flex-start;
  }

  .corona__item-title {
    font-size: 0.8rem;
  }

  .corona__txt {
    font-size: 0.8rem;
  }

  .footer {
    padding-top: 175px;
  }

  .footer__slider {
    margin-bottom: -125px;
  }

  .footer__slider .swiper-wrapper {
    height: 250px;
  }

  .turnOverSlide .slick-track {
    height: 400px;
  }

  .turnOverSlide .slick-slide .turnOverImg {
    height: 400px;
  }

  .equipment {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .swiper-equipment-space {
    height: 470px;
  }

  .feature {
    padding-top: 100px;
    padding-bottom: 70px;
  }

  .policy__treatment {
    padding-bottom: 80px;
  }

  .recommend .slider__space {
    height: 380px;
  }

  .footer__float-menu {
    height: 60px;
  }

  .footer-time-icon,
  .footer-reservation-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }

  .footer__float-menu-time a,
  .footer__float-menu-reservation a {
    font-size: 1rem;
  }

  footer {
    padding-bottom: 60px;
  }

  .corona__img {
    width: 50px;
    height: 50px;
  }

  .loading-logo .logo__big {
    font-size: 1.3rem;
  }

  .loading-logo .logo__small {
    font-size: 0.9rem;
  }

  .time__table {
    width: 100%;
  }

  .policy__treatment__txt {
    top: 75px;
  }
}

@media screen and (max-width:620px) {
  .doctor__img {
    top: 30px;
  }
}

@media screen and (max-width:600px) {
  .recommend .slider__space {
    height: 360px;
  }
}

@media screen and (max-width:580px) {
  .time__table th {
    padding: 10px 7px;
  }

  .time__table td {
    padding: 10px 9px;
  }

  /* .modaal-container {
    width: 370px!important;
  } */

  .modaal-content-container {
    padding: 30px 0 !important;
  }

  .modaal-container {
    width: 100% !important;
  }

  .modaal-wrapper [tabindex="0"] {
    width: 90%;
  }
}

@media screen and (max-width:550px) {
  .policy {
    height: 1200px;
  }

  .policy__img01 {
    top: 680px;
  }

  .policy__img02 {
    top: 760px;
  }

  .policy__img03 {
    top: 900px;
  }

  .doctor__profle-txt-box-wrapper {
    width: 340px;
  }

  .base__title_middle {
    font-size: 1.15rem;
  }

  .sp__menu-link li {
    margin-bottom: 35px;
    font-size: 0.9rem;
  }

  .recommend .slider__space {
    height: 325px;
  }
}

@media screen and (max-width:500px) {
  .policy {
    height: 1230px;
  }

  .policy__img01 {
    top: 710px;
  }

  .policy__img02 {
    top: 790px;
  }

  .policy__img03 {
    top: 930px;
  }

  .doctor__profle-txt-box {
    padding: 80px 40px 50px 0;
    bottom: 10px;
  }

  .doctor__profle-txt-box-wrapper {
    width: 300px;
  }

  .online__title {
    font-size: 1.2rem;
  }

  /* .online__title::after {
    font-size: 40px;
  } */

  .online__txt-box {
    transform: translate(-50%, -50%);
  }

  .menu__online-bg {
    border-radius: 10px;
  }

  .turnOverSlide .slick-track {
    height: 350px;
  }

  .turnOverSlide .slick-slide .turnOverImg {
    height: 350px;
  }

  .equipment {
    padding-top: 70px;
  }

  .swiper-equipment-space {
    height: 420px;
  }

  .recommend .slider__space {
    height: 290px;
  }

  .menu__list-title {
    font-size: 14.5px;
  }

  .menu__list-title span {
    font-size: 12px;
  }

  .sp__menu-link {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 250px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .sp__menu-link li {
    width: 43%;
  }
}

@media screen and (max-width:450px) {
  .policy {
    height: 1100px;
  }

  .policy__img03 {
    top: 890px;
  }

  .menu__online-bg {
    top: 1000px;
    height: 280px;
  }

  .online__title::after {
    font-size: 45px;
    top: -1.2em;
  }

  .online__title {
    font-size: 0.95rem;
  }

  .online__title p {
    font-size: 0.9rem;
  }

  .menu__online-img {
    width: 140px;
    bottom: -60px;
  }

  .approach {
    padding-top: 150px;
    padding-bottom: 80px;
  }

  .doctor__flex {
    height: 1350px;
  }

  .doctor__img {
    width: 300px;
  }

  .doctor__profle-txt-box-wrapper {
    width: 260px;
  }

  .corona__bg {
    padding: 30px 10px 30px;
  }

  .corona__item {
    padding: 20px 10px;
  }

  .corona__title {
    font-size: 1.2rem;
    margin-bottom: 60px;
  }

  .corona__title::after {
    width: 50px;
    height: 2px;
    bottom: -20px;
  }

  .time__table td {
    padding: 10px 7px;
    font-size: 0.7rem;
  }

  .time__table th {
    padding: 10px 7px;
    font-size: 0.7rem;
  }

  .sp__menu-time {
    border-radius: 10px;
    padding: 30px 10px;
  }

  .menu__online-bg {
    top: 1000px;
    height: 360px;
    border-radius: 10px;
  }

  .menu__list-box {
    margin-bottom: 170px;
  }

  .turnOverSlide .slick-track {
    height: 300px;
  }

  .turnOverSlide .slick-slide .turnOverImg {
    height: 300px;
  }

  .swiper-equipment-space {
    height: 370px;
  }

  .recommend .slider__space {
    height: 255px;
  }

  .modaal-container {
    width: 100% !important;
  }

  .modaal-wrapper [tabindex="0"] {
    width: 90%;
  }

  .approach__img {
    height: 300px;
  }
}

@media screen and (max-width:400px) {
  .menu__content-bg {
    padding: 5px;
  }

  .menu__list-title,
  a:hover .menu__list-title {
    font-size: 11px;
  }

  .doctor__flex {
    height: auto;
  }

  .doctor__profile {
    height: 850px;
  }

  .doctor__profle-txt-box-wrapper {
    width: 220px;
  }

  .doctor__img {
    width: 280px;
  }

  .doctor__profle-txt-box {
    bottom: 90px;
  }

  .doctor__flex {
    padding: 60px 0 0;
  }

  .recommend .slider__space {
    height: 340px;
  }

  .online__title::after {
    font-size: 40px;
  }

  .menu__online-img {
    right: -15px;
  }

  .menu__online-bg {
    width: 95%;
    transform: translateX(-5px);
  }

  .approach__img {
    height: 250px;
  }

}


/*======================　リクルートポップアップ　==========================*/
#btnrecruit {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.233;
  transition: all .3s;
  cursor: pointer;
  z-index: 10;
  font-size: 14px;
  background-color: #dfe5f6;
  color: #3fa3dc;
}

.btnrecruit__en {
  font-family: 'Manrope';
  font-weight: 600;
  opacity: .3;
}

.btnrecruit__mk {
  font-size: 10px;
  display: flex;
  height: 1.5em;
  box-sizing: border-box;
  padding: .1em .8em 0;
  border-radius: 1em;
  background-color: #ffffff;
  color: #98a3c8;
}

.btnrecruit__icon {
  width: 1em;
  margin-left: .5em;
}

@media screen and (max-width: 640px) {
  #btnrecruit {
    bottom: 60px;
    left: 0;
    right: 0;
    height: 35px;
  }

  #btnrecruit br,
  .btnrecruit__en,
  .btnrecruit__mk {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  #btnrecruit {
    font-size: 15px;
    top: 150px;
    right: 0;
    aspect-ratio: 1 / 1;
    background-color: #98a3c8;
    color: #ffffff;
    flex-direction: column;
    gap: .5em;
    padding: 1em;
    border-radius: 6px 0 0 6px;
  }

  #btnrecruit:hover {
    opacity: .6;
  }

  .btnrecruit__icon {
    display: none;
  }
}

#modalrecruit {
  transition: opacity .3s;
  opacity: 0;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  aspect-ratio: 1 / 1;
  background-color: rgba(0, 0, 0, .3);
  pointer-events: none;
}

#modalrecruit * {
  pointer-events: none;
}

.modalrecruit__btn {
  position: fixed;
  top: 10vh;
  right: calc((100vw - 750px) / 2);
  width: 25px;
  z-index: 10000;
  cursor: pointer;
  transition: all .3s;
  transform: translateY(-50%);
}

.modalrecruit__btn img {
  width: 100%;
}

@media screen and (max-width: 780px) {
  .modalrecruit__btn {
    right: 5px;
  }
}

@media screen and (min-width: 641px) {
  .modalrecruit__btn:hover {
    opacity: .6;
  }
}

#modalrecruit__inner {
  background-color: #ffffff;
  width: 100%;
  max-width: 750px;
  height: 80vh;
  overflow: auto;
  padding: 30px 15px;
  box-sizing: border-box;
}

.modalrecruit__inner-ttl,
.modalrecruit__inner-lst {
  max-width: 615px;
  margin-left: auto;
  margin-right: auto;
}

.modalrecruit__inner-ttl {
  background-color: #98a4c8;
  color: #ffffff;
  text-align: center;
  padding: .2em 1em .1em;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 1em;
}

.modalrecruit__inner-lst {
  font-size: 13px;
}

@media screen and (max-width: 640px) {
  .modalrecruit__inner-lst dt {
    padding: .3em 1em .5em;
  }

  .modalrecruit__inner-lst dd {
    padding: 0 1em .5em;
    border-bottom: 1px solid #d6d9e1;
  }

  .modalrecruit__inner-lst dd:not(:last-child) {
    margin-bottom: .5em;
  }
}

@media screen and (min-width: 641px) {
  .modalrecruit__inner-lst {
    display: flex;
    flex-wrap: wrap;
  }

  .modalrecruit__inner-lst>* {
    border-bottom: 1px solid #d6d9e1;
    box-sizing: border-box;
    padding: .3em 1em;
  }

  .modalrecruit__inner-lst dt {
    width: 13em;
    flex: 0 0 auto;
  }

  .modalrecruit__inner-lst dd {
    width: 50%;
    flex: 1 1 auto;
  }
}

body.recactive #modalrecruit {
  opacity: 1;
  pointer-events: auto;
}

body.recactive #modalrecruit * {
  pointer-events: auto;
}


@media screen and (max-width: 640px) {
  footer {
    padding-bottom: 95px;
  }

  .return-top {
    position: static;
    margin: 0 15px 0 auto;
    transform: translateY(calc(-200% - 35px));
  }
}