#formWrap {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	color: #555;
	line-height: 1.8;
	font-size: 16px;
}

table.formTable {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	background-color: #fff;
}

table.formTable td,
table.formTable th {
	border: 1px solid #e7e7e7;
	padding: 14px;
}

table.formTable th {
	width: 28%;
	font-weight: bold;
	background: var(--accent-color2);
	color: #fff;
	text-align: left;
	font-size: 16px;
	letter-spacing: 0.04em;
}

.formTable input[type="text"],
.formTable input[type="email"],
.formTable input[type="tel"],
.formTable input[type="date"],
.formTable select,
.formTable textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-size: 16px;
	background: #fff;
}

.formTable textarea {
	min-height: 160px;
	line-height: 1.7;
}

.formTable label {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	line-height: 1.6;
}

.formTable label input[type="radio"] {
	margin-top: 0.45em;
	flex-shrink: 0;
}

.formTable select {
	padding-right: 50px;
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 14px;
}

form input[type="submit"] {
	color: #fff;
	border: none;
	padding: 14px 40px;
	background-color: var(--accent-color2);
	display: inline-block;
	margin: 0 auto;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

form input[type="reset"],
form input[type="button"] {
	color: #fff;
	border: none;
	padding: 14px 40px;
	background-color: #ccc;
	font-size: 16px;
}

input[type="button"] {
	color: #fff;
	border: none;
	padding: 14px 40px;
	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;
}

@media only screen and (max-width: 767px) {
	#formWrap {
		width: 100%;
		font-size: 16px;
	}

	table.formTable th,
	table.formTable td {
		width: auto;
		display: block;
		box-sizing: border-box;
	}

	table.formTable th {
		border-bottom: 0;
	}

	.formTable input[type="text"],
	.formTable input[type="email"],
	.formTable input[type="tel"],
	.formTable input[type="date"],
	.formTable select,
	.formTable textarea {
		width: 100%;
		padding: 10px;
		font-size: 16px;
		display: block;
	}

	input[type="date"] {
		min-height: 44px;
		line-height: 44px;
		box-sizing: border-box;
	}

	form input[type="submit"],
	form input[type="reset"],
	form input[type="button"] {
		display: block;
		width: 100%;
		min-height: 46px;
		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: 800px;
	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;
	}
}