/* Desktop(マウス/トラックパッド)では OS 矢印を完全非表示 */
@media (pointer: fine) and (hover: hover) {
  :root, html, body, *, *:hover, *::before, *::after,
  a, button, canvas, video, iframe, input, textarea, select,
  [role="button"], [tabindex], [class*="cursor"], [id*="cursor"] {
    cursor: none !important;
  }
}

/* Touch 端末ではマウス系UIを全隠し（スマホはカーソル不要） */
@media (pointer: coarse), (hover: none) {
  .cursor, .custom-cursor, .cursor-3d, .cursor3d,
  #cursor, #custom-cursor,
  canvas.cursor, canvas.custom-cursor,
  [data-cursor], [data-role="cursor"] {
    display: none !important;
  }
}
/* MOBILE cursor sanity */
@media (hover: none), (pointer: coarse) {
  html, body, * { cursor: auto !important; }
}
