.text-span {
  overflow: hidden;
  opacity: 0;
}

.text-span span {
    min-width: 0.5rem;
}

.text-span.show.animated {
  opacity: 1;  
}

.text-span span {
  display: inline-block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
}

.text-span.show.animated span {
  transform: translate(0, 0);
}

.text-span.show.animated span:nth-child(2) {
  transition-delay: 0.06s;
}
.text-span.show.animated span:nth-child(3) {
  transition-delay: 0.12s;
}
.text-span.show.animated span:nth-child(4) {
  transition-delay: 0.18s;
}
.text-span.show.animated span:nth-child(5) {
  transition-delay: 0.24s;
}
.text-span.show.animated span:nth-child(6) {
  transition-delay: 0.30s;
}
.text-span.show.animated span:nth-child(7) {
  transition-delay: 0.36s;
}
.text-span.show.animated span:nth-child(8) {
  transition-delay: 0.42s;
}
.text-span.show.animated span:nth-child(9) {
  transition-delay: 0.48s;
}
.text-span.show.animated span:nth-child(10) {
  transition-delay: 0.54s;
}
.text-span.show.animated span:nth-child(11) {
  transition-delay: 0.60s;
}
.text-span.show.animated span:nth-child(12) {
  transition-delay: 0.66s;  
}
.text-span.show.animated span:nth-child(13) {
  transition-delay: 0.72s;  
}
.text-span.show.animated span:nth-child(14) {
  transition-delay: 0.78s;  
}
.text-span.show.animated span:nth-child(15) {
  transition-delay: 0.84s;  
}
.text-span.show.animated span:nth-child(16) {
  transition-delay: 0.90s;  
}

.isPlay {
  overflow: hidden;
  position: relative;
}

.isPlay.show.animated::before {
  animation: img-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #000;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (min-width:768px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.text-span span {
    min-width: 1rem;
}
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* min-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */