@CHARSET "UTF-8";
/*---------------------------------------------------------------------------*/
/*ログイン画面*/
#login {
	position: absolute;
	display: none;
	z-index: 86;
	opacity: 1.0;
	top: 36px;
	left: 0%;
	width: 100%;
	height: auto;
	#border: solid 1px #FFF;
}
#login .inner {
	position: relative;
	display: block;
	margin: 0 auto;
	width: auto;
	height: auto;
	min-width: 350px;
	max-width: 400px;
	border: solid 2px #BBB;
	background: #f7f7f7;
}
#login .bt_close {
	position: absolute;
	z-index: 87;
	top: 0px;
	right: 0px;
	margin: 0;
	padding: 0;
	font-size: 30px;
	text-align: center;
	line-height: 1.0;
	width: 34px;
	height: 34px;
	background: transparent;
	cursor: pointer;
}
#login .tx_title {
	position: relative;
	margin: 0;
	padding: 5px 0 0 20px;
	width: 100%;
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 24px; /* 文字サイズ */
	background: transparent;
}
#login .tx_title::after {
	content: "";
	clear: both;
	display: block;
}
/*-------------------------------------*/
/* 入力フォーム */
#login form {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	min-height: 300px;
	background: #f7f7f7;
	overflow:hidden;
}
#login form::after {
	content: "";
	clear: both;
	display: block;
}
/*-------------------------------------*/
/* 入力ブロック */
#login .login_block {
	position: relative;
	clear: both;
	margin: 0;
	padding: 10px;
	width: 100%;
	background: transparent;
}
#login .login_block::after {
	content: "";
	clear: both;
	display: block;
}
#login .login_block .login_form {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	flex-wrap: nowrap;
	margin: 0;
	padding: 5px 0;
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 16px; /* 文字サイズ */
	width: 100%;
	background: transparent;
}
#login .login_block .login_form h3 {
	flex: 1 1 140px;
	padding: 5px;
	text-align: right;
	font-size: 16px;
	overflow-wrap: break-word;
	color: #333; /* 文字色 */
}
#login .login_block .login_form div {
	flex: 2 1 200px;
	padding: 3px;
	font-size: 16px;
	overflow-wrap: break-word;
	min-width: 0;
	#background: #ff7;
	#border: solid 1px #f7f7f7;
}
/*-------------------------------------*/
/* 入力フォーム */
.login_form input[type="text"],
.login_form input[type="password"],
.login_form input[type="email"]
{
	margin: 0;
	padding: 5px;
	width: 95%;
	max-width: 260px;
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	overflow-wrap: break-word;
	border: solid 1px #BBB;
	border-radius: 5px;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
	background: #fafafa;
	ime-mode: inactive;
}
/* 入力の際に、枠を表示する */
.login_form input[type="text"]:focus,
.login_form input[type="password"]:focus,
.login_form input[type="email"]:focus
{
	border: 1px solid #777;
}
/*-------------------------------------*/
/* ボタンブロック */
#login .login_block .login_commit {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: nowrap;
	margin: 0;
	padding: 0;
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 16px; /* 文字サイズ */
	width: 100%;
	background: transparent;
}
#login .login_block .login_commit div {
	flex: 1 1 100%;
	margin: 0;
	padding: 5px 20px;
	text-align: center;
	#background: #FFA;
}
#login .login_block .login_commit div span {
	display: inline-block;
	width:100%;
	margin: 0;
	padding: 0;
	text-align: left;
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	font-size: 14px; /* 文字サイズ */
	line-height: 1.5;
	color: #333; /* 文字色 */
	overflow-wrap: break-word;
}
/*-------------------------------------*/
/* チェックボックス */
.login_commit input[type="checkbox"] {
	display: inline-block;
	padding: 5px;
	font-size: 16px;
}
.login_commit label {
	display: inline-block;
	padding: 5px;
	font-size: 16px;
	line-height: 1.0;
	overflow-wrap: break-word;
	color: #333; /* 文字色 */
}
/*-------------------------------------*/
/* カスタムチェックボックス */
.login_commit input[type="checkbox"]{
    display: none;
}
.login_commit input[type="checkbox"]+label{
    display: inline-block;
    position: relative;
    padding-left: 26px;
    cursor: pointer;
}
.login_commit input[type="checkbox"]+label::before{
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 0;
    width: 18px;
    height: 18px;
    border: 1px solid #888;
    background-color: #fafafa;
}
.login_commit input[type="checkbox"]:checked+label::after{
    content: "";
    display: block;
    position: absolute;
    top: 5px;
    left: 3px;
    width: 12px;
    height: 6px;
    transform: rotate(-50deg);
    border-bottom: 3px solid;
    border-left: 3px solid;
    border-color:  #333;
}
/*-------------------------------------*/
/* ボタン */
.login_commit .bt_commit {
	margin: 0 10px;
	font-size: 16px;
	width: 200px;
	height: 38px;
	background: #57E;
	color: #FFF;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
}
.login_commit .bt_commit:hover {
	background: #68F;
	color: #FFF;
}
.login_commit .bt_commit:disabled {
	background: #AAA;
	color: #DDD;
}
/*-------------------------------------*/
/* フッター */
#login .tx_footer {
	position: relative;
	margin: 0 0 10px 0;
	padding: 5px;
	width: 100%;
	height: 36px;
	font-size: 14px; /* 文字サイズ */
	font-family: -apple-system,BlinkMacSystemFont,"Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
	text-align: center;
	line-height: 1.5;
	overflow-wrap: break-word;
	background: transparent;
}
#login .tx_footer::after {
	content: "";
	clear: both;
	display: block;
}
/*=====================================*/
/* END */
