@charset "utf-8";
/* CSS Document */

.max_w1000{max-width: 1000px;}
/***注意（オレンジ）***/
.bg_orange{
	background-color: #f36938;
	color: #fcffee;
	text-align: center;
	border-radius: 10px;
	line-height: 2;
	padding: 30px;
	margin: 0 auto;
	margin-bottom: 40px;
	width: 98%;
}
.bg_orange span{font-size: 20px;}

@media screen and (max-width: 600px){
	.bg_orange{
		border-radius: 5px;
		line-height: 2;
		padding: 15px;
		margin-bottom: 20px;
	}
}


/***フォーム***/
.box_form{
	padding: 50px 75px 80px;
	text-align: left;
}
.field{margin-bottom: 40px;}
@media screen and (max-width: 750px){
	.box_form{padding: 25px 25px 40px;}
}


/***項目名***/
label{
	margin-bottom: 20px;
	display: block;
}
@media screen and (max-width: 600px){
	label{margin-bottom: 15px;}
}


/***必須（オレンジ）***/
label span{
	background-color: #f36938;
	color: #fcffee;
	font-size: 13px;
	padding: 5px;
	border-radius: 2px;
	margin-right: 12px;
	vertical-align: middle;
}


/***ラジオボタン***/
.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_blue{
	width: 280px;
	height: 60px;
	vertical-align: middle;
	color: #fcffee;
	background-color: #365cb2;
	border: none;
	border-radius: 50px;
	margin: 0 auto;
    display: block;
	position: relative;
}
.btn_blue:hover{background-color: #f36938;}
.btn_blue::after{
	content: "▶";
	position: absolute;
	top: 33%;
    right: 8%;
}
@media screen and (max-width: 750px){
	.btn_blue{width: 250px;}
}