* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  background: black;
}

#start-screen {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 画像を「全体表示」させる */
#start-bg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* STARTボタンの当たり判定 */
#start-btn {
  position: absolute;
  width: 185px;
  height: 140px;



  /* ★ここが重要：画像基準の位置 */
  top: 42%;
  left: 50%;
  transform: translate(-50%, -20%);
}