/*
Theme Name: Expenseオリジナルテーマ
Description: 自作テーマ
Author: ChillStack
Version: 1.0
*/
html {
  font-display: fallback;
  scroll-behavior: smooth;
  font-size: 62.5%;
  font-family: noto-sans-cjk-jp, sans-serif;
  color: rgba(0, 0, 0, 0.92);
  width: 100vw;
  overflow-x: hidden;
}
.html {
  visibility: hidden;
}
/*
Loading
*/
#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #00BA87;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
}
.loaded {
    opacity: 0;
    visibility: hidden;
}
#loader,
#loader:before,
#loader:after {
  border-radius: 50%;
  width: 2.3em;
  height: 2.3em;
  animation-fill-mode: both;
  animation: load7 .9s infinite cubic-bezier(.51, .01, .49, 1);
}
#loader {
  color: #fff;
  position: fixed;
  top: 45vh;
  left: 49vw;
  animation-delay: -0.16s;
}
#loader:before,
#loader:after {
  content: '';
  position: absolute;
  top: 0;
  left: 4.5em;
}
#loader:before {
  left: -4.5em;
  animation-delay: -0.32s;
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
