@charset "UTF-8";

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

/*------------ Fade In ------------*/

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

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

#lp_contents .fadeInUp {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: 2s;
}

#lp_contents .fadeInUp.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

#lp_contents .delay1{
  transition-delay: 0.25s;
}
#lp_contents .delay2{
  transition-delay: 0.5s;
}
#lp_contents .delay3{
  transition-delay: 0.75s;
}
#lp_contents .delay4{
  transition-delay: 1s;
}


/*------------ accordion ------------*/

#lp_contents .accordion{
  cursor: pointer;
}

#lp_contents .accordion + dd{
  display: none;
}

#lp_contents .accordion .arrow{
  width: 2rem;
  height: 2rem;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3rem;
  margin: auto;
}

#lp_contents .accordion .arrow:before,
#lp_contents .accordion .arrow:after{
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.5s;
}

#lp_contents .accordion .arrow:after{
  height: 100%;;
  width: 1px;
}

#lp_contents .accordion.is-active .arrow:after{
  transform: rotate(90deg);
}

#lp_contents .sec_set .accordion .arrow{
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  position: static;
  border-right: 1px solid;
  border-bottom: 1px solid;
  margin: 0 0 0.3rem 1rem;
  transform: rotate(45deg);
}

#lp_contents .sec_set .accordion.is-active .arrow{
  transform: rotate(-135deg);
  margin: 0 0 0 1rem;
}

#lp_contents .sec_set .accordion .arrow:before,
#lp_contents .sec_set .accordion .arrow:after{
  content: none;
}

@media (max-width: 767px) {
  #lp_contents .accordion .arrow{
    width: 1.5rem;
    height: 1.5rem;
    right: 1.5rem;
  }
}



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

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

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

#lp_contents .modal_outside.hide {
  opacity: 0;
  pointer-events: none;
}

#lp_contents .modal_outside {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, .5);
  transition: opacity .3s;
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
}

#lp_contents .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#lp_contents .modal_inner {
  position: relative;
  width: 68rem;
  margin: 0 auto;
  padding: 0 6rem;
  -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_inner::-webkit-scrollbar {
  display: none;
}

#lp_contents .modal_inner .btn-close {
  position: sticky;
  width: 2.4rem;
  height: 2.4rem;
  transition: .3s;
  top: 2rem;
  right: 2rem;
  z-index: 2;
  cursor: pointer;
  cursor: hand;
  margin: -2rem 0 0 auto;
}

#lp_contents .modal_inner .btn-close::before,
#lp_contents .modal_inner .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 .modal_inner .btn-close::after {
  width: 1px;
  height: 2.7rem;
}

#lp_contents .modal_inner .slick-prev{
  width: 4rem;
  height: 4rem;
  position: absolute;
  left: -6rem;
  z-index: 5;
}

#lp_contents .modal_inner .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_inner .slick-next{
  width: 4rem;
  height: 4rem;
  right: -6rem;
  z-index: 5;
  position: absolute;
}

#lp_contents .modal_inner .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_inner .slick-track {
  display: flex;
}

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