#contact_part {
	padding: 0 15px;
}
#contact_part h1 {
	margin: 32px 0;
	text-align: center;
	line-height: 1;
}
#contact_part h1 span {
	font-size: 20px;
}
#contact_part h1 img {
	zoom: .5;
}
#contact_part h1 + p {
	font-size: 11px;
	margin: 0 0 24px;
}
@media screen and (min-width: 768px) {
	#contact_part h1 {
		margin: 64px 0 32px;
		line-height: 1.3;
	}
	#contact_part h1 span {
		font-size: 40px;
	}
	#contact_part h1 img {
		zoom: .76;
	}
	#contact_part h1 + p {
		width: 464px;
		margin: 0 auto 56px;
		font-size: 14px;
	}
}
/*フォーム周りのリセット*/
input, button, textarea, select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
/*フォーム*/
#contact_form {
	margin-bottom: 120px;
}
#contact_form dt {
	margin: 0 0 2px;
	color: #2A0A03;
	font-size: 10px;
}
#contact_form dd {
	margin: 0 0 12px;
}
#contact_form p {
	margin: 5px 0 0;
	color: #666666;
	font-size: 9px;
}
#contact_form input,
#contact_form textarea,
#contact_form select {
	color: #666666;
	transition: all .3s;
}

#contact_part > p {
    margin: 10px auto;
    text-align: center;
}
#contact_form p.errtxt {
    color: #ff0000;
}
#contact_form input[type="text"] {
	width: 55%;
	height: 30px;
	padding: 0 8px;
	margin-right: 2%;
	border: 1px solid #999999;
	font-size: 10px;
}
#contact_form input[type="text"]#name {
	width: 100%;
	margin-right: 0;
}
#contact_form select {
	position: relative;
	top: -1px;
	width: 41%;
	height: 30px;
	padding: 0 8px;
	border: 1px solid #999999;
	font-size: 10px;
	color: #666666;
	background: #ffffff url(../../common/img/contact/select_tri.png) no-repeat;
	background-position: 94% center;
	background-size: 8px;
	cursor: pointer;
}
#contact_form textarea {
	resize: none;
	width: 100%;
	height: 150px;
	padding: 8px;
	border: 1px solid #999999;
	font-size: 10px;
}
#contact_form input:focus,
#contact_form textarea:focus,
#contact_form select:focus {
	border: 1px solid #FFCC33;
}
#contact_form input[type="submit"] {
	width: 100%;
	margin: 20px 0 0;
	padding: 12px;
	color: #FFFFFF;
	font-size: 12px;
	background: #2A0A03;
	transition: all .3s;
}
@media screen and (min-width: 768px) {
	#contact_form {
		margin-left: 120px;
		margin-bottom: 120px;
	}
	#contact_form dl {
		margin: 0 0 30px;
	}
	#contact_form dl::after {
		content: "";
		clear: both;
		display: block;
	}
	#contact_form dt {
		float: left;
		width: 160px;
		padding: 7px 0;
		margin: 0 16px 0 0;
		font-size: 14px;
		text-align: right;
	}
	#contact_form dd {
		float: left;
		width: 400px;
		margin: 0;
	}
	#contact_form p {
		font-size: 11px;
	}
	#contact_form input[type="text"],
	#contact_form select,
	#contact_form textarea {
		font-size: 13px;
	}
	#contact_form input[type="text"],
	#contact_form select {
		height: 32px;
	}
	#contact_form input[type="submit"] {
		width: 400px;
		margin-left: 176px;
	}
	#contact_form input[type="submit"]:hover {
		background: #FF6B9F;
	}
}
#contact_form input[type="radio"] {
    -webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
    margin: 0 5px 0;
}
input[type=radio] {
	display: none;		/* 標準スタイル */
}
.s_label {
	position: relative;		/* ボックスの位置を指定する */
	padding: 0 0 0 42px;	/* ボックス内側の余白を指定する */
}
.s_label:hover:after {
	border-color: #ccc;	/* ボックスの境界線を実線で指定する */
}
.s_label:after,  .s_label:before{
	position: absolute;	/* ボックスの位置を指定する */
	content: "";		/* ボックスのコンテンツ */ 
	display: block;		/* ブロックレベル要素化する */ 
	top: 50%;			/* 上部から配置の基準位置を決める */ 
}
.s_label:after {
	left: 15px;			/* 左から配置の基準位置を決める */ 
	margin-top: -10px;	/* チェック枠の位置 */
	width: 16px;		/* ボックスの横幅を指定する */
	height: 16px;		/* ボックスの高さを指定する */
	border: 2px solid #ccc;	/* ボックスの境界線を実線で指定する */
	border-radius: 50%;		/* ボックスの角丸を指定する */
}
.s_label:before {
	left: 19px;			/* 左から配置の基準位置を決める */ 
	margin-top: -6px;	/* チェックマークの位置 */
	width: 8px;		/* ボックスの横幅を指定する */
	height: 8px;		/* ボックスの高さを指定する */
	background: #2A0A03;/* ボックスの背景色を指定する */
	border-radius: 50%;	/* ボックスの角丸を指定する */
	opacity: 0;			/* 要素を透過指定する */
}
input[type=radio]:checked + .s_label:before {
	opacity: 1;		/* 要素を表示する */
}