/* フラッシュメッセージ アニメーション */
.flash-message {
    width: 100%;
	padding: 1em;
	position: fixed;
	text-align: center;
	top: 0;
	left: 0;
	background: rgba(16, 116, 179, 0.8);
	color: #fff;
	animation-name:fade_in;
	animation-duration:6s; 
    animation-fill-mode: forwards;
    -webkit-animation-name: fade_in;
    -webkit-animation-duration: 6s;
    -webkit-animation-fill-mode: forwards;
    -ms-animation-name: fade_in;
    -ms-animation-duration: 6s;
    -ms-animation-fill-mode: forwards;
}
@keyframes fade_in {
0% {
 opacity: 0.3;
 transform: translateY(-40px);
}
  30%{
    opacity: 1;
     transform: translateY(0);
  }
  70%{
    opacity: 1;
     transform: translateY(0);
  }
 100% {
 opacity:0.3;
 transform: translateY(-60px);
 } 
}
@-webkit-keyframes fade_in {
0% {
 opacity: 0.3;
 transform: translateY(-40px);
}
  30%{
    opacity: 1;
     transform: translateY(0);
  }
  70%{
    opacity: 1;
     transform: translateY(0);
  }
 100% {
 opacity:0.3;
 transform: translateY(-60px);
 } 
}
@-ms-keyframes fade_in {
0% {
 opacity: 0.3;
 transform: translateY(-40px);
}
  30%{
    opacity: 1;
     transform: translateY(0);
  }
  70%{
    opacity: 1;
     transform: translateY(0);
  }
 100% {
 opacity:0.3;
 transform: translateY(-60px);
 } 
}
/* ログイン */
.login main{
	display:block;
	padding-top: 100px;
	background: #fbfbfb;
	min-height: calc(100vh);
}
.login main .login_area {
    width: 500px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 3px 3px #e0e0e0;
    padding: 30px 60px;
	margin: 0 auto;
	font-size: 1.5em;
}
.login main .title {
    text-align: center;
    margin-bottom: 30px;
}
.login dl {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 0 0 30px 0;
}
.login dt {
    display: block;
    width: 130px;
    border-left: 5px solid rgba(11, 77, 26, 0.75);
    padding: 0 10px;
    color: #0B4D1A;
    font-weight: bold;
}
.login dd, .login dd input {
    display: block;
    width: 100%;
}
.login dd, .login dd input {
    display: block;
    width: 100%;
}
.login form input{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 3px;
    color: inherit;
	font-family: inherit;
	font-family: 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", sans-serif;
    font-size: 1.3em;
    padding: 0.4em 0.8em;
}
.login .bt_login {
    display: block;
    width: 70%;
    background: #0B4D1A;
    border-radius: 3px;
    outline: none;
    padding: 10px;
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    margin: 0 auto;
    cursor: pointer;
}
.login .error_area {
    padding: 5px 30px;
}
.error_area {
    border: 1px solid #ff0000;
    border-radius: 3px;
    color: #ff0000;
    margin: 0 auto 15px auto;
}