@charset "UTF-8";
/* Scss Document */
.circle {
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid rgba(0, 183, 229, 0.9);
  opacity: .9;
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-radius: 300px;
  box-shadow: 0 0 115px #2187e7;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  -moz-animation: spinPulse 1s infinite ease-in-out;
  -webkit-animation: spinPulse 1s infinite linear; }

.circle1 {
  background-color: rgba(0, 0, 0, 0);
  border: 5px solid rgba(0, 183, 229, 0.9);
  opacity: .9;
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-radius: 100px;
  box-shadow: 0 0 200px #2187e7;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  position: relative;
  top: -90px;
  -moz-animation: spinoffPulse 1s infinite linear;
  -webkit-animation: spinoffPulse 1s infinite linear; }

@-moz-keyframes spinPulse {
  0% {
    -moz-transform: rotate(160deg);
    opacity: 0;
    box-shadow: 0 0 1px #2187e7; }
  50% {
    -moz-transform: rotate(145deg);
    opacity: 1; }
  100% {
    -moz-transform: rotate(-320deg);
    opacity: 0; } }
@-moz-keyframes spinoffPulse {
  0% {
    -moz-transform: rotate(0deg); }
  100% {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spinPulse {
  0% {
    -webkit-transform: rotate(160deg);
    opacity: 0;
    box-shadow: 0 0 1px #2187e7; }
  50% {
    -webkit-transform: rotate(145deg);
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-320deg);
    opacity: 0; } }
@-webkit-keyframes spinoffPulse {
  0% {
    -webkit-transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg); } }
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #161616 url("../img/pattern_40.gif") top left repeat;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center; }

#splash.is-active {
  opacity: 0;
  visibility: hidden;
  display: none; }

#body.is-active {
  opacity: 1 !important; }

/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
body.loadbg {
  background: #161616 url("../img/pattern_40.gif") top left repeat; }

body.is-active {
  background: #fff;
  /*遷移アニメーションと同じ色を指定*/ }

body.appear {
  background: #fff;
  /*画面を開いた後の背景色を指定*/ }

/*画面遷移の後現れるコンテンツ設定*/
#container {
  position: relative;
  opacity: 0;
  /*はじめは透過0に*/ }

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0; }

#container.is-active {
  opacity: 1;
  position: relative; }

@keyframes PageAnimeAppear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none; }

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block; }

/*上に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  bottom: 50%;
  left: 0;
  transform: scaleY(1);
  background: #161616 url("../img/pattern_40.gif") top left repeat; }

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(1); }
  100% {
    transform-origin: top;
    transform: scaleY(0); } }
/*下に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 0;
  transform: scaleY(1);
  background: #161616 url("../img/pattern_40.gif") top left repeat; }

@keyframes PageAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1); }
  100% {
    transform-origin: bottom;
    transform: scaleY(0); } }
