@charset "UTF-8";

/* ヒーローエリア */
.hero {
	background-image: url(../img/hero-contact.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	height: 554px;
}

/* CONTACT */
.contact-form {
	padding: 60px 30px;
}

.contact-form .container {
	display: block;
	max-width: 1200px;
	margin: 0 auto;
}

.contact-form .head {
	border-bottom: 1px solid #707070;
	margin-bottom: 30px;
}

.contact-form h1 {
	text-align: center;
	font-size: 24px;
	font-family: 'Noto Serif JP', serif;
	padding-bottom: 30px;
}

.contact-form p {
	margin-bottom: 40px;
}

.contact-form p span {
	font-size: 14px;
}

.contact-form dl dt {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.contact-form dl dt span {
	display: block;
}

.contact-form dl dt span.req {
	background: #004c26;
	color: #fff;
	padding: 3px 20px;
	white-space: nowrap;
	margin-right: 70px;
}

.contact-form dl dd input,
.contact-form dl dd textarea {
	background: #eeeeee;
	border: 0;
	width: 100%;
	margin-bottom: 10px;
}

.contact-form dl dd input {
	height: 30px;
}

.contact-form dl dd textarea {
	height: 190px;
}

.contact-form input.submit-btn {
	background: #004c26;
	color: #fff;
	border: none;
	padding: 10px 40px;
	cursor: pointer;
}

.contact-form div.btn {
	text-align: center;
}

img.image_add {
	display: block;
	width: 100%;
	max-width: 167px;
	height: auto;
}

/* 大きい画面用の設定 */
@media(min-width:768px) {
	.contact-form dl {
	padding: 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	}
	.contact-form dl.last {
	margin: 25px 0;
	}
	.contact-form dl dt {
		width: 260px;
	}
	.contact-form dl dt span.req {
	padding: 3px 20px;
	margin-right: 0px;
	}
	.contact-form dl dd input,
	.contact-form dl dd textarea {
	width: 880px;
	}



}