@charset "UTF-8";
main {
    padding-bottom: 0;
}
.login_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	width: 1050px;
	margin: 50px auto;
}
@media screen and (max-width:1050px) {
	.login_wrap {
		width: 100%;
	}
}
@media screen and (max-width:768px) {
	.login_wrap {
		margin: 0 auto 0
	}
}
.cols_wrap-title {
	display: flex;
	flex-basis: 100%;
	max-width: 100%;
	letter-spacing: .2rem;
	color: #f0ecec;
	font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN";
	font-size: 26px;
	font-weight: 700;
}
@media screen and (max-width:768px) {
	.cols_wrap-title {
		justify-content: center;
        padding-top: 20px;
	}
}
@media screen and (max-width:480px) {
	.cols_wrap-title {
		font-size: 1rem;
	}
}
.cols_wrap {
	display: flex;
	flex-basis: 100%;
	max-width: 100%;
	gap: 30px;
}
@media screen and (max-width:768px) {
	.cols_wrap {
		flex-direction: column;
	}
}
.login_cols_left {
	flex-basis: 55%;
	max-width: 55%;
}
@media screen and (max-width:1050px) {
	.login_cols_left {
		flex-basis: 100%;
		max-width: 100%;
		margin: 0 auto;
		text-align: center;
	}
}
@media screen and (max-width:480px) {
	.login_cols_left {
		margin: 0 ;
	}
}
.login_cols_right {
	display: flex;
	flex-basis: 45%;
	max-width: 45%;
	flex-direction: column;
	gap: 30px;
}
@media screen and (max-width:1050px) {
	.login_cols_right {
		flex-basis: 100%;
		max-width: 100%;
		margin: 0 auto 50px;
	}
}
@media screen and (max-width:480px) {
	.login_cols_right {
		margin: 0 auto;
	}
}
.login_cols_left dt,
.login_cols_left dd,
.login_item,
.login_item li,
.-input,
.-login_btn,
.-link {
	flex-basis: 100%;
}
.login_cols_left dt {
	background: none;
}
.login_item {
	padding: 20px;
	border: #998675 1px solid;
	border-radius: 5px;
	background-color: #f0ecec;
}
@media screen and (max-width:1050px) {
	.login_item {
		min-width: 480px;
	}
}
@media screen and (max-width:480px) {
	.login_item {
		min-width: 100%;
	}
}
.login_item li {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
	letter-spacing: 0;
	color: #42210b;
	font-size: 13px;
	line-height: unset;
}
.login_item li:last-child {
	margin-bottom: 0px;
}
@media screen and (max-width:480px) {
	.login_item li {
		font-size: 12px;
		word-break: keep-all;
	}
}
.login_item li img {
	/*width: 350px;*/
	/*height: auto;*/
	width:auto;
	margin: auto;
}
.-ttl {
	align-items: baseline;
	font-size: 16px !important;
	font-weight: 700;
}
.form_name {
	width: 100%;
	padding-left: 5px;
	text-align: left;
	border-left: 3px solid #8b008b;
	font-size: 12px;
}
.-icon-dealer,
.-icon-reg,
.-icon-mm-reg {
	position: relative;
}
.-icon-dealer::before {
	content: "\f007";
}
.-icon-reg::before {
	content: "\f234";
}
.-icon-mm-reg::before {
	content: "\f0e0";
}
.-icon-dealer::before,
.-icon-reg::before,
.-icon-mm-reg::before {
	padding-right: 10px;
	/*position: absolute;*/
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.-input {
	height: 40px;
	padding: 10px;
	border: #998675 1px solid;
	border-radius: 5px;
	background-color: white;
}
.-login_btn {
	flex-basis: auto;
	min-width: 250px;
	margin: auto;
	/*height: 40px;*/
	padding: 15px 30px;
	text-align: center;
	letter-spacing: .1rem;
	color: white !important;
	border-radius: 50px;
	background: linear-gradient(120deg, #8b008b, #2255ee);
	background-color: #8b008b;
	font-size: 14px;
	font-weight: 600;
}
#contaner a.-login_btn:hover {
	color: white !important;
}
.-blue {
	background-color: #0071bc !important;
}
.-link {
	display: flex;
	justify-content: flex-end;
}
.-link a {
	text-decoration: underline;
	color: #0071bc;
}
.-alert_msg {
	color: red;
	font-size: 14px;
}
.-login_hr {
	flex-basis: 100%;
	margin-bottom: 15px;
	border: 1px solid #998675;
}