/* TextType — タイピング（文字入力）アニメーション */
.text-type {
  display: inline-block;
  white-space: pre-wrap;
}

.text-type__content {
  /* 改行・連続スペースを保持（複数行の文にも対応） */
  white-space: pre-wrap;
}

.text-type__cursor {
  margin-left: 0.25rem;
  display: inline-block;
  opacity: 1;
  animation: text-type-blink var(--cursor-blink-duration, 1s) steps(1, end) infinite;
}

.text-type__cursor--hidden {
  display: none;
}

@keyframes text-type-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

/* モーション低減設定では点滅させない */
@media (prefers-reduced-motion: reduce) {
  .text-type__cursor {
    animation: none;
  }
}
