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

.max_w1000{max-width: 1000px;}

/***フォーム***/
.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;}
}

.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: #f36938;
	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_blue{
	 /* buttonタグのリセットCSS */
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	appearance: none;
	
	
	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%;
}

.btn_blue[disabled] {
    background-color: #a0a0a0;
	color: #ffffff;
    cursor: not-allowed; /* クリック不可のカーソルを表示 */
}
@media screen and (max-width: 750px){
	.btn_blue{width: 250px;}
}