html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;          /* スクロール禁止 */
  overscroll-behavior: none;
  background: #000;
}

/* 全画面リンク */
.full-link {
  display: block;
  width: 100vw;
  height: 100vh;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.stage {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

/* 背景画像 */
.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none; /* 画像はクリック対象にしない */
}