@charset "UTF-8";
/* .slide{
    margin-top: 0;
    height: calc(100vh - 63px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */
.slide_1 {
  position: relative;
  z-index: 100;
  width: 100%;
  background: url(../img/sec05_room_n1_slide.jpg) repeat-x 50% 50%;
  background-size: cover;
  height: 100px;
  overflow: hidden;
  animation: loop1 70s linear infinite normal;
  padding-left: -10px;
}

/*アニメーション*/
@keyframes loop1 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2880px 0;
  }
}
.slide_2 {
  position: relative;
  z-index: 100;
  width: 100%;
  background: url(../img/sec05_room_n2_slide.jpg) repeat-x 50% 50%;
  background-size: cover;
  height: 100px;
  overflow: hidden;
  animation: loop2 70s linear infinite normal;
  padding-left: -10px;
}

/*アニメーション*/
@keyframes loop2 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2880px 0;
  }
}
.slide_3 {
  position: relative;
  z-index: 100;
  width: 100%;
  background: url(../img/sec05_room_n3_slide.jpg) repeat-x 50% 50%;
  background-size: cover;
  height: 100px;
  overflow: hidden;
  animation: loop3 70s linear infinite normal;
  padding-left: -10px;
}

/*アニメーション*/
@keyframes loop3 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2880px 0;
  }
}
.slide_4 {
  position: relative;
  z-index: 100;
  width: 100%;
  background: url(../img/sec05_room_n4_slide.jpg) repeat-x 50% 50%;
  background-size: cover;
  height: 100px;
  overflow: hidden;
  animation: loop4 70s linear infinite normal;
  padding-left: -10px;
}

/*アニメーション*/
@keyframes loop4 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2880px 0;
  }
}

.slide_5 {
  position: relative;
  z-index: 100;
  width: 100%;
  background: url(../img/sec05_room_n5_slide.jpg) repeat-x 50% 50%;
  background-size: cover;
  height: 100px;
  overflow: hidden;
  animation: loop5 70s linear infinite normal;
  padding-left: -10px;
}

/*アニメーション*/
@keyframes loop5 {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2398px 0;
  }
}

.slide_1::after,
.slide_2::after,
.slide_3::after,
.slide_4::after,
.slide_5::after {
  width: 100%;
  height: 10px;
  background-color: #593e35;
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}

.swiper-pagination {
  position: absolute;
  z-index: 3;
  display: flex;
  margin: 10px 0;
}

.swiper-pagination.swiper-pagination2 {
  position: relative;
  display: block;
  margin: 10px auto;
}

.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 0.3em;
  height: 0.3em;
  margin-right: 2em;
  cursor: pointer;
  background: inherit;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-pagination .swiper-pagination-bullet {
    margin-right: 2em;
  }
}
@media only screen and (max-width: 767px) {
  .swiper-pagination .swiper-pagination-bullet {
    margin-right: 2em;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  transform: scale(1.5);
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  animation: dots 10s ease;
}

.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: #856f3a;
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(1.5);
}

.swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  width: 0;
  height: 1px;
  background: #856f3a;
  position: absolute;
  top: 0.3em;
  left: 0;
}

@keyframes dots {
  0% {
    width: 0em;
  }
  100% {
    width: 2.3em;
  }
}
/* PCの時 */
@media only screen and (min-width: 768px) {
  /* .slide{
      margin-top: 63px;
  } */
  .slide_1 {
    background: url(../img/sec05_room_n1_slide.jpg) repeat-x 50% 50% #33251b;
    height: 290px;
    background-size: inherit;
  }
  .slide_2 {
    background: url(../img/sec05_room_n2_slide.jpg) repeat-x 50% 50% #33251b;
    height: 290px;
    background-size: inherit;
  }
  .slide_3 {
    background: url(../img/sec05_room_n3_slide.jpg) repeat-x 50% 50% #33251b;
    height: 290px;
    background-size: inherit;
  }
  .slide_4 {
    background: url(../img/sec05_room_n4_slide.jpg) repeat-x 50% 50% #33251b;
    height: 290px;
    background-size: inherit;
  }
  .slide_5 {
    background: url(../img/sec05_room_n5_slide.jpg) repeat-x 50% 50% #33251b;
    height: 290px;
    background-size: inherit;
  }

}/*# sourceMappingURL=main_slide_style.css.map */