@charset "utf-8";
/* CSS Document */
/*480 600 960 1280*/
/*margin-bottom: 100px(PC)margin-bottom: 60px(SP)*/
/*========================================   contents_box   ========================================*/
/*入力   ---------------------------------*/
/*注意事項*/
.contact_guideline{
	width: fit-content;
	margin-bottom: 40px;
}
.contact_guideline p{
	line-height: 2.0;
}
.contact_guideline p:last-of-type{
	margin-top: 6px;
}
.contact_guideline strong{
	background-color:#FFDDDD ;
	color: #E60033;
	display: inline-block;
	padding: 2px 12px;
	margin: 0 0.4em;
}
/*注意事項*/
/*必須*/
.required{
	letter-spacing: 0.1em;
	font-size:1.2rem;
	font-weight: bolder;
	border: #E60033 solid 3px;
	/*background-color:#e60033;*/
	color:#E60033;
	padding:4px 5px;
	margin-right:0.6em;
}
/*エラー*/
.error{
	color: #E60033;
	font-weight: bolder;
}
span.error{
	display: block;
}
@media screen and (min-width:0px) and ( max-width:479.9px) {/*480まで(SP/タブレット)*/
	span.error{
		font-size: 1.4rem;
	}
}
/*フォーム*/
.contact_form{
	margin-bottom: 30px;
}
.contact_form select,.contact_form textarea,.contact_form input[type="text"]{
	width:100%;
	border: #CCCCCC solid 1px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	font-size: 1.6rem;
	padding:0.6rem 1rem;
	box-sizing:border-box;
	margin-bottom: 5px;
}
input::placeholder{/*例*/
	color: #DDDDDD;
}
.contact_form textarea{
	font-size: 16px;
	width:100%;
	height:9.6em;
}
.contact_form select,.contact_form input[type="text"]{
	max-width: 400px;
	width: 100%;
}
.contact_form dt{
	font-weight: bolder;
}
.contact_form dd{
	border-bottom: #CCCCCC dotted 1px;
}
@media screen and (min-width : 960px) {/*960以上(タブレット/PC)*/
	.contact_form{
		display: flex;
		flex-wrap: wrap;
	}
	.contact_form dt,.contact_form dd{
		padding: 30px 1em;
		box-sizing: border-box;
	}
	.contact_form dt{
		width: 16em;
		border-bottom: #CCCCCC dotted 1px;
	}
	.contact_form dd{
		width: calc(100% - 16em);
	}
}
@media screen and (min-width:0px) and ( max-width:959.9px) {/*960まで(SP/タブレット)*/
	.contact_form dt{
		padding: 0px 1em;
	}
	.contact_form dd{
		padding: 20px 1em 25px;
		margin-bottom: 25px;
	}
}


/*確認   ---------------------------------*/
.contact_check_txt{
	margin-bottom: 40px;
}
.contact_check_txt strong{
	color:#E60033;
}
.check{
	width: 100%;
	margin: 0 auto 50px;
}
.check li{
	border-bottom: #CCCCCC dotted 1px;
	padding: 1em 0 0.6em;
}
.check span:first-child{
	display: block;
	background-color: rgba(238,238,238,1.00);
	/*color: var(--accent-color);*/
	font-weight: bolder;
	padding:5px 1em;
}
.check span:last-child{
	display: inline-block;
	padding:5px 1em 0;
}
@media screen and (min-width:0px) and ( max-width:599.9px) {/*600まで(SP)*/
	.check span:last-child{
		font-size: 1.4rem;
	}
	.back_btn{
		margin-top: 40px;
	}
}
@media screen and (min-width : 600px) {/*600以上(タブレット/PC)*/
	.back_btn{
		margin-left: 4%;
	}
}



/*送信後   ---------------------------------*/
.contact_thanks{
	text-align: center;	
}
.contact_thanks .c_btn{
	margin-top: 20px;
}
@media screen and (min-width:0px) and ( max-width:479.9px) {/*480まで(SP)*/
	.contact_thanks p:nth-child(2){
		font-size: 1.4rem;
		white-space: nowrap;
	}
}