.voice_fv {
    background: url(../img/engineering_single-voice/voice_title_banner_pc.webp) center / cover no-repeat;
    border-radius: var(--radius);
    min-height: 220px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    text-align: center;
    width: min(1100px, 92%);
    margin: 18px auto 0;
    justify-content: center;
}
.voice_fv h1{
    margin: 0;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.2;
    font-size: clamp(26px, 3vw, 40px);
    color: #1C2B59;
}
.voice_fv .en_small{
    display: block;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    font-size: 18px;
}
.voice-archive{
  background: #ffffff;
  padding: 60px 0 90px;
  position: relative;
}
.voice-archive::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/engineering_company/voice/voice_bg_stripe.webp") center / cover no-repeat;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}
.voice-archive__grid{
  position: relative;
  z-index: 1;
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 56px;
}
.voice-card a{
  display: block;
  text-decoration: none;
  color: inherit;
}
.voice-card__image img{
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}
.voice-card__body{
  margin-top: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(28,43,89,.55);
  position: relative;
}
.voice-card__name{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: #1C2B59;
}
.voice-card__meta{
  margin: 0;
  font-size: 12px;
  color: #1C2B59;
}
.voice-card__body::after{
  content: "…";
  position: absolute;
  right: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2FA4D7;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3カラム時だけ段差を付ける */
@media (min-width: 768px){
  /* 1列目（#01, #04, #07...）= 少し下げる */
  .voice-card:nth-child(3n+1){
    transform: translateY(120px);
  }
  /* 2列目（#02, #05, #08...）= そのまま */
  .voice-card:nth-child(3n+2){
    transform: translateY(60px);
  }
  /* 3列目（#03, #06, #09...）= 少し上げる（or そのままでもOK） */
  .voice-card:nth-child(3n){
    transform: translateY(0px);
  }
  /* transformで浮いた分、下に余白を確保（最後が切れないように） */
  .voice-archive__grid{
    padding-bottom: 70px;
  }
}

@media (max-width: 767px){
  .voice_fv{
    display: block;
    max-width: 90%;
    margin: 56px auto 0;
    border-radius: 0 0px 10px 10px;
    background: url(../img/engineering_single-voice/voice_title_banner_sp.webp) center / cover no-repeat;
    min-height: 80px;
    padding: 18px 18px;
  }
  .voice_fv h1{
    font-size: 28px;
  }
  .voice_fv .en_small{
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: normal;
  }
  .voice-archive{
    padding: 40px 0 60px;
  }
  .voice-archive__grid{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .voice-card__num{
    font-size: 36px;
  }
}