@charset "utf-8";
/*
body {
	text-align: left !important;
}
#main h2 {
	margin: 8px 0 10px 0;
	padding: 5px;
	font-size: 136%;
}
#main h2 span {
	border-left: 5px solid #303;
	display: block;
	padding: 4px 0 4px 7px;
	line-height: 25px;
}
.logout_txt {
	padding: 20px;
}
*/
/* パスワード表示切替 */
/* input type="checkbox" */
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	display: inline-block;
	margin-right: 0.8em;
	padding: 3px 3px 3px 22px;
	position: relative;
}
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	content: "";
	display: block;
	position: absolute;
	transition: all .2s;
}
input[type="checkbox"] + label::before {
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
	top: calc(0.5em - 3px);
	left: 0;
	width: 14px;
	height: 14px;
}
input[type="checkbox"] + label::after {
	border-left: 2px solid #767676;
	border-bottom: 2px solid #767676;
	top: calc(0.5em + 1px);
	left: 3px;
	width: 8px;
	height: 4px;
	opacity: 0;
	transform: rotate(-45deg) scale(.5);
}
input[type="checkbox"] + label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #767676;
}
input[type="checkbox"]:checked + label::after {
	transform: rotate(-45deg) scale(1);
	opacity: 1;
}
.idpw {
	width: auto;
}
.idpw .show_pass {
	font-size: 14px;
	padding: 8px 0 0 10px;
	text-align: left;
	user-select: none;
}

