/*ブラウザゲーム用モーダルウィンドウ設定*/
.modal {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
  z-index: 1;
  background-color: rgb(255, 255, 255);
}

.modal-header {
  height: auto;
  width: 100%;
  display: flex;
  background: rgb(0, 255, 0);
}

.modal-margin {
  flex: 1;
  text-align: left;
  font-size: 1.3rem;
}

.modal-title {
  flex: 8;
  text-align: center;
  font-size: 1.3rem;
}

.modal-close {
  flex: 1;
  text-align: right;
  font-size: 1.3rem;
}

.modal-close:hover {
  cursor: pointer;
}

.modal-canvas {
  height: 85vmin;
  width: 85vmin;
  margin: 0 auto;
  display: block;
  background-color: rgb(0, 255, 255);
}