@charset "UTF-8";
/*
---------------------------------------------------------------------------------------------------------------------
ローディング
---------------------------------------------------------------------------------------------------------------------
*/
.loading-bg {
  width: 100%;
  height: 100vh;
  background-color: #58A52C;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999; }

.loading-animation-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-size: 1.4em;
  font-weight: bold;
  line-height: 1.2;
  z-index: 6;
  color: white;
  border-right: 2px solid white;
  animation: typewriter 2s steps(40) 1s 1 normal both, blinkTextCursor 100ms steps(40) infinite normal; }

@keyframes typewriter {
  from {
    width: 0; }
  to {
    width: 11em; } }
@keyframes blinkTextCursor {
  from {
    border-right-color: white; }
  to {
    border-right-color: transparent; } }
.loading-anime {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%; }
  .loading-anime #loadlogo {
    width: 150px;
    position: relative;
    animation: fadeUpload 0.5s ease forwards; }
    @media (min-width: 768px) {
      .loading-anime #loadlogo {
        width: 300px; } }
    .loading-anime #loadlogo img {
      position: absolute;
      top: 12%;
      left: 0;
      right: 0;
      width: 80%;
      text-align: center;
      margin: auto;
      z-index: 10; }

@keyframes fadeUpload {
  0% {
    opacity: 0;
    transform: translateY(20px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
