/* 全体の基本スタイル */
body, html{
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
}
/* ローディングスクリーンのスタイル */
#loading-screen{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
.message{
  color: white;
  font-size : 24px;
  text-align: center;
  opacity: 0;
  filter: blur(10px);
  /* ぼやけた状態 */
    transition: opacity 2s ease-in-out, filter 2s ease-in-out;
/* フェードインとぼやけ解除を2秒間 */
}
/* SKIPボタンのスタイル */
#skip-button{
  position: absolute;
  bottom: 50px;
  /* 下から50px */
    color : white;
  border : 1px solid white;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  background-color : black;
}
#skip-button:hover{
  background-color : #5d5d5d;
}
/* 通常コンテンツのスタイル */
#main-content{
  /* display: none;
  最初は非表示に */
    opacity: 0;
  /* 初期状態では透明 */
    display: block;
  /* ローディング画面が消えたらフェードイン */
    transition: opacity 2s ease-in-out;
/* フェードイン効果を2秒間に */
}
