#loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url(/assets/img/BackgroundImage.jpg); */
  background: #fff; /* 背景色を設定 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

#loading-screen img {
  width: 40%;
  margin-bottom: 10px;
}

#loading-screen p {
  /* font-family: sans-serif; */
  font-size: 18px;
  color: #333;
}