  /*========= LoadingのためのCSS ===============*/

  /* Loading背景画面設定　*/

  body{
    background-color: #111;
  }
  #splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    text-align: center;
  }
  .opening {
    position: relative;
    width: 100%;
    height: 100%;
    animation: opening 6.1s forwards;
  }

  .number_wrap{
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    font-size: 95%;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .number_wrap li{
    margin:0 2px;
  }

  #bar {
    position: absolute;
    top: 48.4%;
  }

  .loading-bar {
    background: #ccc;
    height: 3px;
    position: relative;
    margin-bottom: 20px;
  }
  
  .opening::before {
    content: '';
    position: fixed;
    top: 48.4%;
    left: 0;
    width: 100%;
    height: 100vh;
    animation: openingline 6s forwards;
  }

  @keyframes opening {
    89% {
      opacity: 1;
      z-index: 1;
    }
    90% {
      opacity: 0;
      z-index: -1;
    }
    100% {
      opacity: 0;
      z-index: -1;
    }
  }

  .opening::after {
    content: '';
    position: fixed;
    top: 48.4%;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #FFF;
    animation: openingline 6s forwards;
  }

  @keyframes openingline {
    99% {
      opacity: 1;
      z-index: 1;
    }
    100% {
      width: 100%;
      opacity: 0;
      z-index: -1;
    }
  }

  .airplane {
    position: absolute;
    top: 46.9%;
    left: -30px;
    width: 30px;
    height: 30px;
    animation: moveToRight 6s forwards;
    z-index: 15;
  }

  @media screen and (max-width: 899px) {
    .airplane {
      position: absolute;
      top: 46.5%;
      left: -30px;
      width: 25px;
      height: 25px;
    }
  }

  @keyframes moveToRight {
    0% {
      left: 0%;
    }
    100% {
      left: 100%;
    }
  }

  .opening_txt {
    color: #fff;
    font-size:200%;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    letter-spacing: 0.3rem;
    top: 35%;
    left: 0;
    right: 0;
  }

  @media screen and (max-width: 899px) {
    .opening_txt {
      letter-spacing: 0.1rem;
      top: 35%;
      font-size:160%;
    }
  }

  .opening_txt2 {
    color: #fff;
    font-size:200%;
    font-weight: 600;
    font-family: "Noto Sans JP", sans-serif;
    position: absolute;
    letter-spacing: 0.3rem;
    top: 35%;
    left: 0;
    right: 0;
  }

  @media screen and (max-width: 899px) {
    .opening_txt2 {
      letter-spacing: 0.1rem;
      top: 35%;
      font-size:160%;
    }
  }

  .opening_txt {
    animation:
    flash 0.5s linear 0s 6 alternate,
    fadeout 0.5s linear 4s forwards;
  }

  @media screen and (max-width: 899px) {
    .opening_txt {
      animation:
      flash 0.5s linear 0s 6 alternate,
      fadeout 0.5s linear 3s forwards;
    }
  }

  .opening_txt2 {
    opacity: 0;
    animation: 1s fadein 4.5s linear;
  }

  @media screen and (max-width: 899px) {
    .opening_txt2 {
      opacity: 0;
      animation: 1s fadein 3.5s linear;
    }
  }

  @keyframes flash {
    0%,100% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
  }

  @keyframes fadein {
    0%,50% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  @keyframes fadeout {
    0%,50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }



