.voice .wrapper {
  background: var(--color-green-bg);
  padding: 7rem 0 10rem;
  margin-top: -5rem;
}
.voice .wrapper .in {
  max-width: 112rem;
}
.voice .wrapper .in li {
  border-bottom: 1px solid rgb(0 73 93 / 0.2);
}
.voice .wrapper .in li a {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 3rem 0;
}
.voice .wrapper .in li a .flex-img {
  position: relative;
  overflow: hidden;
  width: 36rem;
  height: 23.4rem;
}
.voice .wrapper .in li a .flex-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
}
.voice .wrapper .in li a .flex-txt {
  width: calc(100% - 36rem - 4rem);
}
.voice .wrapper .in li a .flex-txt .tags {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
.voice .wrapper .in li a .flex-txt .tag {
  padding: 0.8rem 1.2rem;
  border-radius: 5rem;
  background: var(--color-white);
  border: 1px solid var(--color-pink);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--color-pink);
}
.voice .wrapper .in li a .flex-txt .ttl-h2 {
  font-size: 2.4rem;
  font-weight: var(--medium);
  letter-spacing: 0.06em;
  line-height: 1.4;
}
.voice .wrapper .in li a .flex-txt .name {
  margin-top: 1.6rem;
  font-size: 2rem;
  letter-spacing: 0.06em;
}
.voice .wrapper .in li a .flex-txt small {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .voice .wrapper {
    margin-top: -1rem;
    padding: 3rem 0 7rem;
  }
  .voice .wrapper .in li a {
    gap: 2rem;
    flex-wrap: wrap;
  }
  .voice .wrapper .in li a .flex-img {
    width: 100%;
    height: 22.1rem;
  }
  .voice .wrapper .in li a .flex-txt {
    width: 100%;
  }
  .voice .wrapper .in li a .flex-txt .tags {
    margin-bottom: 2.4rem;
  }
  .voice .wrapper .in li a .flex-txt .ttl-h2 {
    font-size: 2rem;
  }
  .voice .wrapper .in li a .flex-txt .name {
    font-size: 1.8rem;
  }
  .voice .wrapper .in li a .flex-txt small {
    font-size: 1.4rem;
  }
}