@charset "utf-8";
.login-form {
	width: 350px;
	margin: 0 auto;
	padding: 10px;
	background-color: #ffffff;
}

.login-form table {
	border-collapse: collapse;
}

.login-form td {
	padding: 10px;
}

.login-form td:first-child {
	width: 100px;
}

.login-form .form-control {
	padding: 5px;
	background-color: #ffffff;
	border: solid 2px #d0d7e5;
	border-radius: 10px;
	font-size: 11pt;
	font-family: Verdana,"メイリオ",Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

/*チェックボックス設定 */
.OptCheckBox {
	padding-left: 22px;
	position: relative;
	margin-right: 20px;
	color: #000000;
	font-size: 12px;
	padding-top: 1px;
}
/* 四角い枠部分 */
.OptCheckBox:before {
	content: "";
	display: block;
	position: absolute;
	top: -1px;
	left:0px;
	width:13px;
	height:13px;
	border: 2px solid gray;
	border-radius:4px;
	background-color: #FFFFFF;
}

/* チェック用のレ点(通常は非表示) */
.OptCheckBox:after {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 5px;
	width: 5px;
	height: 8px;
	border-right: 3px solid #000000;
	border-bottom: 3px solid #000000;
	transform: rotate(45deg);
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
	}
/* 隣接するinput(type=checkbox)がチェックOnになったらレ点を表示させる */
input[type=checkbox]:checked + .OptCheckBox:after {
	opacity: 1;
}

/* チェックボックスのマウスホバー時に枠内を点滅させる */
.OptCheckBox:hover::before {
	-webkit-animation:blink_base 0.8s ease-in-out infinite alternate;
	animation:blink_base 0.8s ease-in-out infinite alternate;
}
/* 点滅アニメーション */
@-webkit-keyframes blink_base {
	0% {background-color: #FFFFFF;}
	100% {background-color: #87CEFA;}
}
@keyframes blink_base {
	0% {background-color: #FFFFFF;}
	100% {background-color: #87CEFA;}
}

#login {
	width: 100%;
	height: auto;
	padding: 5px;
	background-color: #81bd4f;
	color: #ffffff;
	border-radius: 10px;
	font-size: 12pt;
}

.attention {
	width: fit-content;
	margin: 20px auto 40px auto;
	padding: 0 20px;
	background-color: #ffffff;
	border: solid 5px #ff0000;
	border-radius: 10px;
	font-size: 1.2rem;
	word-break: break-all;
}

.attention h2 {
	color: #ff0000;
	font-weight: bold;
	text-align: center;
}

.attention .site-url {
	font-size: 1.7rem;
}

.attention .highlighted {
	background: linear-gradient(transparent 60%, #ff99ab 60%);
}