/* タイトル画面 */
* {
    margin: 0;
    padding: 0;
}

body {
    overflow: hidden;
    width: 1920px;
    height: 1080px;
    margin: 0;
    padding: 0;
}

/* 画面サイズ */
.display_size {
    position: relative;
    width: 1920px;
    height: 1080px;
}

/* タイトル画面 */
#startscrean.display_size {
    display: block;
    background-image: url("game_material/game_material/ background/title_2.png");
}

/* タイトルテキスト */
#startscrean_text {
    position: absolute;
    width: 1000px;
    height: 100px;
    top: 300px;
    left: 510px;
    font-size: 100px;
    user-select: none;
}

  /* スタートボタン */
  #startscrean_botton_japan {
    position: absolute;
    width: 790px;
    height: 100px;
    top: 720px;
    left: 580px;
    font-size: 80px;
    background-color: #99a6c990;
    border: black 1px solid;
  
    animation-name: border_color;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    cursor: pointer;
  }

/* スタートボタン */
#startscrean_botton {
    position: absolute;
    width: 790px;
    height: 100px;
    top: 900px;
    left: 580px;
    font-size: 80px;
    background-color: #99a6c990;
    border: black 1px solid;
    text-align: center;

    animation-name: border_color;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    cursor: pointer;
}

@keyframes border_color {
  0% {
    border-color: black;
  }
  50% {
    border-color: white;
  }

}

/*BGＭ*/
#start_bgm {
    display: none;
}

/* 画像-帽子 */
#img_hat{
    position: absolute;
    width: 379px;
    height: 322px;
    top: 76px;
    right: 187px;

    animation-name: fuwafuwa;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes fuwafuwa {
    0% {
      transform:translate(0, 0) rotate(-5deg);
    }
    50% {
      transform:translate(0, 0) rotate(5deg);
    }

  }

#img_cane{
    position: absolute;
    width: 313px;
    height: 359px;
    top: 323px;
    left: 252px;

    animation-name: fuwafuwa_2;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes fuwafuwa_2 {
    0% {
      transform:translate(0, 0) rotate(-15deg);
    }
    100% {
      transform:translate(0, 0) rotate(15deg);
    }
  }

