.whiteBox {
  padding: 0;
  position: relative;
}

.sec02-swiper {
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.swiper-slide figure {
  margin: 0;
  /* border-right: #A0A0A0 1px solid; */
}
.swiper-slide img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  box-shadow: none;
  background: #fff;
}


/* 左右ボタン（小さめ正方形・中央配置） */
.sec02-swiper-button {
  color: #222;
  background: rgba(255,255,255,0.95);
  border: 1px solid #A0A0A0;
  width: 30px!important;
  height: 30px!important;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 0;
  z-index: 100!important;
  transition: background 0.2s, border 0.2s;
  cursor: pointer;
  position: absolute;
  border-radius: 1px;
}
.swiper-button-prev.sec02-swiper-button { left: -15px; }
.swiper-button-next.sec02-swiper-button { right: -15px; }
.sec02-swiper-button:after {
  content: '';
  display:none;
}
.sec02-swiper-button::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #A0A0A0;
  border-right: 1px solid #A0A0A0;
  margin: auto;
}
.swiper-button-prev.sec02-swiper-button::before {
  transform: rotate(-135deg);
}
.swiper-button-next.sec02-swiper-button::before {
  transform: rotate(45deg);
}

.sec02-swiper-button:active,
.sec02-swiper-button:focus {
  background: #f6f6f6;
  border-color: #aaa;
}

.swiper-pagination {
  margin-top: 10px;
  position: static !important;
  text-align: center;
}
.swiper-pagination-bullet {
  background: none!important;
  border: #727171 1px solid!important;
  opacity: 1!important;
  width: 9px;
  height: 9px;
  margin: 0 3px !important;
  border-radius: 50%;
  transition: background 0.3s;
}
.swiper-pagination-bullet-active {
  background: #727171!important;
}

@media (min-width: 1900px) {
  .swiper-button-prev.sec02-swiper-button { left: -5px; }
  .swiper-button-next.sec02-swiper-button { right: -5px; }
}
@media (max-width: 1024px){
  .whiteBox {
    width: fit-content;
    margin: 0 auto;
  }
  .sec02-swiper {
    max-width: 571px;
  }
}
@media (max-width: 767px){
  .whiteBox {
    width: auto;
  }
}
@media (max-width: 480px) {
  .sec02Inner { max-width: 98vw; }
}
