.voice-section .flex-container {
  gap: clamp(2rem, 1.3333333333rem + 2.2222222222vw, 4rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .voice-section .flex-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}

.voice-section__items {
  max-width: 1168px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 1.1666666667rem + 1.1111111111vw, 2.5rem);
}
@media screen and (max-width: 1024px) {
  .voice-section__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .voice-section__items {
    grid-template-columns: 1fr;
  }
}

.voice-section__item {
  background-color: #F9E3E8;
  position: relative;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.voice-section__item::after {
  content: "";
  display: block;
  background-color: #FFFFFF;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(2.5rem, 2rem + 1.6666666667vw, 4rem);
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -1px;
  right: -1px;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.voice-section__item__image {
  aspect-ratio: 363/200;
  width: 100%;
}
.voice-section__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.voice-section__item__contents {
  padding: clamp(1rem, 0.6666666667rem + 1.1111111111vw, 2rem) 1rem clamp(1.5rem, 1.3333333333rem + 0.5555555556vw, 2rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}
.voice-section__item__header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #E1395F;
  margin-bottom: 1rem;
  color: #E1395F;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.voice-section__item__header__info {
  display: flex;
  gap: 1rem;
}
.voice-section__item__header__info__name {
  font-size: clamp(1.25rem, 1.1666666667rem + 0.2777777778vw, 1.5rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.06em;
  margin-bottom: 0.5rem;
}
.voice-section__item__header__info__age, .voice-section__item__header__info__period {
  font-weight: 500;
  font-size: clamp(1rem, 0.9166666667rem + 0.2777777778vw, 1.25rem);
}
.voice-section__item__body {
  flex: 1;
  font-size: clamp(1rem, 0.9166666667rem + 0.2777777778vw, 1.25rem);
  letter-spacing: -0.12em;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}