@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: 360px;width: 70%;}
#hed_box h2 img.sp{display: none!important;}

/***フォーム***/

.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;}
}

.textarea{
	width: 100%;
	padding: 13px 16px;
	font-size: 16px;
	border: 1px solid #c9c9c9;
	border-radius: 5px;
}
input::placeholder{color: #c9c9c9;}

/***テキストエリア***/
textarea{
	width: 100%;
	padding: 13px 16px;
	font-size: 16px;
	border: 1px solid #c9c9c9;
	border-radius: 5px;
}
textarea::placeholder{color: #c9c9c9;}
@media screen and (max-width: 750px){
	textarea{margin-bottom: 15px;}
}

.field small{
	font-size: 14px;
	color: #e9411a;
	padding: 10px 0 0 20px;
    display: block;
    font-weight: 500;
}
@media screen and (max-width: 750px){
	.field small{padding: 10px 0 0 0px;}
}


/***チェックボックス***/
.check{
	display: flex;
    justify-content: center;
	margin-bottom: 40px;
}
.check input{
	width: 30px;
    margin-right: 10px;
}
.check label{margin-bottom: 0;}
.check label a{color: #365cb2;}


/***確認ボタン***/
.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%;}
}