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

/*==============================*/
/* お問い合わせ */
/*==============================*/
@media (min-width: 600px){
	.form dl{
		overflow: hidden;
	}
	.form dl:last-child{
		position: relative;
	}
	.form dl:last-child:before{
		position:absolute;
		content: "";
		width: 100%;
		height: 1px;
		background: #DDDDDD;
		bottom: 0;
		left: 0;
	}
	.form dl:last-child:after{
		position:absolute;
		content: "";
		width: 215px;
		height: 1px;
		background: #74C7E6;
		bottom: 0;
		left: 0;
	}
	.form dl dt{
		position: relative;
		float: left;
		width: 215px;
		padding: 20px 0;
		border-top: 1px solid #74C7E6;
	}
	.form dl dd{
		float: left;
		width: 495px;
		padding: 20px 0 20px 10px ;
		border-top: 1px solid #ddd;
	}
	.form dl dd ul{
		overflow: hidden;
	}
	.form dl dd ul li{
		float: left;
		margin-right: 10px;
	}
}
@media (max-width: 600px) {
	.form dl{
		position: relative;
		padding: 30px 0;
	}
	.form dl:before{
		position:absolute;
		content: "";
		width: 100%;
		height: 1px;
		background: #DDDDDD;
		top: 0;
		left: 0;
	}
	.form dl:after{
		position:absolute;
		content: "";
		width: 50px;
		height: 1px;
		background: #6fbc50;
		top: 0;
		left: 0;
	}
	.form dl dt{
		margin-bottom: 10px;
		font-weight: bold;
	}
}
.form dl dt span{
	position: absolute;
	right:10px;
	padding: 1px 10px 1px 10px;
	background: #FF3B3B;
	border-radius: 3px;
	color: #FFFFFF;
	font-size: 11px;
}

	@media (max-width: 600px) {
		.form dl dt span{
			right:30px;
		}
	}

/*==============================*/
/* フォーム設定 */
/*==============================*/
@media (min-width: 600px) {
.form select{
	height: 25px;
	padding: 0 5px;
	border-radius: 3px;
	border: 1px solid #ccc;
	color: #444;
}

.form textarea {
	padding: 0 5px;
	border-radius: 3px;
	border: 1px solid #ccc;
	color: #444;
}
.form input[type="text"],
.form input[type="tel"],
.form input[type="email"]{
	height: 25px;
	padding: 0 5px;
	border-radius: 3px;
	border: 1px solid #ccc;
	position: relative;
	top: 0px;
}
.search input[type="text"],
.search select{
	width: 100%;
}
}
@media (max-width: 600px) {
.form select,
.form textarea {
	width: 99%;
	height: 40px;
	border-radius: 3px;
	border: 1px solid #ccc;
	color: #444;
}
.form input[type="text"],
.form input[type="email"]{
	width: 100%;
	height: 40px;
	padding: 0 5px;
	border-radius: 3px;
	border: 1px solid #ccc;
	position: relative;
	top: 0px;
}
.form .year select{
	width: 20%;
}
.form .year select:first-child{
	width: 30%;
}
}

.form .error {
	display: block;
	color: #ff3b3b;
}

.btn a,
.btn button{
	margin-top: 30px;
	min-height: 38px;
	display: inline-block;
	color: #fff;
	background: #19A2D5;
	padding: 8px 70px;
	border: none;
	border-radius: 5px;
	font-size: 12px;
	box-sizing: border-box;
}
.btn a:hover,
.btn button:hover{
	background: #376783;
	transition: .3s;
	cursor: pointer;
}