@charset "UTF-8";

/* お問合せフォーム */

/* フォント */
#contact form {
	font-size: 87.5%; /* 14px */
}
#contact form input, textarea {
	box-sizing: border-box;
	font-family: inherit; /* 祖先要素の指定を継承 */
	font-size: 100%;
}

/* 幅 */
#contact form>dl,
#contact form>ul,
#contact form>div {
	width: 90%;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	#contact form>dl,
	#contact form>ul,
	#contact form>div {
		width: 100%;
	}
}

/* 文頭説明 */
#contact form .contact_desc {
	padding-bottom: 15px;
	margin-bottom: 30px;
	border-bottom: 1px solid #609486;
}

/* フォーム：項目名 */
#contact form dl dt {
	border-left: 5px solid #56b99f;
	padding-left: 10px;
}
@media screen and (max-width: 768px) {
	#contact form dl dt {
		margin-bottom: 8px;
	}
}
/* フォーム：入力エリア */
#contact form dl dd {
	border-bottom: 1px solid #ccc;
	padding-left: 200px;
	padding-bottom: 15px;
	margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
	#contact form dl dd {
		padding-left: 0;
	}
}
/* フォーム：入力エリア幅 */
#form_company, #form_name, #form_tel, #form_address, #form_email, #form_url, #form_q {
	width: 30em;
	max-width: 90%;
	padding: 10px;
	border: 1px solid #999;
	background: #f2f4f3;
}
#form_q {
	height: 10em;
}
@media screen and (max-width: 768px) {
	#form_company, #form_name, #form_tel, #form_address, #form_email, #form_url, #form_q {
		width: 100%;
		max-width: 100%;
	}
}

/* 必須・任意マーク */
#contact form .req,
#contact form .opt {
	color: #fff;
	padding: 0 5px;
	margin-right: 5px;
}
#contact form .req {
	background: #ec567b;
}
#contact form .opt {
	background: #417ab1;
}

/* 個人情報：同意チェック欄 */
#contact .contact_privacy_chk {
	display: block;
	line-height: 3.5em;
	text-align: center;
	background: #e6f1ee;
	border-top: 1px solid #989193;
	border-bottom: 1px solid #989193;
	margin: 15px 0 50px;
}

/* 送信ボタン */
#contact .form_submit {
	text-align: center;
}
#contact #submit {
	width: 150px;
	line-height: 2em;
	font-size: 150%; /* 24px */
	color: #fff;
	background: #56b99f;
	padding: 5px;
}
