/* 画面全体を真っ白に */
#splash {
  margin: 0;
  background: #fff;
  height: 100vh;
  overflow: hidden;
}

.stage {
  position: relative;
  width: 100vw;
  height: 100vh;
}

/* 2枚のレイヤーを重ねる */
.stage img {
  position: absolute;
  inset: 0;
  margin: auto;
  max-width: 80vw;
  max-height: 80vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  /* フェード時間 0.4s */
  display: block;
}

/* 表示される方だけ 1 にする */
.stage img.show {
  opacity: 1;
}