@charset "utf-8";
/* CSS Document */
.voice_gallery_wrap {
  max-width: 1280px;
  margin: 0 auto;
  gap: clamp(30px, 4vw, 45px);
  align-items: flex-start;
}

.voice_gallery_wrap .voice_gallery_item {
  width: calc((100% - clamp(30px, 4vw, 45px) * 2) / 3);
}

.voice_gallery_wrap .imgbox {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 18px;
}

.voice_gallery_wrap .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voice_gallery_wrap .txtbox h3 {
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.voice_gallery_wrap .txtbox p {
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .voice_gallery_wrap {
    flex-direction: column;
  }

  .voice_gallery_wrap .voice_gallery_item {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

