/* contact form-------------------*/

:root{
	--form-radius: 4px;
}

#form{
	position: relative;
	overflow: hidden;
	width: 100%;
	padding-top: 5%
}
#form .tbl-form{
	text-align: left;
	width: 100%;
}
#form p{
	font-size: 13px;
	line-height: 2;
}
#form p a{
	text-decoration: underline;
}
.tbl-form th .must,
.tbl-form th .optional{
	padding: 4px 6px;
	margin-right: 10px;
	font-size: 12px;
	font-weight: normal;
	border: 1px solid;
	border-radius: 2px;
}
.tbl-form th .must{
	border-color: var(--main-pink);
	color: var(--main-pink);
}
.tbl-form th .optional{
	border-color: #999;
	color: #999;
}
.tbl-form th,
.tbl-form td{
	display: block;
}
.tbl-form th{
	margin: 0 0 3%;
}
.tbl-form td{
	margin-bottom: 4%;
}

/* radio-btn */
.tbl-form td label{
	display: inline-block;
	padding: 24px 30px;
	margin: 0 10px 10px 0;
	border-radius: var(--form-radius);
	background-color: #fef8f9;
}
.tbl-form td label input{
	width: auto;
	border: 0;
	padding: 0;
	margin-right: 6px;
}

.tbl-form td input,
.tbl-form td textarea{
	width: 100%;
	padding: 20px;
	border-radius: var(--form-radius);
	border: solid 1px #bbb;
}
.acceptance-btn label{
	display: inline-block;
	margin: 3% 0 5%;
	padding: 3% 5%;
	font-size: 120%;
	border-radius: var(--form-radius);
	background-color: #eee;
}
.acceptance-btn label span{
	padding-left: 8px;
}
.send-btn{
	width: 100%;
	height: 80px;
	margin: 0 auto;
	font-size: 120%;
	font-weight: bold;
	letter-spacing: 0.2em;
	border-radius: var(--form-radius);
	border: 4px solid;
	border-color: var(--main-pink);
	color: var(--main-pink);
	background-color: #fff;
}

/* プレースホルダー */
::-webkit-input-placeholder{
	color: #ccc;
	font-weight: normal;
}
:-moz-placeholder{
	color: #ccc;
	font-weight: normal;
}
:-ms-input-placeholder{
	color: #ccc;
	font-weight: normal;
}
::placeholder{
	color: #ccc;
	font-weight: normal;
}
/* エラー */
.screen-reader-response{
	display: none;
}
span.wpcf7-not-valid-tip,
.wpcf7 span.wpcf7-not-valid-tip,
.wpcf7-response-output,
.wpcf7-validation-errors{
	display: block;
	color: red;
	margin: 1% 0;
	padding: 0;
	font-size: 90%;
	background-color: #ffeeee;
	line-height: var(--p-height);
}

@media screen and (max-width: 960px){
}
@media screen and (max-width: 650px){
	#form{
		padding-top: 10%
	}
	#form p{
		font-size: 11px;
		line-height: var(--p-height);
	}
	.tbl-form th .must,
	.tbl-form th .optional{
		margin-right: 2%;
	}
	.tbl-form th{
		margin: 0 0 5%;
	}
	.tbl-form td{
		margin-bottom: 8%;
	}
	/* radio-btn */
	.tbl-form td label{
		padding: 18px 22px;
	}
	
	.tbl-form td input,
	.tbl-form td textarea{
		padding: 5%;
	}
	.acceptance-btn label{
		padding: 5%;
		font-size: 12px;
	}
	.send-btn{
		height: 70px;
		font-size: 14px;
	}
}