/* お客様の声セクション */
.testimonials {
  padding: 80px 0;
}

.testimonials .heading-lg {
  margin-bottom: 60px;
}

.testimonials-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-color, #667eea);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial__text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

.testimonial__author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-color, #667eea);
  position: relative;
}

.testimonial__author::before {
  content: '— ';
  color: var(--text-light);
}

/* 複数のお客様の声がある場合 */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonials-grid .testimonial {
  margin-bottom: 0;
}

/* アニメーション */
.testimonial {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.testimonial.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ホバーエフェクト */
.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--box-shadow-lg);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials .heading-lg {
    margin-bottom: 40px;
  }
  
  .testimonial {
    padding: 30px 20px;
  }
  
  .testimonial::before {
    font-size: 3rem;
    top: -5px;
    left: 15px;
  }
  
  .testimonial__text {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .testimonial {
    padding: 25px 15px;
  }
  
  .testimonial__text {
    font-size: 1rem;
  }
  
  .testimonial::before {
    font-size: 2.5rem;
    left: 10px;
  }
}