@charset "UTF-8";

footer .right_box .footer_list li:nth-child(6) a{
	text-decoration: underline;
	color: #47B9F8;
}

/*-----------------------------------

	reset(form用)

-----------------------------------*/
input, button, select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}
textarea {
	resize: vertical;
}
/*input[type='checkbox'], input[type='radio'] {
	display: none;
}*/
input[type='submit'], input[type='button'], label, button, select {
	cursor: pointer;
}
select::-ms-expand {
 display: none;
}
/*-----------------------------------

	form_block

-----------------------------------*/
#form_block {
	padding: 120px 0;
}
#form_block .contents_inner {
	width: 820px;
}
#form_block p {
	font-size: 16px;
	text-align: center;
}
#form_block table {
	width: 100%;
	margin-bottom: 30px;
	border-top: 1px solid #e2e5e7;
}
#form_block table tr {
	border-bottom: 1px solid #e7e7e7;
	display: flex;
	align-items: center;
	gap: 30px;
}
#form_block table th {
	text-align: left;
	font-weight: 500;
	width: 200px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	align-items: center;
}
#form_block table th span {
	background: #47b9f8;
	font-size: 12px;
	padding: 0 7px;
	color: #fff;
	margin-left: 10px;
	height: 28px;
}
#form_block table td {
	vertical-align: middle;
	padding: 20px 0;
	width: calc(100% - 230px);
	word-break: break-all;
}

#form_block input {
	border: 1px solid #e2e5e7;
	line-height: 1;
	padding: 10px;
	height: 50px;
	border-radius: 10px;
	width: 100%;
}
#form_block input[type='radio']{
	width: 14px;
	height: 14px;
	padding: 0;
	margin: 0 0 1px;
}
#form_block input[type='radio']:checked{
	/*border-color: #47b9f8;*/
	background: #47b9f8;
}
#form_block textarea {
	border: 1px solid #e2e5e7;
	line-height: 1;
	padding: 10px;
	width: 100%;
	height: 150px;
	border-radius: 10px;
}

#form_block table td p {
	font-size: 13px;
	text-align: left;
}
#form_block table tr td label{
	margin-right: 20px;
}
#form_block input[type='submit']{
	accent-color: #47b9f8;
}

#form_block table ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#form_block table ul li {
	margin-right: 30px;
	line-height: 0;
}

#form_block .btnArea {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#form_block .btnArea input {
	display: block;
	width: 200px;
	line-height: 1;
	font-weight: 500;
	text-align: center;
	padding: 20px 0;
	border: none;
	height: auto;
	border-radius: 0;
}

#form_block .btn_wrap {
	position: relative;
	
	gap: 20px;
}
#form_block .form_btn{
	background: #47b9f8;
	border: 1px solid #47b9f8!important;
	color: #FFF;
	transition: 0.3s;
}
#form_block .form_btn:hover{
	background: #fff;
	color: #47b9f8;
}

#form_block .btnArea .back {
	border: 1px solid #47b9f8;
	background: #fff;
	color: #47b9f8;
	transition: 0.3s;
	display: block!important;
}
#form_block .btnArea .back:hover{
	background: #47b9f8;
	color: #fff;
}

@media screen and (max-width: 1200px) {
	#form_block .contents_inner {
		width: 90%;
	}
}

@media screen and (max-width: 840px) {
	#form_block {
		padding: 60px 0;
	}
}

@media screen and (max-width: 640px) {
	#form_block p {
		font-size: 14px;
	}
	#form_block .formWrap {
		padding: 60px 10px;
	}
	#form_block table {
		margin-bottom: 40px;
	}
	#form_block table tr{
		display: block;
	}
	#form_block table th,
	#form_block table td{
		width: 100%;
		display: block;
	}
	#form_block table th{
		padding-top: 20px;
	}
	#form_block .btn_wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#form_block .backbtn{
		margin-bottom: 20px;
	}
	#form_block .btnArea {
		flex-flow: column;
		align-items: center;
	}
	#form_block .btnArea .back {
		margin-right: 0;
	}
	#form_block .btnArea:not(:last-child) {
		margin-bottom: 20px;
	}
}


#form_block .alert {
	display: block;
	background: rgba(255, 0, 0, 0.05);
	color: crimson;
	text-align: center;
	padding: 1em;
	margin-bottom: 60px;
	border: 1px solid crimson;
}
#form_block table td p.error {
	color: crimson;
	font-size: 0.8em;
}
