@charset "utf-8";
/* default PC */

/* animation */
.animation {
  opacity: 0;
  position: relative;
  top: 40px;
  transition: .5s;
}

.animation.active {
  opacity: 1;
  top: 0;
  transition: .5s;
}

/* main-view */

.main-view,
.splide__track {
  height: 100svh;
}

.splide__slide {
  position: relative;
}

.splide__slide::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
}

#splide01-slide01::before {
  background-image: url(../image/contents/home/index_slider_01.jpg);
}

#splide01-slide02::before {
  background-image: url(../image/contents/home/index_slider_01.jpg);
}

#splide01-slide03::before {
  background-image: url(../image/contents/home/index_slider_01.jpg);
}

/* contents */
/* view-1140 notePC,Tablet */
@media screen and (max-width: 1140px) {}

/* view-959 Mobile,Tablet */
@media screen and (max-width: 959px) {

  .main-view,
  .splide__track {
    height: 45vh;
    margin-top: 78px;
  }
}

/* view-559 Mobile */
@media screen and (max-width: 559px) {

  .main-view,
  .splide__track {
    margin-top: 65px;
  }
}