@charset "UTF-8";
/* -----
login.css
------------------------------------------------------- */
#wrap {
	max-width: 375px;
    margin: auto;
    padding-top: 5%;
}

/* ログイン表示 */
.form_wrap {
	background: #fafafa;
	margin: auto;
	border: solid 1px #FF9900;
    overflow: hidden;
}
.form_wrap p{font-size: 14px;}

h1 {line-height: 1;}
h1 img {
	max-width: 90%;
	height: auto;
	vertical-align: top;
}

form {padding: 10%;}

.form_item {
	margin-bottom: 0.75em;
	width: 100%;
}
	
.form_item input {
    background: #fafafa;
    border: none;
    color: #666;
    font-size: 14px;
    height: 50px;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 3px;
    outline: none;
    padding: 10px;
}

.form_err_text {
	margin-top: 10px;
	color: #dd0000;
	font-size: 12px;
	text-align: center;
}

.form_new_password input{
	margin-bottom: 10px;
}

.button_panel {
	margin: 30px 0 0;
	width: 100%;
}

/* パスワードを記憶（Cookie対応のブラウザーで有効） */
.check_box input[type=checkbox]{
	width: 20px;
	height: 20px;
}
.check_box p {
    line-height: 1.3;
    padding-left: 2.5%;
}


/* ログインbtn */
.button_panel .button {
	background: #38a700;
	border: none;
	color: #fff;
	cursor: pointer;
	font-size: 18px;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
	height: 50px;
}

.button:hover {
	opacity: .7;
}

/* パスワードをお忘れですか？ */
.form_footer {
	padding: 0 10% 10%;
	text-align: center;
}

.form_footer a {
	color: #8c8c8c;
	text-decoration: none;
	transition: border-color 0.3s;
	position: relative;
    width: 65%;
    margin: 0 auto;
}

.form_footer a::after {
	display: inline-block;
	content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    margin: -4px 0 0 0;
    border-top: solid 2px #8c8c8c;
    border-right: solid 2px #8c8c8c;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.form_footer a:hover {
	border-bottom: 1px dotted #8c8c8c;
	margin-bottom: -1px;
}

#copyright{line-height: 1.3 !important;}



/* -----
パスワードをお忘れの方 lostpassword.html
-------------------- */
.form_note{
    border: 1px solid #ffd562;
    padding: 12px;
    margin-left: 0;
    margin-bottom: 20px;
    background-color: #fff;
    box-shadow: 0 1px 1px 0 rgb(0 0 0 / 10%);	
}

/* 注意喚起 */
.caution{color: #dd0000;}


/* ログインへ戻る */
.form_login a{width: 40%;}


