@charset "utf-8";
/* CSS Document */


.progress { 
    background:linear-gradient(65deg, #68416B,#524553,#6B5C19);
    color: rgba(242,213,134,1.00);
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 99998;
    animation: bggradient 10.0s ease infinite;
    background-size: 200% 200%;
}

.progress_area{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
}

.progress_logo{
   position: relative;
   width: 200px;
   margin: auto;
   margin-bottom: 10px;
}

.progress_bar { 
    border-top: 1px solid rgba(234,84,19,1.00);
    position: absolute;
    width: 0%;
}
.progress_text {
    font-family: "Menlo", "Consolas", monospace;
    font-size: 12px;
    margin-top: 10px;
    position: absolute;
    text-align: center;
    width: 100%;
    color: rgba(234,84,19,1.00)}

.progress-complete .progress-bar {
    border-top-color: rgb(255, 255, 255);
}


/* -----------------------------------------
   ローディング領域  
   -----------------------------------------*/
.op_load{
   width: 200px;
   margin:  20px auto;
   font-size: 100%;
   font-weight: 400;
   color: rgba(234,74,0,1.00);
   text-align: center;
  z-index: 99999;
}

.op_anime_wrap{
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  /*background: #5F5B49;*/
  background:linear-gradient(65deg, #68416B,#524553,#6B5C19);
  animation: bggradient 10.0s ease infinite;
  background-size: 200% 200%;
  z-index: 99998;
}
@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.op_anime_wrap .logo{
  display: none;
  position: fixed;
  top: 40%;
  left: 50%;
  width: 300px;
  margin-top: -100px;
  margin-left: -150px;
  text-align: center;
  color: #fff;
  z-index: 99999;
  background-image: url("../001bg.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}


/* ローディング点滅 */
.blinking{
   color: rgba(234,74,0,1.00);
   text-align: center;
   padding-left: 10%;
   padding-top: 5%;
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
    -moz-animation:blink 1.5s ease-in-out infinite alternate;
    animation:blink 1.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:1;}
    100% {opacity:0;}
}
@-moz-keyframes blink{
    0% {opacity:1;}
    100% {opacity:0;}
}
@keyframes blink{
    0% {opacity:1;}
    100% {opacity:0;}
}


/* 〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
   スマホ版
   〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓 */

@media screen and (max-width: 480px) {

.op_load{
   width: 100%;
   margin:  20px auto;
   font-size: 100%;
   font-weight: 400;
   color: rgba(234,74,0,1.00);
   text-align: center;
  z-index: 99999;
}

.op_anime_wrap{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  /*background: #5F5B49;*/
  background:linear-gradient(85deg, #68416B,#524553,#6B5C19);
  animation: bggradient 6.0s ease infinite;
  background-size: 200% 200%;
  z-index: 99998;
}

.op_anime_wrap .logo{
  top: 45%;
  left: 50%;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 99999;
  background-image: url("../001bg.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
}


}
