@charset "UTF-8";

img {
 /* pointer-events: none;*/ /* これを使用すると不具合が出るので、代わりにHTMLを使用*/
  -webkit-touch-callout:none;
  -webkit-user-select:none;
  -moz-touch-callout:none;
  -moz-user-select:none;
  user-select:none;
}

* {
  user-select: none;
}

@media print {
  * {
    display: none;
  }
  body {
    background: #fff;
  }
}