#app-body{

  /* 配置 */
  position: fixed;
  top: 0px;
  left: 0px;

  /* サイズ */
  width: 100vw;
  height: 100vh;

  /* 選択できないように制御 */
  user-select: none; /* CSS3 */
  -moz-user-select: none; /* Firefox */
  -webkit-user-select: none; /* Safari、Chromeなど */
  -ms-user-select: none; /* IE10かららしい */

}
#app-font { /* canvasで利用するためにwebフォントをプリロード */
  font-family: 'M PLUS Rounded 1c';
  font-size: 11pt;
  position: absolute;
  top: 10px;
  width: 100%;
  text-align: center;
  z-index: -100;
}
#app-canvas {
  /*background-color: #c0c0c0;
  background-color: #a0d0ff;*/
  background-color: #000000;
  position: absolute;
  left: 0;
  top: 0;
  /*width: 100vw;
  height: 100vh;*/
  z-index: 0;
}
