/* -----------------------
  voice
----------------------- */
.voice{
  position: relative;
}

.voice_en{
  position: absolute;
  top: 0;
  display: flex;
  width: min(calc(750 / 750 * 100vw), 750px);
  overflow: hidden;
}

.voice_en .scrolling img:nth-of-type(1) {
  margin-right: min(calc(20 / 750 * 100vw), 20px);
}
.voice_en .scrolling img {
  width: min(calc(750 / 750 * 100vw), 750px);
  height: auto;
  flex-shrink: 0;
}

.voice_en .scrolling {
  display: flex;
  animation: scroll-left 10s linear infinite;
}

/* アニメーション：右から左へ */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.voice ul li{
  position: relative;
}
.voice_txt{
  position: absolute;
  top: 0;
}