@charset "utf-8";
/* CSS Document */
body{box-sizing: border-box;}
.max_w1200{max-width: 1200px;margin: 0 auto;width: 90%;}
#hed_box h2 img{max-width: 350px;width: 70%;}
/***注意（オレンジ）***/
.bg_orange{
	background-color: #e9411a;
	color: #fcffee;
	text-align: center;
	border-radius: 10px;
	line-height: 2;
	padding: 30px;
	margin: 0 auto;
	margin-bottom: 40px;
}
.bg_orange span{
	font-size: 20px;
	margin-bottom: 10px;
    display: block;
}

.top_txt{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
}


@media screen and (max-width: 600px){
	.top_txt{font-size: 16px; text-align: justify;}
	.bg_orange{
		border-radius: 5px;
		line-height: 2;
		padding: 15px;
		margin-bottom: 20px;
	}
}


/***フォーム***/
.box_form{
	padding: 65px 15% 70px;
	text-align: left;
	background-color: #fdffda;
	border-radius: 20px;
}
.field{margin-bottom: 40px;}
@media screen and (max-width: 1333px){
	.box_form{padding: 65px 10% 70px;}
}
@media screen and (max-width: 1100px){
	.box_form{padding: 40px 5%;}
}
@media screen and (max-width: 750px){
	.box_form{padding: 40px 25px;}
}


/***項目名***/
label{
	margin-bottom: 20px;
	display: block;
}
@media screen and (max-width: 600px){
	label{margin-bottom: 15px;}
}


/***必須（オレンジ）***/
label span{
	background-color: #e9411a;
    color: #fcffee;
    font-size: 13px;
    padding: 0 5px;
    border-radius: 2px;
    margin-right: 12px;
    vertical-align: text-bottom;
    line-height: 22px;
}


/***ラジオボタン***/
.radio_list{display: flex;}
.radio_btn{
	display: flex;
	align-items: center;
	margin-right: 5%;
}
.radio_btn label{
	margin-bottom: 0px;
	cursor: pointer;
}
input[type="radio"] {
    transform: scale(1.3);
	vertical-align: middle;
	margin-right: 10px;
}
.field .radio_list span{
	margin-right: 40px;
	display: inline-block;
}
@media screen and (max-width: 1000px){
	.radio_list{flex-direction: column;}
	.radio_btn{margin-bottom: 8px;}
}

/***セレクトボタン***/
.select_wrapper{position: relative;}
.select_wrapper::after{
	content: "▼";
	position: absolute;
	top: 27%;
    left: 67%;
	color: #898989;
}
select{
	width: 70%;
	padding: 13px 16px;
	font-size: 16px;
	border: 1px solid #c9c9c9;
	border-radius: 5px;
	-webkit-appearance: none;
    appearance: none;
	cursor: pointer;
}
select:invalid { color: #c9c9c9; }
select option { color: #000000; }
select option:first-child { color: #c9c9c9; }
@media screen and (max-width: 1000px){
	select{width: 100%;}
	.select_wrapper::after{
		right: 20px;
		left: auto;
	}
}


/***テキストエリア***/
textarea{
	width: 100%;
	padding: 13px 16px;
	font-size: 16px;
	border: 1px solid #c9c9c9;
	border-radius: 5px;
	margin-bottom: 30px;
}
textarea::placeholder{color: #c9c9c9;}
@media screen and (max-width: 750px){
	textarea{margin-bottom: 15px;}
}


/***確認ボタン***/
.btn{
	width: 370px;
	height: 80px;
	vertical-align: middle;
	color: #000;
	background-color: #fff;
	
	border-radius: 50px;
	margin: 0 auto;
    display: block;
	position: relative;
	border: 3px solid #000;
	transition: .3s ease-in-out;
}
.btn:hover{transform: scale(1.1,1.1);}
.btn::after{
	color: #fee300;
	background-color: #000;
	border-radius: 50px;
	position: absolute;
	width: 78px;
	line-height: 78px;
	top: -1px;
    font-size: 22px;
}
.btn_right::after{
	content: "▶";
	right: -1px;
}
.btn_right img{
	width: 92px;
}
@media screen and (max-width: 750px){
	.btn_right{max-width: 370px;width: 90%;}
}