:root {
  --ink: #222;
  --muted: #7a7f89;
  --brand: #4f63d6;
  --chip: #eef1f6;
  --chip-ink: #596273;
  --card: #fff;
  --line: #e6e9f0;
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.service-section-title {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  background-image: url("../img/top_img_02.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333;
  overflow: hidden;
  margin-top: 0;
}

.service-section-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.service-section-title * {
  position: relative;
  z-index: 2;
}

.service-text {
  flex: 1;
  min-width: 320px;
}

.voices-sec {
  background: #fff;
  padding: clamp(32px, 6vw, 72px) 16px;
}

.voices-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.voices-head {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: clamp(20px, 4vw, 32px);
}

.voices-illust img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.voices-eyebrow {
  margin: 0;
  color: #9aa3c7;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.voices-title {
  margin: 0.2em 0 4px;
  font-size: clamp(20px, 3.8vw, 30px);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 800;
}

.voices-title span {
  color: #80bc00;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.voice-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 16px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 140px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.voice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.voice-text {
  margin: 0;
  color: #333b48;
  font-size: 14px;
  line-height: 1.7;
}

.voice-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--chip);
  color: var(--chip-ink);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid #dde3ef;
}

@media (max-width: 900px) {
  .voices-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .voices-head {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 600px) {
  .voices-head {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }

  .voices-illust {
    display: block;
    margin-bottom: 12px;
  }

  .voices-illust img {
    width: 80px;
  }
}

@media (max-width: 520px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
}
