html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.background-image {
  background-image: url('top.jpg'); /* 画像のパスを追加 */
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: fixed; /* 背景を固定 */
  width: 100%;
  height: 100%;
}

