@charset "UTF-8";
.ly_container {
  max-width: 980px;
  margin: 80px auto;
}

.bl_carousel_area {
  width: 80%;
  margin: 0 auto;
}

.carousel {
  position: relative;
  width: 100%;
}

.btn_left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  height: 250px;
}

.btn_right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  height: 250px;
}

.carousel button {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  font-size: 2em;
}

.slider {
  overflow: hidden;
  position: relative;
  height: 250px;
  margin: 0 auto;
  background: white;
}

.carousel img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 250px;
}

.center {
  width: 100%;
}

.footer {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.point {
  margin: 0.5em;
  cursor: pointer;
}

.point.active {
  color: #a74efa;
}

/* トランジション */
.slide-right-leave-active,
.slide-right-enter-active,
.slide-left-leave-active,
.slide-left-enter-active {
  -webkit-transition: 1s ease-in-out;
  transition: 1s ease-in-out;
}

.slide-right-enter,
.slide-left-leave-to {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.slide-right-leave-to,
.slide-left-enter {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
/*# sourceMappingURL=style_carousel.css.map */