.carousel-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s;
  pointer-events: auto;
}
.carousel-arrow.-prev:hover {
  transform: translateX(-5px);
}
.carousel-arrow.-next:hover {
  transform: translateX(5px);
}
.carousel-arrow.swiper-button-disabled {
  opacity: 0.7;
  cursor: auto;
}
.carousel-arrow.swiper-button-disabled:hover {
  transform: translate(0);
}

.carousel-dots {
  font-size: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-dots.-left {
  justify-content: flex-start;
}
.carousel-dots.-right {
  justify-content: flex-end;
}
.carousel-dots .swiper-pagination-bullets .swiper-pagination-bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  background: none;
  padding: 0 5px;
  margin: 0;
  opacity: 1;
}
.carousel-dots .swiper-pagination-bullets .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F2EFEB;
  border-radius: 9px;
}
.carousel-dots .swiper-pagination-bullets .swiper-pagination-bullet:hover::before, .carousel-dots .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #248471;
}
.carousel-dots.-border.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 150px;
  height: 8px;
  padding: 0 5px;
  border-radius: 9px;
}
.carousel-dots.-border.swiper-pagination-bullets .swiper-pagination-bullet::before {
  border-radius: 0;
}
.carousel-dots.-square.swiper-pagination-bullets .swiper-pagination-bullet::before {
  border-radius: 0;
}

.carousel-container__inner {
  overflow: visible;
  margin: 0 auto;
  width: 900px;
  max-width: 100%;
}
@media screen and (max-width: 960px) {
  .carousel-container__inner {
    width: 240px;
  }
}
.carousel-container__inner.-hidden {
  overflow: hidden;
}
.carousel-container__inner .swiper {
  width: 100%;
  margin: 0;
}
.carousel-container__head {
  margin-bottom: 30px;
}
.carousel-container__foot {
  margin-top: 65px;
}
@media screen and (max-width: 960px) {
  .carousel-container__foot {
    margin-top: 25px;
  }
}
.carousel-container__column {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px;
}
.carousel-container__column.-left {
  justify-content: flex-start;
}
.carousel-container__column.-right {
  justify-content: flex-end;
}
.carousel-container__column.-between {
  justify-content: space-between;
}
.carousel-container__column-item {
  flex: 0 0 auto;
  padding: 10px;
}
.carousel-container__absolute-wrap {
  position: relative;
}
.carousel-container__absolute {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.carousel-container__absolute.-sp {
  display: flex;
}
@media screen and (max-width: 960px) {
  .carousel-container__absolute {
    width: calc(100% - 30px);
    left: 15px;
    max-height: unset;
  }
}
.carousel-container__absolute-item {
  display: block;
}
.carousel-container__absolute-item.-left {
  transform: translateX(-50%);
}
.carousel-container__absolute-item.-right {
  transform: translateX(50%);
}

.swiper {
  overflow: visible;
}
.swiper.-hidden {
  overflow: hidden;
}/*# sourceMappingURL=carousel.css.map */