@charset "UTF-8";

 .main {
 font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  max-width: unset;
  background: #fff;
  padding: 80px 0 1000px 0;
  box-sizing: border-box;
  text-align: center;
}

 p {
  color: #000;
}

 picture {
  display: block;
  margin: 0 auto;
}

 .link {
  color: #000;
  text-decoration: underline;
}

 .logo {
  width: 70%;
  padding: 40px 0;
  margin: 0 auto;
}

 .logo picture,
 .logo img {
  display: block;
  width: 100%;
  height: auto;
}

 .line {
  width: 50%;
}

 .loading {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

 .loading-dot {
  float: left;
  width: 12px;
  height: 12px;
  margin: 0 12px;
  margin-top: 20px;
  background: #ed6103;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  opacity: 0;

  -webkit-box-shadow: 0 0 2px #ed6103;
  -moz-box-shadow: 0 0 2px #ed6103;
  -ms-box-shadow: 0 0 2px #ed6103;
  -o-box-shadow: 0 0 2px #ed6103;
  box-shadow: 0 0 2px #ed6103;

  -webkit-animation: loadingFade 1s infinite;
  -moz-animation: loadingFade 1s infinite;
  animation: loadingFade 1s infinite;
}

 .loading-dot:nth-child(1) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

 .loading-dot:nth-child(2) {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

 .loading-dot:nth-child(3) {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

 .loading-dot:nth-child(4) {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes loadingFade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes loadingFade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
  }
}

@keyframes loadingFade {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
  }
}