/* *************************************************************************
 * ■ お問合せフォーム
 * *************************************************************************/
.contact-table {
	position: relative;
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	border: none;
	line-height: 1;
}

.contact-table tr{ border: none; }

.contact-table tr:nth-child(odd){
	background-color: #eee;
}

.contact-table th,
.contact-table td {
	padding: 0.5em;
	border: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: left;
	vertical-align: middle;
	line-height: 1;
}

.contact-table th{
	width: 16em;
}

.contact-table td{
	width: calc(100% - 16em);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1;
	vertical-align: middle;
}

.contact-table th p {
	padding-left: 4em;
}

.contact-table th.is-reqiured:before {
	position: absolute;
	padding: 4px 9px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	background: #fa0000;
	color: #fff;
	content: '必須';
	line-height: 1;
}

.contact-table p {
	line-height: 1;
	margin-block-end: 0;
}

@media (max-width: 740px) {
	.contact-table {
		width: calc(100% - 1em);
		margin-bottom: 50px;
	}
	.contact-table td:nth-child(odd){
		background-color: #fff;
	}
	.contact-table th,
	.contact-table td {
		display: inline-block;
		width: 100%;
	}

	.contact-table th {
		border-bottom: #ddd dotted 1px;
		display: inline-block;
		width: 100%;
	}

	.contact-submit {
		width: 100%;
		height: 60px;
	}
	.contact-submit input[type='submit'] {
		-webkit-appearance: none;
	}
}

.contact-table textarea,
.contact-table select,
.contact-table input[type='text'],
.contact-table input[type='email'] {
	width: 100% !important;
	margin: 0;
	padding: 4px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 1;
	border-radius: 8px;
	border: 1px solid #333;
	background-color: #fff;
}

.contact-table textarea:hover,
.contact-table select:hover,
.contact-table input[type='text']:hover,
.contact-table input[type='email']:hover,

.contact-table textarea:focus,
.contact-table select:hover,
.contact-table input[type='text']:focus,
.contact-table input[type='email']:focus
{
	background-color: #f7fdd6;
}

.contact-table select,
.contact-table input[type='text'],
.contact-table input[type='email'] {
	height: 46px;
}
.contact-table textarea {
	height: 15em;
}

.contact-submit {
	width: calc(100% - 1em);
	max-width: 640px;
	height: 80px;
	display: block;
	margin: 0 auto;
	background: #fa0000;
	border: none;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 8px !important;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	color: #fff;
	line-height: 1;
	font-weight: 600;
	
}

.contact-submit:hover {
	background-color: pink;
}

.wpcf7-spinner{ height:0; }

span.wpcf7-list-item * {
	display: inline-block;
}


.contact-table span.wpcf7-not-valid-tip {
	font-size: large;
	color: red;
	margin: 0.25em;
}
/****************************************************************************/