@charset "utf-8";


/**************************************************50
 * wrap
 **************************************************/
#form_wrap{
	text-align: center;
}
#form_wrap > p{
	color: #4D4D4D;
	margin-top: 1em;
}
@media screen and (max-width:767px){
	#form_wrap{
		margin-bottom: 6.25%;
	}
	#form_wrap > p{
		padding: 0 3.125%;
		text-align: left;
	}
}
@media screen and (min-width:768px){
	#form_wrap{
		margin-bottom: 100px;
	}
	#form_wrap > p{
	}
}


/**************************************************50
 * form
 **************************************************/
label.select_box{
	display: inline-block;
	position: relative;
	max-width: 100%;
}
br + label.select_box,
label.select_box + label.select_box{
	margin-top: 0.4em;
}
label.select_box:after{
	color: #000000;
	content: "\F035D";
	font-family: "Material Design Icons";
	font-size: 160%;
	height: -webkit-calc(1.25em - (1px * 2));
	height: calc(1.25em - (1px * 2));
	line-height: -webkit-calc(1.25em - (1px * 2));
	line-height: calc(1.25em - (1px * 2));
	pointer-events: none;
	position: absolute;
	top: 50%;
	right: 2px;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
select{
	-webkit-appearance: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	border: 1px solid #666666;
	border-radius: 0;
	border-radius: 5px;
	color: #000000;
	cursor: pointer;
	font-size: 16px;
	height: 2em;
	line-height: -webkit-calc(2em - (1px * 2));
	line-height: calc(2em - (1px * 2));
	padding: 0 2.1em 0 0.5em;
	transition: border-color,box-shadow 0.2s ease-out 0s;
	max-width: 100%;
}
select:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
select:focus{
	border-color: #424242;
	border-color: #212121;
}
select::-ms-expand{
	display: none;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"]{
	-webkit-appearance: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	border: 1px solid #666666;
	border-radius: 0;
	border-radius: 5px;
	font-size: 16px;
	height: 2em;
	line-height: -webkit-calc(2em - (1px * 2));
	line-height: calc(2em - (1px * 2));
	padding: 0 1em;
	transition: border-color,box-shadow 0.2s ease-out 0s;
	vertical-align: baseline;
	width: 100%;
}
textarea{
	-webkit-appearance: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	border: 1px solid #666666;
	border-radius: 0;
	border-radius: 5px;
	font-size: 16px;
	min-height: 12em;
	margin: 0;
	padding: 0.5em 1em;
	resize: vertical;
	transition: border-color,box-shadow 0.3s ease-out 0s;
	vertical-align: top;
	width: 100%;
}
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover,
input[type="password"]:hover,
textarea:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus{
	border-color: #424242;
	border-color: #212121;
}

/** -- checkbox -- **/
input[type="checkbox"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="checkbox"] + label{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	border: 1px solid #666666;
	border-radius: 0;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	line-height: 1.5;
	position: relative;
	padding: 0.25em 1em 0.25em 2.3em;
	transition: border-color,box-shadow 0.3s ease-out 0s;
	vertical-align: middle;
}
.error_notice + .input_check input[type="checkbox"] + label{
	border-color: #F44336;
}
input[type="checkbox"] + label:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
input[type="checkbox"] + label:focus{
	border-color: #212121;
}
input[type="checkbox"] + label:before,
input[type="checkbox"] + label:after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="checkbox"] + label:before{
	content: "\F0131";
	font-family: "Material Design Icons";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="checkbox"] + label:after{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	content: "\F0132";
	color: transparent;
	font-family: "Material Design Icons";
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
.input_check[class*="error_"]{
	background-color: #FFEBEE;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="checkbox"] + label:after{
		font-size: 40% !important;
	}
}
input[type="checkbox"]:checked + label:before{
	color: transparent !important;
}
input[type="checkbox"]:checked + label:after{
	color: #00BDD4;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="checkbox"]:disabled + label{
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="checkbox"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="checkbox"]:disabled + label:hover,
input[type="checkbox"]:disabled + label:focus{
	box-shadow: none;
	cursor: default;
}
/*
:-ms-input-placeholder{
	color: #616161;
}
:-webkit-input-placeholder{
	color: #616161;
}
:placeholder-shown{
	color: #616161;
}
*/
@media screen and (max-width:767px){
	.input_check{
		margin-top: -0.5em;
	}
	input[type="checkbox"] + label{
		margin-top: 0.5em;
	}
}
@media screen and (min-width:768px){
	.input_check{
		margin-top: -0.75em;
	}
	input[type="checkbox"] + label{
		margin-top: 0.75em;
	}
}

/** -- radio -- **/
.input_radio{
}
input[type="radio"]{
	background: none;
	border: none;
	border-radius: 0;
	display: none;
	height: 0;
	margin: 0;
	outline: none;
	padding: 0;
	width: 0;
}
input[type="radio"] + label{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	background-color: #FFFFFF;
	border: 1px solid #C0C0C0;
	border: 1px solid #666666;
	border-radius: 0;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	line-height: 1.5;
	position: relative;
	padding: 0.25em 1em 0.25em 2.3em;
	transition: border-color,box-shadow 0.3s ease-out 0s;
	vertical-align: middle;
}
.error_notice + .input_radio input[type="radio"] + label{
	border-color: #F44336;
}
input[type="radio"] + label:hover{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.7);
}
input[type="radio"] + label:focus{
	border-color: #212121;
}
input[type="radio"] + label:before,
input[type="radio"] + label:after{
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
input[type="radio"] + label:before{
	content: "\F043D";
	font-family: "Material Design Icons";
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
	z-index: 1;
}
input[type="radio"] + label:after{
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	content: "\F043E";
	color: transparent;
	font-family: "Material Design Icons";
	font-size: 240%;
	line-height: 1;
	left: -0.05em;
	z-index: 2;
	transition: all 0.1s ease-out 0s;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none){
	input[type="radio"]:checked + label:after{
		font-size: 40% !important;
	}
}
input[type="radio"]:checked + label:before{
	color: transparent !important;
}
input[type="radio"]:checked + label:after{
	color: #00BDD4;
	font-size: 160%;
	line-height: 1;
	left: 0.2em;
}
input[type="radio"]:disabled + label{
	background-color: #F5F5F5;
	color: #9E9E9E;
}
input[type="radio"]:focus + label{
	box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
}
input[type="radio"]:disabled + label:hover,
input[type="radio"]:disabled + label:focus{
	box-shadow: none;
	cursor: default;
}
.input_radio[class*="error_"]{
	background-color: #FFEBEE;
}
@media screen and (max-width:767px){
	.input_radio{
		margin-top: -0.5em;
	}
	input[type="radio"] + label{
		margin-top: 0.5em;
	}
}
@media screen and (min-width:768px){
	.input_radio{
		margin-top: -0.75em;
	}
	input[type="radio"] + label{
		margin-top: 0.75em;
	}
}

@media screen and (min-width:2560px){
	select,
	select option,
	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="password"],
	input[type="radio"],
	input[type="checkbox"],
	textarea{
		font-size: 1vw;
		font-size: 1svw;
	}
}

/**************************************************50
 * form
 **************************************************/
.form_box{
	background-color: #FFFFFF;
	color: #212121;
	margin-left: auto;
	margin-right: auto;
}
.form_box .form_title{
	border-left: 0.125em solid #509898;
	color: #509898;
	line-height: 1.4;
	padding-left: 0.5em;
}
.form_box .form_separator + .form_title,
.form_box .form_title:first-child{
	margin-top: 0;
}
.form_box .form_separator{
	background-color: #212121;
}
#form{
	overflow: hidden;
}
#form > p{
}
#form > [class^="list_"]{
}
#form .error,
#form .success,
#form .failed{
	line-height: 1.6;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}
#form .form_field{
	margin-left: auto;
	margin-right: auto;
}
#form .form_field dt{
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 0.25em;
	padding: 0.25em 0;
}
#form .form_field dt.required{
}
#form .form_field dt span{
}
#form .form_field dt.required > span{
	position: relative;
}
#form .form_field dt.required > span:after{
	background-color: #F54336;
	border-radius: 0.3125em;
	color: #FFFFFF;
	content: "必須";
	font-size: 0.75rem;
	font-weight: normal;
	display: block;
	padding: 0 0.6em;
	position: absolute;
	top: 50%;
	right: 0;
	text-align: center;
	width: 2.5em;
}
#form .form_field dt:before{
}
#form .form_field dt p{
	font-weight: normal;
}
#form .form_field dd{
}
#form .form_field dd:not(:last-child){
}
#form .form_field input[name="date"]{
	width: 10em;
}
#form .form_field input[name="zipcode"]{
	width: 8em;
}
#form .form_field input[type="text"][name="prefecture"]{
	width: 10em;
}
#form .form_field input[name="tel"],
#form .form_field input[name="fax"]{
	width: 10em;
}
#form .form_field .form_items{
}
#form .form_field ul[class^="list_"]{
	font-size: 75%;
	margin-top: 0.25em;
}
#form .form_field ul[class^="list_"] > li{
}
#form .form_field .list_note > li{
}
#form .form_field .error_notice{
	line-height: 1.2;
	margin-bottom: 0.4em;
}
#form .form_field .form_fields{
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}
#form .form_field .form_fields td{
	width: 50%;
}
#form .form_field dd p.font75p{
	line-height: 1.6;
	padding-top: 0.5em;
}
#form_conf{
	line-height: 1.6;
	text-align: center;
}
@media screen and (max-width:767px){
	.form_box{
		border-radius: 7px;
		margin-top: 6.25%;
		padding: 6.25% 3.125%;
		width: 93.75%
	}
	.form_box .form_title{
		font-size: 125%;
		margin-top: 7.142857142857143%;
	}
	.form_box .form_separator{
		margin: 7.142857142857143% 0;
	}
	#form{
	}
	#form > p{
		padding: 0 3.125%;
	}
	#form > [class^="list_"]{
		padding: 0 3.125% 0 -webkit-calc(3.125% + 1em);
		padding: 0 3.125% 0 calc(3.125% + 1em);
	}
	#form .error,
	#form .success,
	#form .failed{
		margin: 0 auto 3.571428571428571%;
	}
	#form .form_field{
	}
	#form .form_field dt{
		margin-top: 3.571428571428571%;
	}
	#form .form_field dt:not(:first-child){
	}
	#form .form_field dt span{
		display: block;
	}
	#form .form_field dt span:after{
	}
	#form .form_field dt.required > span{
		padding-right: 3em;
	}
	#form .form_field dt.required > span:after{
		-ms-transform: translate(0, -50%);
		-webkit-transform: translate(0, -50%);
		transform: translate(0, -50%);
	}
	#form .form_field dd{
	}
	#form .form_field dd [class^="form_lineup"]{
	}
	#form .form_field dd [class^="form_lineup"]:not(:first-child){
		margin-top: 5px;
	}
	#form_conf{
		padding: 0 3.125%;
	}
}
@media screen and (min-width:768px){
	.form_box{
		border-radius: 0.75em;
		margin-top: 3.125em;
		width: -webkit-calc(100% - (3em * 2));
		width: calc(100% - (3em * 2));
		max-width: 1040px;
	}
	.form_box .form_title{
		font-size: 150%;
		margin-top: 3.125em;
	}
	.form_box .form_separator{
		margin: 3.125em 0;
	}
	#form{
	}
	#form > p{
	}
	#form > [class^="list_"]{
	}
	#form .error,
	#form .success,
	#form .failed{
		margin-bottom: 1em;
	}
	#form .form_field{
	}
	#form .form_field dt{
		margin-top: 1.75em;
	}
	#form .form_field dt span{
	}
	#form .form_field dt span:after{
	}
	#form .form_field dt.required > span{
	}
	#form .form_field dt.required > span:after{
		-ms-transform: translate(125%, -50%);
		-webkit-transform: translate(125%, -50%);
		transform: translate(125%, -50%);
	}
	#form .form_field dd{
	}
	#form .form_field dd [class^="form_lineup"]{
		display: inline-block;
	}
	#form .form_field dd .form_lineup{
	}
	#form .form_field dd .form_lineup_half{
		width: -webkit-calc((100% - 2em) / 2);
		width: calc((100% - 2em) / 2);
	}
	#form .form_field dd .form_lineup_half:nth-child(even){
		margin-right: 0;
	}
	#form_conf{
	}
}
@media screen and (min-width:768px) and (max-width:939px){
	.form_box{
		padding: 1.5em 3em;
	}
	#form .form_field dd [class^="form_lineup"]{
		margin-right: 1em;
	}
	#form .form_field dd .form_lineup_half{
		width: -webkit-calc((100% - 1em) / 2);
		width: calc((100% - 1em) / 2);
	}
}
@media screen and (max-width:1023px){
	#form .form_field dd input[type="checkbox"] + label,
	#form .form_field dd input[type="radio"] + label{
		width: 100%;
	}
}
@media screen and (min-width:768px) and (max-width:1023px){
	#form .form_field dt{
		margin-top: 1.5em;
	}
	#form .form_field dd{
	}
}
@media screen and (min-width:940px) and (max-width:1023px){
	.form_box{
		padding: 2em 4em;
	}
	#form .form_field dd [class^="form_lineup"],
	#form .form_field dd input[type="checkbox"] + label:nth-child(4n+2),
	#form .form_field dd input[type="radio"] + label:nth-child(4n+2){
		margin-right: 1.5em;
	}
	#form .form_field dd .form_lineup_half,
	#form .form_field dd input[type="checkbox"] + label,
	#form .form_field dd input[type="radio"] + label{
		width: -webkit-calc((100% - 1.5em) / 2);
		width: calc((100% - 1.5em) / 2);
	}
}
@media screen and (min-width:1024px) and (max-width:1199px){
	.form_box{
		padding: 3em 6em;
	}
	#form .form_field dd [class^="form_lineup"],
	#form .form_field dd input[type="checkbox"] + label:nth-child(4n+2),
	#form .form_field dd input[type="radio"] + label:nth-child(4n+2){
		margin-right: 2em;
	}
	#form .form_field dd .form_lineup_half,
	#form .form_field dd input[type="checkbox"] + label,
	#form .form_field dd input[type="radio"] + label{
		width: -webkit-calc((100% - 2em) / 2);
		width: calc((100% - 2em) / 2);
	}
}
@media screen and (min-width:1200px){
	.form_box{
		padding: 6.25em 12.5em;
	}
	#form .form_field dd [class^="form_lineup"],
	#form .form_field dd input[type="checkbox"] + label:nth-child(4n+2),
	#form .form_field dd input[type="radio"] + label:nth-child(4n+2){
		margin-right: 3em;
	}
	#form .form_field dd .form_lineup_half,
	#form .form_field dd input[type="checkbox"] + label,
	#form .form_field dd input[type="radio"] + label{
		width: -webkit-calc((100% - 3em) / 2);
		width: calc((100% - 3em) / 2);
	}
}


/**************************************************50
 * progress
 **************************************************/
#form_progress{
	text-align: center;
}
#form_progress > li{
	display: inline-block;
	overflow: hidden;
	position: relative;
	vertical-align: top;
}
#form_progress.lazyloaded > li{
	background-image: url("https://www.m-pls.com/images/user/form/progress_010.webp");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
#form_progress.lazyloaded > li.active{
	background-image: url("https://www.m-pls.com/images/user/form/progress_011.webp");
}
#form_progress.lazyloaded > li:last-child{
	background-image: url("https://www.m-pls.com/images/user/form/progress_020.webp");
}
#form_progress.lazyloaded > li.active:last-child{
	background-image: url("https://www.m-pls.com/images/user/form/progress_021.webp");
}
#form_progress > li p{
	color: #6D5A43;
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
}
#form_progress > li.active p{
	color: #FFFFFF;
}
#form_progress > li p span{
}
@media screen and (max-width:319px){
	#form_progress > li p{
		font-size: 50%;
	}
}
@media screen and (min-width:320px) and (max-width:359px){
	#form_progress > li p{
		font-size: 62.5%;
	}
}
@media screen and (min-width:360px) and (max-width:413px){
	#form_progress > li p{
		font-size: 75%;
	}
}
@media screen and (min-width:414px) and (max-width:767px){
	#form_progress > li p{
		font-size: 87.5%;
	}
}
@media screen and (max-width:767px){
	#form_progress{
		margin-bottom: 1.5625%;
	}
	#form_progress > li{
		height: 36px;
		line-height: 1.2;
		margin-bottom: 1.5625%;
		width: 30.3125%;
	}
	#form_progress > li:last-child{
		width: 30%;
	}
	#form_progress > li:not(:nth-child(3n+1)){
		margin-left: 1.5625%;
	}
	#form_progress > li p{
	}
}
@media screen and (min-width:768px){
	#form_progress{
		margin-bottom: 30px;
	}
	#form_progress > li{
		line-height: 1.4;
		margin-bottom: 20px;
	}
}
@media screen and (min-width:768px) and (max-width:939px){
	#form_progress > li{
		height: 64px;
		width: 200px;
	}
	#form_progress > li:last-child{
		width: 190px;
	}
	#form_progress > li:not(:nth-child(3n+1)){
		margin-left: 16px;
	}
}
@media screen and (min-width:940px){
	#form_progress > li{
		height: 86px;
		width: 268px;
	}
	#form_progress > li:last-child{
		width: 252px;
	}
	#form_progress > li:not(:nth-child(3n+1)){
		margin-left: 20px;
	}
}


/**************************************************50
 * policy
 **************************************************/
#form_policy{
	text-align: center;
}
#form_policy h3{
}
#form_policy p{
}
#form_policy p strong{
	color: #FF0000;
}
@media screen and (max-width:767px){
	#form_policy{
		margin-top: 7.142857142857143%;
	}
	#form_policy h3{
		font-size: 112.5%;
		line-height: 1.6;
	}
	#form_policy .input_check{
		margin-top: -webkit-calc(3.571428571428571% - 0.5em);
		margin-top: calc(3.571428571428571% - 0.5em);
/*
		padding: 0 3.125%;
*/
	}
	#form_policy .input_check label{
		display: inline-block;
	}
	#form_policy p{
/*
		padding: 0 3.125%;
*/
	}
	#form_policy p:not(.center){
		text-align: left;
	}
}
@media screen and (min-width:768px){
	#form_policy{
		margin-top: 3em;
	}
	#form_policy h3{
		font-size: 125%;
		line-height: 1.6;
	}
	#form_policy .input_check{
		margin-top: 0.75em;
	}
	#form_policy p{
	}
}


/**************************************************50
 * button
 **************************************************/
#form_btn{
	text-align: center;
}
#form_btn .link_to_white{
	height: 2.25em !important;
	line-height: 2.25em !important;
	padding: 0 2.2em 0 1.2em;
	width: auto !important;
}
@media screen and (max-width:767px){
	#form_btn{
	}
	#form_btn [class^="btn_"],
	#form_btn [class^="link_"]{
		margin: 7.142857142857143% 1.785714285714286% 0;
		width: 43.75%;
		min-width: 100px;
		max-width: 180px;
	}
}
@media screen and (min-width:768px){
	#form_btn{
		margin-top: 3.125em;
	}
	#form_btn [class^="btn_"],
	#form_btn [class^="link_"]{
		margin: 20px 15px 0;
	}
}


/**************************************************50
 * form_result
 **************************************************/
#form_result{
	text-align: center;
}
#form_result .form_result_title{
	font-weight: normal;
	line-height: 1.5;
}
#form_result .form_result_title > span{
	border-bottom: 0.2em solid #509898;
	display: inline-block;
	line-height: 1.2;
	padding-bottom: 0.25em;
}
#form_result > p{
	font-size: 87.5%;
}
@media screen and (max-width:767px){
	#form_result{
	}
	#form_result .form_result_title{
		font-size: 125%;
		margin-bottom: 0.5em;
	}
	#form_result > p{
		padding: 0 3.571428571428571%;
		text-align: left;
	}
}
@media screen and (min-width:768px){
	#form_result{
	}
	#form_result .form_result_title{
		font-size: 150%;
		margin-bottom: 1em;
	}
	#form_result > p{
		margin-bottom: 2em;
	}
}


