/**
 * pointer-square.css
 * マウスポインタ連動の正方形バウンディングボックス用
 */

#pointer-square-canvas {
  position: fixed;
  inset: 0;
  z-index: 9999;

  width: 100vw;
  height: 100vh;

  display: block;
  pointer-events: none;

  background: transparent;
  overflow: hidden;

  /*
   * 背景上で黒線を少し自然に見せる。
   * 既存サイトのデザインに合わなければ削除。
   */
  mix-blend-mode: multiply;
}

/*
 * 動きを減らす設定が有効な環境では停止。
 */
@media (prefers-reduced-motion: reduce) {
  #pointer-square-canvas {
    display: none;
  }
}