.swiper-container {
  position: relative;
  padding: 5% 1%;
}

.swiper-wrapper {
  max-height: 270px;
  min-height: 103px;
  align-items: center;
}

.swiper-slide {
  text-align: center;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}

.swiper-slide a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #B3B3B3;
  min-height: 103px;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
}

.swiper-button-next {
  right: -2%;
}

.swiper-button-prev {
  left: -.2%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.swiper-button-next:after {
  background: url(./images/icon_arrow02_right.png) no-repeat;
}

.swiper-button-prev:after {
  background: url(./images/icon_arrow02_left.png) no-repeat;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  border: 1px solid #0A7FEB;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #0A7FEB;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -15px;
}

@media (min-width: 1024px) {
  .swiper-button-next {
    right: -15px;
  }
  .swiper-button-prev {
    left: -15px;
  }
  .swiper-slide {
    overflow: hidden;
    margin: 0 1% 0 0%;
  }
  .swiper-slide a {
    width: fit-content;
  }
}