@charset 'UTF-8';
.mv{
  position: relative;
  margin: 92px auto 0;
}

.mv .slider{
  position: relative;
  width: 100%;
  height: calc(100vh - 97px - 92px);
  min-height: 578px;
}

.vegas-animation-fadezoom {
  animation: fadezoom 20s 0s forwards;
}

@keyframes fadezoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.mv .caption{
  position: absolute;
  top: 65.48442906574394%;
  left: 7.540263543191801%;
  opacity: 0;
  animation: fadeleft 1.5s 2.3s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes fadeleft {
  0% {
    opacity: 0;
    margin-left: 10px;
  }

  100% {
    opacity: 1;
    margin-left: 0;
  }
}

.mv .caption p{
  margin: 0;
  color: var(--main-color-black);
  font-size: 2em;
  line-height: 1.4210526315789473;
  text-shadow:0 0 15px #fff,0 0 15px #fff;
}

.mv .caption p span{
  color: var(--main-color-green);
  font-size: 1.1875em;
}


.pop-up {
  position: fixed;
  right: 9px;
  bottom: 9px;
  width: 30%;
  max-width: 376px;
  height: auto;
  z-index: 10;
}

.pop-up a img{
  transition: opacity .3s ease-out;
}

@media screen and (min-width: 769px) {
  .pop-up a:hover img{
    opacity: 0.8;
  }
}

.pop-up.hide{
  opacity: 0;
  transition: opacity .3s ease;
}

.pop-up a.close {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  right: 0;
  top: -25px;
  background-color: #505050;
  text-align: center;
}

.pop-up a.close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.pop-up a.close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.pop-up a.close:before, 
.pop-up a.close:after {
  display: block;
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background: #ffffff;
  top: 50%;
  left: 50%;
}

.pop-up a.close span{
  display: none;
}

.news{
  position: relative;
  display: flex;
  width: 84.9194729136164%;
  margin: -41px auto 0;
  padding: 50px 4.46% 45px;
  background-color: #fff;
  box-shadow: 0 0 20px #00000014;
  z-index: 0;
}

.news .sec-title{
  min-width: 67px;
  height: 28.8px;
}

.news .sec-title::before{
  content: none;
}

.news .news-list{
  width: 100%;
}

.news .news-list ul{
  margin: -3px 0 0;
  padding: 0 0 0 74px;
}

.news .news-list ul li + li{
  margin-top: 8px;
}

.news .news-list ul li a{
  display: flex;
  align-items: center;
  color: var(--main-color-black);
  text-decoration: none;
  line-height: 1.8;
}

.news .news-list ul li a time{
  min-width: 100px;
  margin-right: 7px;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--main-color-green);
}

.news .news-list ul li a p{
  margin: 0;
}

.news .link{
  position: relative;
  margin-top: -6px;
  margin-right: 4%;
  text-align: right;
}

.news .link a::after{
  display: block;
  position: absolute;
  top: 50%;
  right: -55.5px;
  width: 49.45px;
  height: 23px;
  background: url(../shared/images/arrow_icon.svg) center center no-repeat;
  transform: translateY(-50%);
  content: '';
  transition: transform 0.3s ease ;
}


.about{
  position: relative;
  margin: 88px 0 0;
  background: url(../images/bg.png) no-repeat  center / cover;
}

.about .inner{
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.about .inner .text{
}

.about .inner .text p{
  margin: 0;
  line-height: 2;
}

.about .inner .text ol {
  margin: 20px 0 0;
  padding: 0 0 0 40px;
  list-style: decimal;
}

.about .inner .text ol + p{
  margin: 20px auto 0;
}

.about .inner .text ol li{
  line-height: 2.5;
}


.about .link{
  margin: 105px 130px 0 0;
  text-align: right;
}

.about .link a::after{
  border: 1px solid var(--main-color-green);
}

.facility-info{
  margin: 109px 0 0;
}

.facility-info .clinic-list ul{
  margin: 0;
  padding: 0
}

.facility-info .clinic-list ul li{
  margin-top: 36px;
}

.facility-info .clinic-list ul li a{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--main-color-black);
  box-shadow: 0 0 20px #00000014;
}

.facility-info .clinic-list ul li a .img{
  overflow: hidden;
}

.facility-info .clinic-list ul li a img{
  max-width: 270px;
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.facility-info .clinic-list ul li a .text{
  padding-left: 52px;
}

.facility-info .clinic-list ul li a .text h3{
  position: relative;
  font-size: 1.25em;
  font-weight: 400;
}

.facility-info .clinic-list ul li a .text h3::before{
  position: absolute;
  width: 10px;
  bottom: -13px;
  border-top: 1px solid var(--main-color-green);
  content: '';
}

.facility-info .clinic-list ul li a .text p{
  margin: 37px 0 0;
  font-size: 0.875em;
}

@media screen and (min-width: 769px) {
  .about .link a:hover::after{
    background: url(../shared/images/arrow_icon_white.svg) center center no-repeat var(--main-color-green);
  }
  
  .news .link a:hover::after{
    transform: translate(10px, -50%);
  }

  .facility-info .clinic-list ul li a:hover img{
    transform: scale(1.1);
  }

  .facility-info .clinic-list ul li a:hover{
    box-shadow: 0 0 20px #00000008;
  }
}

@media screen and (max-width: 1000px) {

  .news{
    display: block;
    width: 91.46666666666667%;
    margin: -27px auto 0;
    padding: 33px 28px 31px;
    z-index: 1;
  }

  .news .sec-title {
    height: auto;
  }

  .news .news-list ul{
    margin: 16px 0 0;
    padding: 0;
  }

  .news .news-list ul li + li {
    margin-top: 17px;
  }

  .news .news-list ul li a{
    display: block;
  }

  .news .news-list ul li a time{
    margin-top: 24px;
    font-size: 0.875em;
  }

  .news .news-list ul li a .text{
    font-size: 0.875em;
  }

  .news .link{
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 21px;
    margin-right: 38px;
    text-align: right;
  }

  .news .link a{
    font-size: 0.875em;
  }

  .news .link a::after{
    height: 20px;
    right: -54.45px;
  }
  
}

@media screen and (max-width: 768px) {

  .mv{
    width: 100%;
    margin: 64px 0 0;
    padding: 0;
  }
  
  .mv,
  .mv .slider,
  .mv .vegas-slide{    
    height: calc(100vh - 64px - 55px) ;
    height: calc(100svh - 64px - 55px) ;
  }

  .mv .slider{
    min-height: auto;
  }

  .mv .caption{
    top: auto;
    left: 20px;
    bottom: 15.7%;
  }
  
  .mv .caption p {
    font-size: 1.75em;
  }

  .mv .caption p span{
    font-size: 1.1428571428571428em;
  }

  .pop-up {
    right: 50%;
    left: 50%;
    bottom: 6px;
    width: calc(100% - 11px);
    max-width: none;
    transform: translateX(-50%);
  }


  .about{
    margin: 64px 0 0;
    background: none;
  }
  
  .about::after{
    display: block;
    position: absolute;
    width: 100%;
    height: 619px;
    top: -146px;
    background: url(../images/bg_sp.png) no-repeat center center / cover;
    z-index: 0;
    content: '';
  }

  .about .inner{
    display: block;
  }

  .about .inner .text{
    width: 100%;
    margin-top: 18px;
  }

  .about .inner .text p{
    line-height: 2.2;
  }

  .about .link{
    margin: 51px 92px 0 0;
  }

  .about .link a::after {
    width: 68px;
    height: 68px;
    right: -92px;
    background-size: 14.6px;
  }


  .facility-info{
    margin: 86px 0 0;
  }
  .facility-info .clinic-list ul{
    padding: 0 4px;
  }

  .facility-info .clinic-list ul li{
    margin-top: 29px;
  }

  .facility-info .clinic-list ul li + li{
    margin-top: 36px;
  }

  .facility-info .clinic-list ul li a{
    display: block;
  }

  .facility-info .clinic-list ul li .img{
    width: 100%;
  }

  .facility-info .clinic-list ul li a img{
    width: 100%;
    max-width: none;
    max-height: 205px;
    object-fit: cover;
  }

  .facility-info .clinic-list ul li a .text{
    padding-left: 21px;
    padding-bottom: 23px;
  }

  .facility-info .clinic-list ul li a .text h3{
    margin-top: 22px;
    font-size: 1em;
    line-height: 1.8;
  }

  .facility-info .clinic-list ul li a .text h3::before {
    bottom: -5px;
  }

  .facility-info .clinic-list ul li a .text p{
    margin: 19px 0 0;
    font-size: 0.75em;
    line-height: 1.8;
  }
}