@charset "utf-8";
/* --------------------------------------------------------- */
/* メールフォーム共通 */
/* --------------------------------------------------------- */
.contact-tel {
	font-size: 1.875rem;
}
.box.form {
	background-color: #F7F7F7;
	padding: 4rem 0;
}
.tbl-contact {
	width: 100%;
	max-width: 800px;
	margin: auto;
}
.tbl-contact th, .tbl-contact td {
	font-weight: normal;
	text-align: left;
	padding: 1rem;
	line-height: 1.2em;
}
.tbl-contact th {
	position: relative;
	padding: 1.5rem 3rem 0 0;
	text-align: right;
	width: 35%;
}
.tbl-contact.confirm th {
	padding-top: 1rem;
}
.form .hissu {
	position: absolute;
	display: inline-block;
	right: 0;
	color: #FFF;
	background-color: #E15959;
	font-size: 0.812rem;
	border-radius: 20px;
	padding: 0.3rem 0.4rem;
	margin-left: 1rem;
	line-height: 1em;
}
.form input:nth-of-type(2), .form input:nth-of-type(3) {
	margin-top: 0.5rem;
}
.form input[type="text"], .form textarea {
	background-color: #FFF;
	border: 1px solid rgba(0, 0, 0, 1.00);
	padding: 0.3rem 0.5rem;
	width: 300px;
	line-height: 1.5em;
	font-family: selif;
	box-sizing: border-box;
}
.form textarea {
	width: 100%;
}
.form select {
	-webkit-appearance: auto;
	background-color: #FFF;
	border: 1px solid rgba(0, 0, 0, 1.00);
	padding: 0.4rem 1rem;
	font-family: selif;
}
.form input[type=checkbox] {
	transform: scale(1.5);
	margin: 0 6px 0 0;
}
.wrap-check {
	list-style: none;
	display: flex;
}
.wrap-check li:first-child {
	padding-right: 1rem;
}
input.small {
	max-width: 150px;
}
.btn.submit {
	width: 340px;
	color: #FFF;
	background-color: #000;
	border: none;
}
.btn.submit::after {
	background-image: url("/assets/img/common/arrow-white.svg");
}
.btn.back {
	width: 340px;
	padding: 0.5rem 1rem 0.5rem 1.5rem
}
.btn.back::after {
	background-image: none;
}
.btn.back::before {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background-image: url(/assets/img/common/arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0.5rem;
	transform: rotate(-180deg);
}
@media print, screen and (max-width:900px) {
	.tbl-contact th {
		width: 30%;
	}
}
@media print, screen and (max-width:600px) {
	.tbl-contact th {
		display: block;
		width: 100%;
		padding: 0.5rem;
		text-align: left;
	}
	.tbl-contact td {
		display: block;
		width: 100%;
		padding: 0.5rem 1rem 2rem;
	}
	.tbl-contact .hissu {
		position: static;
	}
	.form input[type="text"], .form textarea {
		width: 100%;
		padding: 0.5rem 1rem;
	}
}