/* 初期状態（左にズラして透明） */
.elementor-heading-title span:not(.blue) {
  display: inline-block;
  opacity: 0;
  transform: translateX(-40px);
}

/* 表示状態 */
.elementor-heading-title span.is-show {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}