/* ご利用案内セクション */

.customer-voices-section {
  background: linear-gradient(180deg, #f9fbf9 0%, #f5f9f5 100%);
  padding: 80px 0;
  position: relative;
  border-top: 1px solid rgba(76, 175, 80, 0.1);
  border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.voices-header {
  text-align: center;
  margin-bottom: 50px;
}

.voices-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2d5530;
  margin-bottom: 15px;
}

/* ご利用案内グリッド */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-item {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.15);
  transition: all 0.3s ease;
  position: relative;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #2d5530);
  border-radius: 12px 12px 0 0;
}

.info-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2d5530;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item h3::before {
  content: "🐾";
  font-size: 1.2rem;
}

.info-item p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

/* アイコン個別設定 */
.info-item:nth-child(1) h3::before {
  content: "👶";
}

.info-item:nth-child(2) h3::before {
  content: "💑";
}

.info-item:nth-child(3) h3::before {
  content: "✨";
}

/* モバイル対応 */
@media screen and (max-width: 768px) {
  .customer-voices-section {
    padding: 60px 0;
  }

  .voices-header h2 {
    font-size: 2rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
  }

  .info-item {
    padding: 25px;
  }

  .info-item h3 {
    font-size: 1.2rem;
  }

  .info-item p {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .voices-header h2 {
    font-size: 1.8rem;
  }

  .info-item {
    padding: 20px;
  }

  .info-item h3 {
    font-size: 1.1rem;
  }
}
