  /* Swiper全体 */
  .swiper {
    width: 100%;
    padding: 80px 0 100px;
    background-size: cover;
    border-radius: 20px;
    overflow: visible;
  }
  /* Swiper Wrapper */
  .swiper-wrapper {
    display: flex;
    align-items: center;
  }
  /* スライド */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
  }
  /* 画像 */
  .swiper-slide img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	animation: fadein1 2.5s ease 0s 1 normal;
    -webkit-animation: fadein1 2.5s ease 0s 1 normal;
  }
  /* 中央スライドを拡大 */
  .swiper-slide-active img {
    transform: scale(1.4);
  }
  /* ページネーション丸 */
  .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
  }
  .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
  @media (max-width: 767px) {
    .swiper {
      width: 100%;
      padding: 40px 0 80px;
      margin-bottom: 40px;
      background-size: cover;
      border-radius: 20px;
      overflow: visible;
    }
    .swiper-slide img {
      width: 160px;
      height: 160px;
    }
  }
  /* 矢印を */
  .swiper-button-prev::after, .swiper-button-next::after {
    content: none;
  }
  /* 左矢印 */
  .swiper-button-prev {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-right: 28px solid #fff;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
  }
  /* 右矢印 */
  .swiper-button-next {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 28px solid #fff;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
  }
@media all and (min-width: 768px) and (max-width: 1024px) {
    .swiper-button-prev {
      left: 20%;
    }
    .swiper-button-next {
      right: 20%;
    }
}
  @media (max-width: 767px) {
    .swiper-button-prev {
      left: 20px;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-right: 24px solid #fff;
    }
    .swiper-button-next {
      right: 20px;
      border-top: 20px solid transparent;
      border-bottom: 20px solid transparent;
      border-left: 24px solid #fff;
    }
  }
