@charset "Shift_JIS";

.text {
  overflow-y: hidden;
}
.text span {
  display: inline-block;
  transform: translateY(100%);
}
.text.is-show span {
  animation: pop 0.6s ease-out forwards;
}
.text.is-show span:nth-child(1) {
  animation-delay: 0.1s;
}
.text.is-show span:nth-child(2) {
  animation-delay: 0.2s;
}
.text.is-show span:nth-child(3) {
  animation-delay: 0.3s;
}
.text.is-show span:nth-child(4) {
  animation-delay: 0.4s;
}
.text.is-show span:nth-child(5) {
  animation-delay: 0.5s;
}
.text.is-show span:nth-child(6) {
  animation-delay: 0.6s;
}
.text.is-show span:nth-child(7) {
  animation-delay: 0.7s;
}
.text.is-show span:nth-child(8) {
  animation-delay: 0.8s;
}
.text.is-show span:nth-child(9) {
  animation-delay: 0.9s;
}
.text.is-show span:nth-child(10) {
  animation-delay: 1s;
}
.text.is-show span:nth-child(11) {
  animation-delay: 1.1s;
}
.text.is-show span:nth-child(12) {
  animation-delay: 1.2s;
}
.text.is-show span:nth-child(13) {
  animation-delay: 1.3s;
}
.text.is-show span:nth-child(14) {
  animation-delay: 1.4s;
}
.text.is-show span:nth-child(15) {
  animation-delay: 1.5s;
}
.text.is-show span:nth-child(16) {
  animation-delay: 1.6s;
}
.text.is-show span:nth-child(17) {
  animation-delay: 1.7s;
}
.text.is-show span:nth-child(18) {
  animation-delay: 1.8s;
}
.text.is-show span:nth-child(19) {
  animation-delay: 1.9s;
}
.text.is-show span:nth-child(20) {
  animation-delay: 2s;
}
@keyframes pop {
  0% {
    transform: translateY(100%);
  }
  90% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(0);
  }
}