@charset "UTF-8";
.swiper-container {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}


.testimonial-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  max-width: 500px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* タイトル */
.testimonial-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #222;
}

/* 前後ボタン（省スペースに） */
.swiper-button-next,
.swiper-button-prev {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  color: #444;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ドットも小さめに調整 */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  margin: 0 4px;
}

.swiper-pagination-bullet-active {
  background: #333;
}