@charset "UTF-8";

/*****************************
  parts
*****************************/
/* openbtn */
.openbtn {
  position: relative;
  background: #1d68a8;
  width: 50px;
  height: 50px;
  z-index: 2;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

body.active .openbtn span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

body.active .openbtn span:nth-of-type(2) {
  opacity: 0;
}

body.active .openbtn span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* btn */
.btn.btn-white {
  width: 190px;
  height: 47px;
  margin: -10px auto 0;
  background: #fff;
  border-radius: 40px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #009D95;
}

.btn .btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* cvt-btn */
.cvt-btn {
  width: 230px;
  height: 54px;
  margin: 0 auto;
  border-radius: 40px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  overflow: hidden;
}

.cvt-btn .btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cvt-btn.btn-green {
  margin-bottom: 10px;
  background: rgb(105, 195, 239);
  background: linear-gradient(90deg, rgba(105, 195, 239, 1) 0%, rgba(0, 173, 118, 1) 100%);
}

.cvt-btn.btn-purple {
  background: rgb(173, 149, 241);
  background: linear-gradient(135deg, rgba(173, 149, 241, 1) 0%, rgba(124, 119, 248, 1) 100%);
}

.cvt-btn.shine {
  position: relative;
  cursor: pointer;
}

.cvt-btn.shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
  cursor: pointer;
}

.cvt-btn.shine:hover::before {
  animation: shine 0.7s;
  cursor: pointer;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* cvt-btn fixed-btn */
.cvt-btns.fixed-btn {
  display: flex;
}

.cvt-btns.fixed-btn .cvt-btn {
  flex-basis: 50%;
  max-width: 50%;
  width: 50%;
  height: 50px;
  border-radius: 0;
  margin-bottom: 0;
}

.cvt-btns.fixed-btn {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

/* toTop-btn */
.toTop-btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  height: 50px;
  width: 50px;
  transition: .3s;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, bottom 0.5s ease;
}

.toTop-btn .btn-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #1d68a8;
  border-radius: 50%;
}

.toTop-btn span {
  height: 14px;
  width: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translateY(20%) rotate(-45deg);
}

.toTop-btn:hover {
  bottom: 18px;
  transition: .3s;
}

.toTop-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* movie & map */
.frame {
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.frame-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* accordion */
.accordion {
  position: relative;
  width: 88%;
  margin: 0 auto 10px;
  color: #1d68a8;
  font-weight: 700;
  overflow: hidden;
}

.accordion input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.accordion label {
  position: relative;
  display: block;
  padding: 10px 20px;
  cursor: pointer;
  margin: 0 0 1px 0;
  background: #fff;
  border: 1px solid #1d68a8;
  border-radius: 12px;
  font-size: 2rem;
}

.accordion .accordion-content {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.35s;
  transition: max-height 0.35s;
}

.accordion .accordion-content p {
  margin: 20px;
  font-weight: 500;
  text-align: center;
  color: #595a5a;
}

.accordion input:checked~.accordion-content {
  max-height: none;
}

.accordion label::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  text-align: center;
  background: #1d68a8;
}

.accordion input[type=checkbox]+label::after {
  content: '+';
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.accordion input[type=checkbox]:checked+label::after {
  content: '-';
  font-size: 3rem;
  transform: translate(0, -50%) rotate(180deg);
  padding-bottom: 2%;
}

.accordion input:checked+label {
  border: none;
}

.accordion input:checked {
  border: none;
}

.accordion input:checked~.accordion {
  border: 1px solid #1d68a8;
  border-radius: 12px;
}

/* modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
  z-index: 9999;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88%;
  overflow: auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #888;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10000;
}

.modal.show .modal-content {
  max-height: 500px;
  opacity: 1;
  z-index: 10000;
}

.modal-close {
  display: block;
  font-size: 4rem;
  line-height: 1;
  text-align: right;
  color: #aaa;
  transition: color 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
  color: #595a5a;
  text-decoration: none;
  cursor: pointer;
}

.modal .content-lead {
  margin: 15px auto;
  font-size: 2.1rem;
  line-height: 1.5;
  font-weight: 700;
  color: #1d68a8;
  text-align: center;
}

.modal .content-image {
  margin-bottom: 10px;
}

.modal .content-images {
  align-items: center;
  margin-bottom: 10px;
}

.modal .content-images p {
  width: 100%;
}

.modal .content-text {
  margin: 0 40px 20px;
  font-size: 1.8rem;
  line-height: 1.5;
}

.slide_vertical_wrap {
  display: none;
}

@media screen and (min-width: 390px) {

  /* modal */
  .modal.show .modal-content {
    max-height: 700px;
  }

  .facility .accordion-content .item-desc {
      font-size: 1.1rem;
      font-weight: 500;
      color: #595a5a;
  }

.facility .accordion-content p.content-image {
    max-width: 80px;
    min-width: 80px;
    margin: 0;
}

}

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

  /* openbtn */
  .cvt-btns.fixed-btn {
    display: none;
    max-width: 420px;
  }

  .cvt-btns.fixed-btn .cvt-btn {
    max-width: 210px;
  }

  /* modal */
  .modal.show .modal-content {
    max-width: 420px;
    max-height: none;
  }

  .container {
    height: 100vh;
    z-index: 2;
  }

  .visual-screen {
    display: flex;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    height: 100vh;
  }

  .content-wrapper {
    position: relative;
    width: 470px;
    height: 100%;
    z-index: 2;
    overflow: scroll;
  }

  .slide_vertical_wrap {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100vh;
  }

  .slide_vertical_wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #80c1e4;
    mix-blend-mode: multiply;
  }

  .viaual-panel.panel1 {
    width: 50% !important;
    height: 100vh;
  }

  .viaual-panel.panel2 {
    width: 50% !important;
    height: 100vh;
  }

  .slide_vertical_wrap.left {
    height: 100vh;
  }

  .slide_vertical_wrap.right {
    height: 100vh;
  }

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

  ul.slide_vertical li {
    width: 100% !important;
  }

  .infiniteslide_wrap {
    height: auto !important;
  }

  /* toTop-btn */
  .toTop-btn {
    opacity: 1;
    right: 15px;
    transform: translate(-15px, 0);
  }
}

@media screen and (min-width: 1320px) {
  .container {
    max-width: 1320px;
    width: 470px;
    margin: 0 auto;
  }

  .visual-screen {
    margin-left: 320px;
  }
}