#formWrap {
	width:100%;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;

}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:var(--main-color);
	color: #FFF;
	text-align:left;
}
form input[type="submit"] {
	color:#FFF;
	border: none;
	padding: 10px 30px;
	background-color: var(--main-color);
	display: inline-block;; /* ブロック要素にする */
	margin: 0 auto;
}
form input[type="reset"], form input[type="button"] {
	color:#FFF;
	border: none;
	padding: 10px 30px;
	background-color: #ccc;
}
input[type="button"] {
	color:#FFF;
	border: none;
	padding: 10px 30px;
	background-color: #838383;
}
/* reCAPTCHA v3　表示位置 */
.grecaptcha-badge{
	margin-bottom: 70px;
	z-index:9999;
}

/*リンク アンダーライン*/
a.m-unli{
	text-decoration:underline;
	color:#454545;
}
a.m-unli:hover{
	color:#c5c5c5;
}


/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
	#formWrap {
		width:100%;
		margin:0 auto;
		font-size:16px;
	}
	table.formTable th, table.formTable td {
		width:auto;
		display:block;
	}
	table.formTable th {
		margin-top:0px;
		border-bottom:0;
	}
	form select,[type="text"], form textarea,form [type="tel"],form [type="email"] {
		width:95%;
		padding:5px;
		font-size:110%;
		display:block;
	}  
	form input[type="submit"], form input[type="reset"], form input[type="button"] {
		display:block;
		/*width:50%;*/
		height:40px;
		font-size: 16px;
		margin-bottom: 10px;
	}

}

/* TELバナー CONTACTページ用レイアウト */

.tel_bnr-contact{
	display: grid;
	grid-template-columns: 1fr 0.3fr;
	grid-template-rows: 1fr;
	grid-column-gap: 50px;
	grid-row-gap: 10px;
	max-width: 700px;
	margin: 0 auto;
}
@media only screen and (max-width: 767px) {
	.tel_bnr-contact{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}

/* ================================
   single（見た目：白い枠だけ）
================================ */
.tel_bnr-single{
	background: #ffffff85;
	border: 1px solid #e2e8f0;
	border-radius: 10px;
	padding: 20px 40px;
	box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* ================================
   ボタン制御
================================ */

.tel_bnr-single .btn-call{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	justify-self: end; /* grid内で右寄せ */
}

/* ================================
   ボタンデザイン
================================ */
.btn-call{
	background: var(--main-color);
	color: #fff;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: bold;
	font-size: 15px;
	white-space: nowrap;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
	transition: background 0.2s, transform 0.1s;
	width: auto;          /* auto列を押し広げない */
	max-width: none;
	align-self: center;
}

.btn-call:hover{
	background: var(--accent-color2);
	transform: translateY(-1px);
}

/* SP：押しやすくフル幅 */
@media only screen and (max-width: 767px) {
	.btn-call{
		width: 100%;
		box-sizing: border-box;
	}
	.tel_bnr-single .btn-call{
		justify-self: center; /* grid内で中央寄せ */
	}
	.tel_bnr-single{
		background: #ffffffa6;
		padding: 20px 20px;
	}
}