/* -------------------------------------------------------	 */
/* 				Contact Form 7								 */
/* -------------------------------------------------------	 */
article .wpcf7{
	margin-top:1em;
}
article .wpcf7 table{
	width:100%;
	border:solid 1px #999;
	border-spacing:1px;
}
article .wpcf7 table p{
	margin-bottom:0;
	font-weight:normal;
}
article .wpcf7 table th, article .wpcf7 table td{
	box-sizing:border-box;
	text-align:left;
	padding:7px 13px;
}
article .wpcf7 table td{
	background:none !important;
}

article .wpcf7 table th{
	background-color:#e7e7e7;
	border-bottom:dotted 1px #999;
}

/* ラベル */
article .wpcf7 th{
	text-align:right;
	vertical-align:top;
	width:26%;
	color:var(--color_text_base);
}
/* 必須表示 */
article .wpcf7 th span{
	margin-left:10px;
	font-size:12px;
	background-color:#ff0000;
	padding:3px 6px;
	border-radius:5px;
	color:#ffffff;
}
/* 入力欄 */
article .wpcf7 table input,
article .wpcf7 table textarea,
article .wpcf7 table select{
	padding:10px;
	box-sizing:border-box;
	border:solid 1px var(--color_grid);
	border-radius:2px;
	font-size:14px;
	width:100%;
}
article .wpcf7 table input,
article .wpcf7 table textarea{
	width:100%;
}
/* 入力エラー */
.wpcf7-not-valid-tip{
	font-weight:bold;
	color:#f00;
}
/* 一番上のエラーメッセージは表示しない */
article .wpcf7 .screen-reader-response{
	display:none;
}
/* 送信ボタン */
article .wpcf7 input.wpcf7-submit{
	border:none;
	display:block;
	width:40%;
	margin:10px auto;
	cursor:pointer;
	padding:10px 20px;
	color:#fff;
	background-color:#dd5310;
	font-size:18px;
	border-radius:2px;
	font-weight:bold;
	border-bottom:5px solid #9d3b0b;
}
/* 送信エラー */
.wpcf7-response-output{
	text-align:center;
	font-weight:bold;
	color:#f00;
}


/* --------------------------------------------------------------------------------------------------------	 */
/* 					SP版(640px以下での表示)																	 */
/* --------------------------------------------------------------------------------------------------------	 */
@media (max-width:640px){

	.wpcf7 table th, .wpcf7 table td{
		display:block;
		width:100%;
		box-sizing:border-box;
		text-align:left;
	}

}

/* --------------------------------------------------------------------------------------------------------	 */
/* 					PC版(641px以上での表示)																	 */
/* --------------------------------------------------------------------------------------------------------	 */
@media (min-width:641px){

	article .wpcf7 table{
		border:none;
	}
	article .wpcf7 table th, article .wpcf7 table td{
		border-bottom:none;
	}
	article .wpcf7 table th p{
		font-size:16px;
	}

	/* 送信ボタン */
	article .wpcf7 input.wpcf7-submit{
		width:30%;
	}
}