/*===============================================
carousel
===============================================*/
.el_carousel {
  width: 100%;
}

@media screen and (max-width: 560px) {
  .el_carousel {
    width: 100%;
  }
}
.el_carousel_area {
  width: 100%;
  height: 100%;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 3;
  text-align: center
}
@media screen and (max-width: 560px) {
  .el_carousel_area {
    padding: 0 8px;
  }
}

.el_carousel_list {
  overflow: hidden;
}

.el_carousel_list img {
  object-fit: cover;
  object-position: center;
  -o-object-fit: cover;
  -o-object-position: center;
  border-radius: 8px;
}

.el_carousel a {
  display: block;
  padding: 0 8px;
}

@media screen and (max-width: 560px) {
  .el_carousel a {
    padding: 0;
  }
}
.el_carousel_btn {
  cursor: pointer;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border-radius: 100%; */
  /* background-color: black; */
  /* background-image: url(../images/lp//arrow.svg);
  background-size: contain;
  background-repeat: no-repeat; */
  z-index: 1;
  font-size: 1.6rem;
  width: calc(100vw * (100/2732));
  height: calc(100vw * (100/2732));
}
@media screen and (min-width: 1920px) {
  .el_carousel_btn {
    width: calc(1920px * (100/2732));
    height: calc(1920px * (100/2732));
  }
}
@media screen and (max-width: 860px) {
  .el_carousel_btn {
    top: 44%;
    width: calc(100vw * (50/750));
    height: calc(100vw * (50/750));
  }
}

.el_carousel_btn:hover {
  opacity: 0.7;
}

.el_carousel_btn span {
  display: block;
  width: 16px;
  height: 16px;
  /* border-right: 4px solid #fff;
  border-bottom: 4px solid #fff; */
  border-radius: 2px;
  background: linear-gradient(135deg, #5cdafd50 35%, #f94dbf 65%);
}
@media screen and (max-width: 860px) {
  .el_carousel_btn span {
    width: 16px;
    height: 16px;
  }
}

.el_carousel_btn__l {
  left: -5%;
  animation:2s ease-in infinite forwards expansionL;
}
@keyframes expansionL{
  0%{
    left: -8px;
  }
  65%{
    left: -8px;
  }
  70%{
    left: -14px;
  }
  80%{
    left: -8px;
  }
  90%{
    left: -14px;
  }
  100%{
    left: -8px;
  }
}

@media screen and (max-width: 560px) {
  .el_carousel_btn__l {
    left: -2%;
  }
  @keyframes expansionL{
    0%{
      left: -8px;
    }
    65%{
      left: -8px;
    }
    70%{
      left: -14px;
    }
    80%{
      left: -8px;
    }
    90%{
      left: -14px;
    }
    100%{
      left: -8px;
    }
  }
}
.el_carousel_btn__l img {
  height: 1.5rem;
  transform: rotate(180deg);
}

@media screen and (max-width: 560px) {
  .el_carousel_btn__l img {
    height: 1.1rem;
  }
}
.el_carousel_btn__l svg {
  height: 1.5rem;
  width: 2.4rem;
  transform: rotate(180deg);
}

.el_carousel_btn__l svg .cls-1 {
  fill: none;
  stroke: #31241e;
}

@media screen and (max-width: 560px) {
  .el_carousel_btn__l svg {
    height: 1.1rem;
    width: 1.8rem;
  }
}
.el_carousel_btn__l span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

@media screen and (max-width: 860px) {
  .el_carousel_btn__l span {
    margin-left: calc(100vw * (-11/750));
  }
}
.el_carousel_btn__r {
  transform: translateY(-50%) rotate(180deg);
  right: -8px;
  animation:2s ease-in infinite forwards expansionR;
}
@keyframes expansionR{
  0%{
    right: -8px;
  }
  65%{
    right: -8px;
  }
  70%{
    right: -14px;
  }
  80%{
    right: -8px;
  }
  90%{
    right: -14px;
  }
  100%{
    right: -8px;
  }
}

@media screen and (max-width: 560px) {
  .el_carousel_btn__r {
    right: -2%;
  }
  @keyframes expansionR{
    0%{
      right: -8px;
    }
    65%{
      right: -8px;
    }
    70%{
      right: -14px;
    }
    80%{
      right: -8px;
    }
    90%{
      right: -14px;
    }
    100%{
      right: -8px;
    }
  }
}
.el_carousel_btn__r img {
  height: 1.5rem;
}

@media screen and (max-width: 560px) {
  .el_carousel_btn__r img {
    height: 1.1rem;
  }
}
.el_carousel_btn__r svg {
  height: 1.5rem;
  width: 2.4rem;
}

.el_carousel_btn__r svg .cls-1 {
  fill: none;
  stroke: #31241e;
}

@media screen and (max-width: 560px) {
  .el_carousel_btn__r svg {
    height: 1.1rem;
    width: 1.8rem;
  }
}
.el_carousel_btn__r span {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}

@media screen and (max-width: 860px) {
  .el_carousel_btn__r span {
    margin-right: calc(100vw * (10/750));
  }
}
.slick-dots {
  text-align: center;
  position: absolute;
  bottom: -54px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

@media screen and (max-width: 560px) {
  .slick-dots {
    bottom: -24px;
  }
}
.slick-dots li {
  display: inline-block;
  margin: 0 15px;
}

.slick-dots li button {
  position: relative;
  text-indent: -9999px;
}

.slick-dots li button:before {
  content: "●";
  font-size: 20px;
  text-indent: 0px;
  position: absolute;
  top: 0;
  left: 0;
  color: #d9d9d9;
}

@media screen and (max-width: 560px) {
  .slick-dots li button:before {
    font-size: 14px;
  }
}
.slick-dots li.slick-active button:before {
  content: "●";
  color: #5e5e5e;
}

.el_carousel_scroll_txt {
  display: none;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  width: 100px;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 560px) {
  .el_carousel_scroll_txt {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
  }
}
.el_carousel_scroll_txt span {
  display: block;
  width: 0%;
  height: 1px;
  margin-left: 0.8rem;
  background-color: #fff;
  animation-name: scroll;
  animation-duration: 3s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    width: 0;
    opacity: 1;
  }
  100% {
    width: 100%;
    opacity: 0;
  }
}