@charset "utf-8";

/* CSS Document */

/* -------------
- bg_color_area
- login_wrapper
-------------- */

/*=======================================
　bg_color_area
=======================================*/
#login main {
	width: 100%;
}
#login .bg_color_area {
	width: 100%;
	height: 100vh;
	background-color: #fff/*#c7e5ff*/;
}
@media only screen and (max-width: 768px) {
	#login .bg_color_area {
		background: url(../../images/login/welcome_bg_sp.jpg) no-repeat;
		background-size: cover;
	}
}

/*=======================================
　login_wrapper
=======================================*/
#login #login_wrapper {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
#login #login_wrapper .clms {
	max-width: 950px;
	width: 90%;
	margin: 0 auto;
	background-color: #fff;
	filter: drop-shadow(0px 6px 20px rgba(159,160,160,0.6));
	display: flex;
	height: 580px;
}
#login #login_wrapper .clms .left,
#login #login_wrapper .clms .right {
	width: 100%;
	height: 100%;
}
#login #login_wrapper .clms .left {
	background: url(../../images/login/welcome_bg.jpg) no-repeat;
	background-size: cover;
	display: flex;
	align-items: center;
	justify-content: center;
}
#login #login_wrapper .clms .left div {
	width: 75%;
}
#login #login_wrapper .clms .right {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#login #login_wrapper .clms .right .box h1 {
	margin: 85px auto 47px;
	text-align: center;
}
#login #login_wrapper .clms .right .enter_box p.enter_title {
	width: 47px;
	margin: 0 auto 10px;
}

/* form内項目_レイアウト調整 */
#login #login_wrapper .item_layout_layout {
	margin-bottom: 15px;
	position: relative;
}
#login #login_wrapper .item_layout_layout input {
	width: 100%;
	font-size: 14px;
	padding: 11px 15px 8px;
	background-color: #f8f8f8;
}
#login #login_wrapper .item_layout_layout::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 3.5px;
	height: 100%;
	background-color: #fd91ac;
}
#login #login_wrapper .item_layout_check {
	margin: 27px 0 30px;
	font-size: 12px;
}
#login #login_wrapper .item_layout_check input[type="checkbox"] {
	display: none;
}
#login #login_wrapper .item_layout_check label {
	padding-left: 27px;
	display: block;
	position: relative;
	cursor: pointer;
}
#login #login_wrapper .item_layout_check label::before {
	content: '';
	position: absolute;
	top: 48%; left: 0;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	border: 1px solid #727171;
	background-color: #fff;
}
#login #login_wrapper .item_layout_check label::after {
	content: '';
	position: absolute;
	top: 50%; left: 2px;
	transform: translateY(-50%);
	background: url(../../images/login/check_mark.png) no-repeat;
	background-size: cover;
	width: 11px;
	height: 8px;
	opacity: 0;
	transition: opacity .1s linear;
}
#login #login_wrapper .item_layout_check input[type="checkbox"]:checked + label::after {
	opacity: 1;
}
#login #login_wrapper .item_layout_btn button {
	width: 100%;
	padding: 12px 0 10px;
	font-size: 14px;
	color: #fff;
	background-color: #fd91ac;
	margin-bottom: 26px;
	border-radius: 21px;
}
#login #login_wrapper .clms .right .box p.copy {
	font-size: 11px;
	color: #727171;
	text-align: center;
}

@media only screen and (max-width: 1200px) {
	#login #login_wrapper .clms .right .box {
		width: auto;
	}
}
@media only screen and (max-width: 768px) {
	#login #login_wrapper .clms {
		max-width: 450px;
		width: 74%;
		height: auto;
		filter: drop-shadow(0px 7.5px 24px rgba(158, 159, 159));
	}
	#login #login_wrapper .clms .left {
		display: none;
	}
	#login #login_wrapper .clms .right .box {
		width: 85%;
	}
	#login #login_wrapper .clms .right .box h1 {
		margin: 63px auto 26px;
	}
	#login #login_wrapper .item_layout_check {
		margin: 19px auto 25px;
	}
	#login #login_wrapper .item_layout_layout input {
		padding: 9px 12px 7px;
		font-size: 12px;
	}
	#login #login_wrapper .item_layout_check label {
		padding-left: 20px;
	}
	#login #login_wrapper .item_layout_check label::before {
		top: 45%;
		width: 13px;
		height: 13px;
	}
	#login #login_wrapper .item_layout_check label::after {
		width: 8px;
		height: 6px;
	}
	#login #login_wrapper .item_layout_btn button {
		font-size: 12px;
		padding: 10px 0 9px;
		margin-bottom: 75px;
	}
	#login #login_wrapper .clms .right .box p.copy {
		margin-bottom: 50px;
		font-size: calc((17 / 750) * 100vw);
	}
}












