html, body {
  margin: 0;
  padding: 0;
}
canvas {
  touch-action: none;       /* タッチ操作をブラウザに渡さない */
  -webkit-user-select: none; /* Safariでテキスト選択無効 */
  user-select: none;        /* 他ブラウザ用 */
}
