.swiper {
  width: 100%;
  height: 350px !important;
  max-width: 100% !important;
}
.swiper-slide {
  transform: scale(.7);
  transition: .7s;
}
.swiper-slide img {
  height: auto;
  width: 100%;
  transform: scale(.7);
  transition: .7s;
}
.swiper-slide-active {
  transform: scale(1);
  z-index: 1;
}
.swiper-slide-active img {
  transform: scale(1);
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 30px;
  width: 30px;
  top: 330px;
}

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

.swiper-button-next {
  right: 30%;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 30px;
  margin: auto;
  width: 30px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(https://touristship.jp/wp/wp-content/uploads/2024/12/arrow.webp);
  transform: rotate(180deg);
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(https://touristship.jp/wp/wp-content/uploads/2024/12/arrow.webp);
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0.4rem;
  background: #15498f;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  opacity: 1;
  transition: 0.3s;
}

/*アクティブなときのスタイル*/
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.4);
  background: #15498f;
}


@media screen and (max-width: 480px) {
.swiper-slide img {
  transform: scale(.6);
  margin-top: 40px;
}
.swiper-slide-active img {
	transform: scale(1.3);
    margin-top: 40px;
}
}