@charset "UTF-8";
/*-------------------------------------お問合せ*/
.entry {
	overflow-x: hidden;
}
.entry .section_inner {
	max-width: 1000px;
}
.entry .text {
	text-align: center;
	margin-bottom: 3em;
}
.entry .form_wrap {
	max-width: 1000px;
	margin: 80px auto 0;
}
.entry .form_wrap .text {
	text-align: center;
	margin-bottom: 40px;
}
.entry .dl_form {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.entry .dl_form dt {
	width: 240px;
	text-align: left;
	line-height: 40px;
	font-weight: 700;
	padding: 2em 0;
	border-bottom: 1px solid #ff8a52;
}
.entry .dl_form dt span {
	display: inline-block;
	padding: 0 10px;
	font-size: 1.2rem;
	line-height: 2;
	background-color: #ff5c36;
	color: #ffffff;
	border-radius: 12px;
	margin-left: 15px;
}
.entry .dl_form dd {
	width: calc(100% - 240px);
	padding: 2em 0 2em 2em;
	border-bottom: 1px solid #dddddd;
}
.entry .dl_form dd .radio_item {
	margin-bottom: 5px;
}
.entry .dl_form dd .radio_item label {
	cursor: pointer;
}
.entry .dl_form dd .form-control {
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 20px;
	margin: 0 10px 0 0;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 5px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0);
}
.entry .dl_form dd .form-control.short {
	max-width: 300px;
	margin: 0 10px 10px 0;
}
.entry .dl_form dd textarea.form-control {
	width: 100%;
	height: auto;
}
.entry .dl_form dd select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 100%;
	height: 40px;
	padding: 6px 12px;
	margin: 3px auto;
	font-size: 1.4rem;
	line-height: 1.8;
	color: #555555;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 5px;
	box-shadow: inset 0 1px 1px rgba(0,0,0,0);
	position: relative;
	background-image: url("../img/common/select_arrow.png");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 10px auto;
}
.entry .dl_form dd select.pc_inline {
	max-width: 100px;
}
.entry .submit_area {
	margin: 30px auto 0;
	text-align: center;
}
.entry .submit_area input[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: inline-block;
	width: 100%;
	max-width: 200px;
	height: 50px;
	border-radius: 25px;
	padding: 6px 12px;
	margin: 0 auto;
	color: #ffffff;
	background-color: #ff4b1e;
	border: 1px solid #ff4b1e;
	transition: .4s;
	cursor: pointer;
}
.entry input[type=submit]:hover {
	opacity: .7;
}
.entry .btn_link {
	margin: 90px auto;
}
@media screen and (max-width: 767px) {
	.entry .text {
		text-align: left;
	}
	.entry .dl_form {
		flex-direction: column;
	}
	.entry .dl_form dt {
		width: 100%;
		padding: 1.5em 0 1em;
		border-bottom: none;
	}
	.entry .dl_form dt span {
		position: static;
		margin-right: 10px;
	}
	.entry .dl_form dd {
		width: 100%;
		padding: 0 0 1.5em 0;
		border-bottom: 1px solid #ff8a52;
	}
	.entry .dl_form dd select.pc_inline {
		max-width: 90%;
	}
}


