h2{
  border-left: none;
}

.hero {
  background: url('./images/people2.jpeg') center/cover no-repeat;
}

/* 支援事例セクション */
.case-studies {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}
.case-studies h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}
.case-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.case-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.case-card:hover {
  transform: translateY(-5px);
}
.case-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}
.case-card p {
  color: #555;
  font-size: 0.95rem;
}
.impact {
  margin-top: 15px;
  font-weight: bold;
  font-size: 0.95rem;
  color: #ff7b00;
}
.impact strong {
  font-size: 1.4rem;
  margin-left: 5px;
}

/* ご利用者の声 */
.voices {
  background: #fff;
  padding: 70px 20px;
  text-align: center;
}
.voices h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.voices blockquote {
  font-style: italic;
  margin: 20px auto;
  max-width: 700px;
  color: #444;
  border-left: 4px solid #ff7b00;
  padding-left: 15px;
}
.voices cite {
  display: block;
  margin-top: 8px;
  color: #888;
  font-size: 0.9rem;
}
.external-link a {
  display: inline-block;
  margin-top: 20px;
  color: #ff7b00;
  font-weight: bold;
  text-decoration: none;
}