 .autoturn-text-box {
    position: relative;
    left: +20px;
    width: 250px;
    height: 25px;
    overflow: hidden;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
   font-size: 1.3rem;
    font-family: 'メイリオ', 'ヒラギノ角ゴ', sans-serif;
	
  }

  .autoturn-text-box span {
    position: absolute;
    opacity: 0;
    animation: fade 6s forwards;
  }

  /* 各テキストの表示タイミング */
  .autoturn-text-box span:nth-child(1) { animation-delay: 0s; }
  .autoturn-text-box span:nth-child(2) { animation-delay: 2s; }

  @keyframes fade {
    0%, 20%   { opacity: 1; }
    33.33%, 100% { opacity: 0; }
  }

  /* 最後にもう一度1つ目を表示して止める */
  .autoturn-text-box span:first-child {
    animation: fade 6s forwards, showFirst 8s forwards;
  }

  @keyframes showFirst {
    0%, 95% { opacity: 0; }
    100% { opacity: 1; }
  }