@charset "utf-8";
/* ----------------------------------------------------------------------------------------
* Author        : MFHM
* File          : Login CSS file
* ---------------------------------------------------------------------------------------- */

/* INDEX
------------------------------------------

01. Login area css

------------------------------------------ */

/* ----------------------------------------------------------------------------------------
                     01. Login area css
------------------------------------------------------------------------------------------ */
.login-inner {
	padding: 24px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background: #fff;
	border: 1px solid #0C588F;
}

@media screen and (max-width: 559px) {/*add20200610*/
	.login-inner {
		padding: 24px 10px;
	}
}

.login-item {
	width: 48%;
}

@media screen and (max-width: 768px){
	.login-item {
		width: 100%;
	}

	.login-item:first-child {
		margin-bottom: 24px;
		padding-bottom: 24px;
		border-bottom: 1px solid #0C588F;
	}
}

@media screen and (max-width: 559px) {/*add20200610*/
	.login-item:first-child {
		margin-bottom: 24px;
		padding-bottom: 24px;
	}
}

.login-item .btn-secondary,
.login-item .btn-primary {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 48px;
	line-height: 1;
}

.login-item .btn-secondary span,
.login-item .btn-primary span {
	display: block;
	margin-top: 4px;
	font-size: 0.75rem;
}

.devide {
	width: 1px;
	background-color: #0C588F;
}

.login-item h2,
.register-item h2 {
	margin-bottom: 48px;
	text-align: center;
	font-size: 1.25rem;
	font-weight: bold;
}

@media screen and (max-width: 768px) {/*add20200610*/
	.login-item h2,
	.register-item h2 {
		margin-bottom: 24px;
	}
}

.login-item h2 span,
.register-item h2 span {
	display: block;
	margin-top: 8px;
	font-size: 0.875rem;
	font-weight: normal;
}

.login-item form {
	width: 100%;
}

.pass-forget {
	text-align: center;
}

.pass-forget a {
	text-decoration: underline;
}

.pass-forget a span {
	display: block;
}

@media screen and (max-width: 559px) {/*add20200611*/
	.login-content + p {
		font-size: 0.875rem;
	}
}

/*パスワードルール*/
.rule-txt {
	font-size: 0.875rem;
	color: #900;
	padding: 12px;
	border: 1px solid #900;
	background-color: #fff;
}

@media screen and (max-width: 559px) {
	.rule-txt {
		font-size: 0.75rem;
	}
}

/*.rule-txt li::marker {
	margin-left: 12px;
	content: "- ";
}*/

.trigger::after {
    content: 'Log in';
}
