body {
	font-size: 18px;
	margin: 0;
}
body, body * {
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
#Login, #Login * {
	box-sizing: border-box;
}
#Login {}
#Login>div {
	min-height: 350px;
}
#Login h2 {
	text-align: center;
	color: #222d41;
	margin: 0 0 20px 0;
	padding: 15px 0;
	background: #eee;
}
#Login form {
	text-align: center;
	height: 100%;
}
#Login ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#Login ul li {
	padding: 0 2px;
	margin: 0 0 10px 0;
}
#Login ul li input {
	border: 1px solid #999;
	padding: 5px;
	border-radius: 3px;
	font-family: auto;
	padding: 10px;
	width: 100%;
	font-size: 16px;
}
#Login .l {
	text-align: left;
}
#Login .c {
	text-align: center;
}
#Login .r {
	text-align: center;
}
#Login .t {
	color: #111;
	margin: 0;
	padding: 12px 0 5px;
	font-size: 14px;
	font-weight: bold;
}
#Login .lh_x3 {
	line-height: 300%;
}
#Login .mt10per {
	margin-top: 10%;
}
#Login .note {
	color: green;
}
#Login .btn {
	width: 300px;
	margin: 0 auto;
	padding: 0 0 0 0;
}
#Login .err {
	font-weight: bold;
	color: #dc3545;
}
#Login li.err {
	font-size: 75%;
}
#Login button {
	width: 80%;
	background-color: #2C3F50;
	border: 2px solid #2C3F50;
	color: #fff;
	font-weight: bold;
	padding: 13px 0;
	cursor: pointer;
	font-size: 15px;
}
#Login button:hover {
	background-color: #fff;
	color: #2C3F50;
}
#Login button:disabled {
	opacity: 0.2;
	pointer-events: none;
}
#Login a {
	color: #006DD9;
	text-decoration: underline;
	font-weight: bold;
}
#Login a:hover {
	color: #999;
}
#Login a.sub_link {
	font-size: 85%;
}
#Sending {
	display: none;
	text-align: center;
	padding-top: 20px;
}
.ouro {
	position: relative;
	display: inline-block;
	height: 46px;
	width: 46px;
	margin: 1em;
	border-radius: 50%;
	background: none repeat scroll 0 0 #FFFFFF;
	/* ベースの色 - 可変 */
	overflow: hidden;
}
.ouro:after {
	content: "";
	position: absolute;
	top: 9px;
	left: 9px;
	display: block;
	height: 28px;
	width: 28px;
	background: none repeat scroll 0 0 #F2F2F2;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.ouro>span {
	position: absolute;
	height: 100%;
	width: 50%;
	overflow: hidden;
}
.left {
	left: 0
}
.right {
	left: 50%
}
.anim {
	position: absolute;
	left: 100%;
	top: 0;
	height: 100%;
	width: 100%;
	border-radius: 999px;
	background: none repeat scroll 0 0 #91aaaa;
	/* Ouroborosの色 - 可変 */
	opacity: 0.8;
	-webkit-animation: ui-spinner-rotate-left 3s infinite;
	animation: ui-spinner-rotate-left 3s infinite;
	-webkit-transform-origin: 0 50% 0;
	transform-origin: 0 50% 0;
}
.left .anim {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
}
.right .anim {
	border-bottom-right-radius: 0;
	border-top-right-radius: 0;
	left: -100%;
	-webkit-transform-origin: 100% 50% 0;
	transform-origin: 100% 50% 0;
}
/* v2 */
.ouro2 .anim {
	-webkit-animation-delay: 0;
	animation-delay: 0;
}
.ouro2 .right .anim {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}
/* v3 */
.ouro3 .anim {
	-webkit-animation-delay: 0s;
	-webkit-animation-duration: 3s;
	-webkit-animation-timing-function: linear;
	animation-delay: 0s;
	animation-duration: 3s;
	animation-timing-function: linear;
}
.ouro3 .right .anim {
	-webkit-animation-name: ui-spinner-rotate-right;
	-webkit-animation-delay: 0;
	-webkit-animation-delay: 1.5s;
	animation-name: ui-spinner-rotate-right;
	animation-delay: 0;
	animation-delay: 1.5s;
}
/* round variation */
.round .ouro:after {
	display: none
}
/* double variation */
.double .ouro:after {
	height: 13px;
	width: 13px;
	left: 7px;
	top: 7px;
	border: 10px solid #ddd;
	background: transparent;
	box-shadow: none;
}
@keyframes ui-spinner-rotate-right {
	0% {
		transform: rotate(0deg)
	}
	25% {
		transform: rotate(180deg)
	}
	50% {
		transform: rotate(180deg)
	}
	75% {
		transform: rotate(360deg)
	}
	100% {
		transform: rotate(360deg)
	}
}
@keyframes ui-spinner-rotate-left {
	0% {
		transform: rotate(0deg)
	}
	25% {
		transform: rotate(0deg)
	}
	50% {
		transform: rotate(180deg)
	}
	75% {
		transform: rotate(180deg)
	}
	100% {
		transform: rotate(360deg)
	}
}
@-webkit-keyframes ui-spinner-rotate-right {
	0% {
		-webkit-transform: rotate(0deg)
	}
	25% {
		-webkit-transform: rotate(180deg)
	}
	50% {
		-webkit-transform: rotate(180deg)
	}
	75% {
		-webkit-transform: rotate(360deg)
	}
	100% {
		-webkit-transform: rotate(360deg)
	}
}
@-webkit-keyframes ui-spinner-rotate-left {
	0% {
		-webkit-transform: rotate(0deg)
	}
	25% {
		-webkit-transform: rotate(0deg)
	}
	50% {
		-webkit-transform: rotate(180deg)
	}
	75% {
		-webkit-transform: rotate(180deg)
	}
	100% {
		-webkit-transform: rotate(360deg)
	}
}
#Login .infolist+.infolist {
	margin-top: 15px;
}
#Login .infolist .t {
	color: gray;
}
#Login .infolist .d {
	list-list-style: disc;
	margin-left: 30px;
}
#Login .infolist .d a {
	color: inherit;
}
#Login .infolist .d a:hover {
	color: blue;
}
.lock_reset {
	font-size: 72px !important;
}
.lock_reset * {
	font-size: inherit !important;
}
#Login .comment h3 {
	margin: 0;
	text-align: left;
	border-bottom: 3px solid gray;
	padding: 0 15px;
}
#Login .comment input {
	font-size: 14px;
}
#Login .comment textarea {
	border: 1px solid #999;
	padding: 5px;
	border-radius: 3px;
	font-family: auto;
	padding: 10px;
	width: 100%;
	height: 5rem;
	overflow: auto;
	font-size: 14px;
	resize: vertical;
}
#Login .comment .btn {
	padding-top: 15px;
}
#Login .comment .btn button {
	padding: 5px 0;
}
#Login .comment.del .pre>* {
	display: block;
	border: 1px solid #999;
	padding: 5px;
	border-radius: 3px;
	font-family: auto;
	padding: 10px;
	overflow: auto;
	font-size: 14px;
}
#Login .comment.del .pre>div {
	width: 100%;
	height: 5rem;
	overflow: auto;
	resize: vertical;
}
#formHmaLogin {
	>div {
		width: 700px;
		margin: 0 auto;
	}
}
@media screen and (max-width: 768px) {
	#Login h2 {
		font-size: 22px;
	}
	#formHmaLogin {
		>div {
			width: 90%;
			margin: 0 auto;
		}
	}
}