@charset "utf-8";
@import url(reset.css);
@import url(basis.css);
@import url(structure.css);
@import url(parts.css);

/* サッカーボールカーソル */
#cursorDot {
  position: fixed;
  width: 5px;
  height: 5px;
  background: #fff;
  border: 1.5px solid #1a1410;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1000001;
  top: -100px;
  left: -100px;
  opacity: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
#cursorBall {
  position: fixed;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 1000000;
  top: -100px;
  left: -100px;
  opacity: 0;
  will-change: transform;
}
#cursorBall img {
  width: 100%;
  height: 100%;
  display: block;
}
