@charaset "utf-8" ;

/*Theme URL: 
Description: 
Author: 
Version: 
Tags: 
License: 
License URI: 
Theme Name: TOP_iriguchi
Template: ex-factors*/

/*??????*/
@media screen and (max-width:480px) {
  * {
	float: none;
	position: static;
   }
}


/*????????*/
@media screen and (max-width:960px) {
 
  * {
     float: none;
     position: static;
  }
 
}

@import url(https://fonts.googleapis.com/css?family=Roboto);
body {
  font-family: "Roboto";
  color: #333;
}

.text {
  width: 100%;
  text-align: center;
  height: 50px;
  line-height: 50px;
  font-size: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.text .content {
  display: inline;
}
.text .dash {
  display: inline-block;
  height: 3px;
  width: 20px;
  background-color: #3498db;
  animation: blink 0.5s infinite linear;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.enter {
  font-size: 30px;
  font-weight: normal;
  animation-name: fadein;
  animation-duration: 11s;
}

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