/* ===== INTRO PAGE WRAPPER ===== */
.intro {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  overflow: hidden;
}

/* ===== VIDEO ===== */
.intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer; /* クリックで再生のため */
}

/* ===== TEXT BLINK ANIMATION ===== */
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .3;
  }
}
