@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ローディング
---------------------------------------------------------------------------------------------------------------------
*/
#loader {
  position: fixed;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #76FF00;
  z-index: 9999; }
  #loader ul#loader-logo {
    text-align: center; }
    #loader ul#loader-logo li {
      animation-name: blurAnime;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      opacity: 0;
      text-align: center;
      margin: auto; }
      #loader ul#loader-logo li:nth-child(1) {
        width: 160px;
        height: auto; }
        @media (min-width: 768px) {
          #loader ul#loader-logo li:nth-child(1) {
            width: 200px; } }
      #loader ul#loader-logo li:nth-child(2) {
        width: 150px;
        height: auto;
        margin-top: 2px; }
        @media (min-width: 768px) {
          #loader ul#loader-logo li:nth-child(2) {
            width: 200px;
            margin-top: 8px; } }
      #loader ul#loader-logo li:nth-of-type(2) {
        animation-delay: .30s; }
      #loader ul#loader-logo li:nth-of-type(3) {
        animation-delay: .50s; }
      #loader ul#loader-logo li:nth-of-type(4) {
        animation-delay: .50s; }

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0; }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1; } }
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(10px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    opacity: 0;
    transform: scale(1.4); }
  100% {
    opacity: 1;
    transform: scale(1); } }
