 /* マウスストーカー */

	html,body,a {
		cursor: none;
	}
	#js-mouse{
		pointer-events: none;
		position: fixed;
		top: -30px; 
		left: -30px;
		width: 30px;
		height: 30px;
		background-color:rgba(219,220,220,0.4);	/* light gray */
		border-radius: 50%;
		transform: translate(0,0);
		transition: all 0.3s ease-out;
		z-index: 9999;
		opacity: 0;
	}
	#js-cursor{
		 pointer-events: none;
		 position: fixed;
		 top: -15px; 
		 left: -15px;
		 width: 15px;
		 height: 15px;
		 background-color:rgba(217,20,43,1.0);		/* cacielo-red01 ◆ */
		 border-radius: 50%;
		 transform: translate(0,0);
		 z-index: 10000;
		 opacity: 0;
	}
