@charset "UTF-8";

/*--------------------------------
            CSS Animation
 --------------------------------*/

/*------------ inview ------------*/

#lp_contents .fadeIn {
  opacity: 0;
  transition: 2s;
}

#lp_contents .fadeIn.is-show {
  opacity: 1;
}




/*------------ front animation ------------*/

@keyframes anim_hide {
  0% {
    opacity: 1;
    display: block;
  }

  100% {
    opacity: 0;
    display: none;
  }
}

@keyframes font_pc {
  0% {
    font-size: calc(80 *(100vW / 1600));
  }

  100% {
    font-size: calc(42 *(100vW / 1600));
  }
}

@keyframes font_sp {
  0% {
    font-size: calc(56 *(100vW / 430));
  }

  100% {
    font-size: calc(32 *(100vW / 430));
  }
}

#lp_contents .front_area{
  transition: all 3s;
  transition-delay: 1s;
}

#lp_contents .front_area.is-show{
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 3s;
  transition-delay: 1s;
}

#lp_contents .front_area.is-hide{
  transition: all 3s;
  transition-delay: 1s;
}

#lp_contents .front_area .bg_area {
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  transition: 2s;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 2s;
}

#lp_contents .front_area.is-hide .bg_area{
  animation: anim_hide 1s forwards;
  animation-delay: 0.5s;
  pointer-events: none;
}

#lp_contents .front_area.is-show .bg_area:before{
  content: '';
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg_pc.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

#lp_contents .front_area.is-show .ttl_wrap{
  font-size: calc(80 *(100vW / 1600));
}

#lp_contents .front_area.is-hide .ttl_wrap{
  animation: font_pc 3s forwards;
  bottom: auto;
  margin-block-start: 0;
  margin-block-end: 0;
}

#lp_contents .front_area.is-show .ttl_wrap span{
  font-size: 2rem;
  margin-top: 3rem;
}

@media (max-width: 767px) {

  #lp_contents .front_area.is-show .bg_area:before{
    background-image: url(../img/bg_sp.jpg);
  }

  #lp_contents .front_area.is-show .ttl_wrap{
    font-size: calc(56 *(100vW / 430));
  }

  #lp_contents .front_area.is-hide .ttl_wrap{
    animation: font_sp 3s forwards;
  }

  #lp_contents .front_area.is-show .ttl_wrap span{
    margin-top: 2.5rem;
  }
}

/*------------ modal slider ------------*/

body.no_scroll {
  height: 100vh;
  overflow: hidden;
}

#lp_contents .modal{
  display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1004;
    background: rgb(106 106 106 / 30%);
    transition: opacity .3s;
    --webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

#lp_contents .modal *{
    z-index: 1004;
}

#lp_contents .modal__content {
  /*position: relative;*/
  width: 100vw;
  margin: 0 auto;
  padding: 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  box-sizing: border-box;
  overflow: scroll;
  filter: drop-shadow(0 0 1rem rgba(0, 0, 0, .16));
}

#lp_contents .modal__content::-webkit-scrollbar {
  display: none;
}

#lp_contents .modal_blk_inner{
  position: relative;
}

#lp_contents .btn-close {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  transition: .3s;
  top: 2rem;
  right: 2rem;
  z-index: 1005;
  cursor: pointer;
  cursor: hand;
}

#lp_contents .item_sec .btn-close{
  left: 0;
  right: 0;
  transform: translateX(22rem);
  margin: auto;
}

#lp_contents .btn-close::before,
#lp_contents .btn-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 2.7rem;
  height: 1px;
  background: #000;
  content: "";
  transition: .3s;
}

#lp_contents .btn-close::after {
  width: 1px;
  height: 2.7rem;
}

#lp_contents .modal__content .slick-prev{
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(-28rem);
  z-index: 1005;
}

#lp_contents .modal__content .slick-prev:before{
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-left: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
  position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #000;
}

#lp_contents .modal__content .slick-next{
  width: 4rem;
  height: 4rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateX(28rem);
  z-index: 1005;
  position: absolute;
}

#lp_contents .modal__content .slick-next:before{
  content: '';
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
  position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: #000;
}

#lp_contents .modal__content .slick-track {
  display: flex;
}

#lp_contents .modal__content .slick-slide {
  height: auto !important;
}

#lp_contents .slick-track {
  display: flex;
}
#lp_contents .slick-slide {
  height: auto !important;
}

@media (max-width: 767px) {
  #lp_contents .btn-close{
    width: 1.6rem;
    height: 1.6rem;
  }

  #lp_contents .btn-close::before{
    width: 2.2rem;
  }

  #lp_contents .btn-close::after{
    height: 2.2rem;
  }

  #lp_contents .item_sec .btn-close{
    transform: translateX(16.5rem);
    top: 4rem;
  }

  #lp_contents .modal_blk_inner{
    height: 100vh;
    padding: 2rem;
    overflow-y: scroll;
    overflow-x: hidden;
  }

  #lp_contents ul.modal_list{
    width: 39rem;
  }

  #lp_contents .modal__content .slick-prev{
    width: 3rem;
    height: 3rem;
    transform: translateX(-15rem);
    top: 14rem;
    bottom: auto;
  }

  #lp_contents .modal__content .slick-prev:before{
    width: 2rem;
    height: 2rem;
  }

  #lp_contents .modal__content .slick-next{
    width: 3rem;
    height: 3rem;
    transform: translateX(15rem);
    top: 14rem;
    bottom: auto;
  }

  #lp_contents .modal__content .slick-next:before{
    width: 2rem;
    height: 2rem;
  }
}

