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

.hidden-fields-container {
	border: none;
}

body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

/*ContactForm7カスタマイズ*/
table.CF7_table{
	width: 960px;
	margin: 20px auto;
	text-align: left;
	background-color: #ddd;
}

table.CF7_table tr{
	border: 1px solid #ccc;
}

table.CF7_table th , table.CF7_table td {
	padding: 5px 15px;
	color: #555;
}


table.CF7_table th {
	font-weight: normal;
}

table.CF7_table td{
	background-color: #fff;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea {
	border: 1px solid #ccc;
	font-size: 1em;
	padding: 10px;
	border-radius: 6px;
}

.CF7_table ::placeholder {
	color: #999;
}

table.CF7_table td select {
	font-size: 1.2em;
	color: #555;
}

.wpcf7-list-item {
  margin-right: 10px;
}
	
/*「必須」文字*/
.CF7_req{
	background: #f79034;/*オレンジ*/
	margin-left: 10px;
}

/*「任意」文字*/
.CF7_unreq{
	background: #bdbdbd;/*グレー*/
}

/*「必須」「任意」共通*/
.CF7_req , .CF7_unreq{
	font-size: 0.9em;
	padding: 2px 8px;
	color: #fff;
	border-radius: 3px;
	font-weight: bold;
}

/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table th{
	width: auto;/*横幅*/
	background-color: #E4ECF7;/*ブルーグレー*/
	}
}

/* レスポンシブ */
@media screen and (max-width: 768px){
	table.CF7_table{
		margin: 10px;
	width: 90%;
	}
	.CF7_table tr, .CF7_table td, .CF7_table th{
	display: block;
	width: auto;
	line-height:2.5em;
	}
	.CF7_table th{
	background-color:#ebedf5;
	}
	input[type="text"] ,input[type="tel"] , input[type="email"] , textarea {
	width: 90%;
	}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
	background-color:#f79034;/* オレンジ*/
	border:0;
	color:#fff;
	font-size:1.2em;
	font-weight:bold;
	margin:0 auto;
	padding: 10px 60px;
	border-radius: 10px;
}

.wpcf7 input.wpcf7-submit:hover {
	opacity: 0.7;
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}


/* フォーム上部に表示されるエラーメッセージを非表示 */
.screen-reader-response {
    display: none;
}

/* フォーム内エラーメッセージを赤色に指定 */
.wpcf7-not-valid-tip , .wpcf7-response-output {
    color: #e92323;
	font-size: 0.9em;
	margin-left: 20px;
}