@charset "utf-8";
/* キータイピング */
#fall_area{
  position:relative;
  height:300px;
  background-color:#333333;
}
#target{
  font:bold 18pt 'Courier New';
  color:#FFFFCC;
  text-align:center;
  position:relative;
  top:-30px;
  z-index:1; /*一番奥*/
}
.hidden_area{
  height:30px;
  background-color:#000000;
  position:relative;
  z-index:2;
}
form{
  text-align:center;
}
#start{
  width:100px;
  margin:10px;
}
#status{
  line-height:30px;
  color:#FFFFFF;
  text-align:center;
}
.typing_form input[type=text]{
  line-height:30px;
  padding:0.5em;
  font-size:2.0rem;
}
.typing_form input[type=button]{
  line-height:40px;
  background:#4A7664;
  border:1px solid transparent;
  border-radius:20px;
  color:#E5DECA;
  transition:0.3s;
  cursor:pointer;
}
.typing_form input[type=button]:hover{
  background:#A5D4AD;
  border:1px solid transparent;
  border-radius:20px;
  color:#0D3B2B;
}