.carousel-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s;
  pointer-events: auto;
}
.carousel-arrow.-prev img {
  width: 55px;
  background: #FFF;
  border-radius: 50%;
  border: 2px solid #FFF;
}
.carousel-arrow.-prev:hover {
  transform: translateX(-5px);
}
.carousel-arrow.-next img {
  width: 55px;
  background: #FFF;
  border-radius: 50%;
  border: 2px solid #FFF;
}
.carousel-arrow.-next:hover {
  transform: translateX(5px);
}
.carousel-arrow.swiper-button-disabled {
  opacity: 0.3;
  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 {
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10px;
  height: 10px;
  background: none;
  padding: 0 0;
  margin: 0;
  opacity: 1;
}
.carousel-dots.swiper-pagination-bullets .swiper-pagination-bullet::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #44af35;
  border-radius: 50%;
  box-sizing: border-box;
}
.carousel-dots.swiper-pagination-bullets .swiper-pagination-bullet:hover::before, .carousel-dots.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: #44af35;
  border: 1px solid #44af35;
}
.carousel-dots.-border.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 47px;
  height: 5px;
  padding: 5px 0;
}
.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;
}

.swiper-wrapper {
  box-sizing: border-box;
}

.carousel-container.-noSlide .swiper-wrapper {
  display: block;
}
.carousel-container:not(.-hidden) .swiper {
  overflow: visible !important;
}
.carousel-container__inner {
  overflow: visible;
}
.carousel-container:not(.-noSlide) .carousel-container__inner .swiper {
  width: 400px;
  margin: 0;
}
@media screen and (max-width: 680px) {
  .carousel-container:not(.-noSlide) .carousel-container__inner .swiper {
    width: 240px;
  }
}
.carousel-container__head {
  margin-bottom: 30px;
}
@media screen and (max-width: 680px) {
  .carousel-container__head.-pc {
    display: none;
  }
}
.carousel-container__head.-sp {
  display: none;
}
@media screen and (max-width: 680px) {
  .carousel-container__head.-sp {
    display: block;
  }
}
.carousel-container__foot {
  margin-top: 30px;
}
@media screen and (max-width: 680px) {
  .carousel-container__foot.-pc {
    display: none;
  }
}
.carousel-container__foot.-sp {
  display: none;
}
@media screen and (max-width: 680px) {
  .carousel-container__foot.-sp {
    display: block;
  }
}
.carousel-container__column {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: -10px;
}
@media screen and (max-width: 680px) {
  .carousel-container__column.-pc {
    display: none;
  }
}
.carousel-container__column.-sp {
  display: none;
}
@media screen and (max-width: 680px) {
  .carousel-container__column.-sp {
    display: flex;
  }
}
.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;
}
@media screen and (max-width: 680px) {
  .carousel-container__absolute.-pc {
    display: none;
  }
}
.carousel-container__absolute.-sp {
  display: none;
}
@media screen and (max-width: 680px) {
  .carousel-container__absolute.-sp {
    display: flex;
  }
}
.carousel-container__absolute-item {
  display: block;
}
.carousel-container__absolute-item.-left {
  transform: translateX(-50%);
}
.carousel-container__absolute-item.-right {
  transform: translateX(50%);
}

.square {
  overflow: hidden;
  position: relative;
}

.square:before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}

.square__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.square__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 0;
  transform: translate(-50%, -50%);
}

.swiper-slide {
  position: relative;
}
.swiper-slide::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
}
.swiper-slide.swiper-slide-active::after {
  content: none;
}/*# sourceMappingURL=carousel.css.map */