/* スクロールバー */
::-webkit-scrollbar{    /* スクロールの幅の設定 */
  width: calc(8px * var(--window_ratio));    /* 縦スクロールバーの幅 */
  height: calc(3px * var(--window_ratio));    /* 横スクロールバーの高さ */
  position: absolute;
}
::-webkit-scrollbar-track-piece{    /* スクロールの背景の設定 */
  box-shadow: inset 0 0 calc(6px * var(--window_ratio)) rgba(0, 0, 0, 0.1);
  position: absolute;
}
::-webkit-scrollbar-thumb{    /* スクロールのつまみ部分の設定 */
  height: calc(8px * var(--window_ratio));
  width: calc(8px * var(--window_ratio));
  border-radius: calc(5px * var(--window_ratio));;
  background: #191970;
}
html{
  overflow: overlay;    /* スクロールバーの位置の指定になる */
}