@charset "UTF-8";
/*
変数関係をまとめたファイル
 */
/*! ___pjtName___ v___pkgVersion___ ___pkgLicense___ by ___pkgAuthorName___ */
/*! Type: ___fontName___ - Based on ___fontBase___ */
@font-face {
  font-family: "___fontName___";
  font-style: normal;
  font-weight: ___weights___;
  font-display: swap;
  src: url("../fonts/___fontFile___/___fontFile___-.eot");
  src: url("../fonts/___fontFile___/___fontFile___-.woff2") format("woff2"), url("../fonts/___fontFile___/___fontFile___-.woff") format("woff");
  unicode-range: ___unicode___;
}
.loading-screen {
  position: relative;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100vh;
  z-index: 9;
}
.loading-screen #background {
  position: fixed;
  z-index: -1;
  /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
.loading-screen #background #video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
}
.loading-screen .owner {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 133px;
}
@media screen and (max-width: 840px) {
  .loading-screen .owner {
    top: 22px;
    left: 22px;
    width: 103px;
  }
}
.loading-screen .box-fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-52%, -50%);
          transform: translate(-52%, -50%);
}
@media screen and (max-width: 840px) {
  .loading-screen .box-fv {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.loading-screen .box-fv .logo {
  max-width: 437px;
  width: 100%;
  margin-left: 94px;
}
@media screen and (max-width: 840px) {
  .loading-screen .box-fv .logo {
    max-width: 147px;
    margin-left: 0;
    margin-bottom: 32px;
  }
}
.loading-screen .box-fv .box-information .date {
  max-width: 553px;
  width: 100%;
  margin-bottom: 43px;
}
@media screen and (max-width: 840px) {
  .loading-screen .box-fv .box-information .date {
    max-width: 263px;
  }
}
.loading-screen .box-fv .box-information #showTopPageButton {
  position: relative;
  display: block;
  border: 1px solid #ffffff;
  background-color: transparent;
  cursor: pointer;
  padding: 24px 80px 24px 60px;
}
@media screen and (max-width: 840px) {
  .loading-screen .box-fv .box-information #showTopPageButton {
    padding: 24px 60px 24px 60px;
  }
}
.loading-screen .box-fv .box-information #showTopPageButton .text {
  position: relative;
  max-width: 143px;
  margin: 0 auto;
  z-index: 40;
}
.loading-screen .box-fv .box-information #showTopPageButton .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  max-width: 35px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: movedown 3s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
          animation: movedown 3s cubic-bezier(0.19, 1, 0.22, 1) 0s infinite;
}
@media screen and (max-width: 840px) {
  .loading-screen .box-fv .box-information #showTopPageButton .icon {
    top: 50%;
    right: 10px;
    max-width: 37px;
  }
}

@-webkit-keyframes movedown {
  0% {
    margin-left: -20px;
    opacity: 0;
  }
  20% {
    margin-left: 10px;
    opacity: 1;
  }
  70% {
    margin-right: 0;
    opacity: 1;
  }
  to {
    margin-right: -10px;
    opacity: 0;
  }
}

@keyframes movedown {
  0% {
    margin-left: -20px;
    opacity: 0;
  }
  20% {
    margin-left: 10px;
    opacity: 1;
  }
  70% {
    margin-right: 0;
    opacity: 1;
  }
  to {
    margin-right: -10px;
    opacity: 0;
  }
}