@charset "UTF-8";
/* ===========================================
*  
*  省略ルール
*  以下記載のものを省略して使用しています
* 
* ======================================== */

/* =========================================
  エフェクト
========================================= */
#js-mouse {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  translate: -50% -50%;
  width: 80px;
  height: 80px;
      width: 40px;
      height: 40px;
  background-color: #fff; /*追尾する丸の色*/
  border-radius: 50%;
  transform: translate(0, 0);
  transition: transform 0s ease-out;
  /*丸の追尾スピード（今回は送れて追尾させないため0s）*/
  z-index: 9999;
  opacity: 0;
  mix-blend-mode: difference;
}

#js-mouse::before, #js-mouse::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 1px solid #c2c2c2;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 2s linear infinite;
          animation: pulsate 3s linear infinite;
}

#js-mouse::after {
  animation-delay: 1s;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
/* =========================================
  デザイン
========================================= */
/*カーソル削除*/
#cursor {
  width: 100%;
  height: 100vh;
  cursor: none !important;
}

a {
  cursor: none !important;
}

/*	ホバーアクション
------------------------------------ */
/* 中央の文字を非表示 */
#js-mouse {
  text-align: center;
  color: transparent;
  font-size: 0px;
  transition: width 0.4s, height 0.4s, color 0.4s;
}
#js-mouse > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #000;
  transition: opacity 0.4s;
}

/*hover時*/
#js-mouse.is-active {
  width: 130px;
  height: 130px;
          width: 90px;
          height: 90px;
  color: #000;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* animation: rotate 10s linear infinite; */
}
#js-mouse.is-active > span {
  opacity: 0;
}
#js-mouse.is-active::after, #js-mouse.is-active::before {
  animation: none;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}












@media screen and (max-width: 767px) {
  #js-mouse {

    width: 50px;
    height: 50px;
   
  }
  #js-mouse > span {
    
    width: 10px;
    height: 10px;
  }
  
  #js-mouse.is-active {
    width: 100px;
    height: 100px;
    font-size: 12px;
    
  }
}