/*スクロールバー全体*/
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  // border-radius: 8px;
  // background: #C0C0C0;
  // box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  display: none;
}

/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: #808C88;
  
  border-radius: 8px;
  //border :#949799;
  //box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
  background-color: rgba(0,0,0,0);
}
*:hover::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.3);  
}

::-webkit-scrollbar-corner {
  border: #808C88;
}


