<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

.form_box {
	display: flex;
	flex-flow: column;
	justify-content: center;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 5px 1px rgb(0 0 0 / 10%);
	padding: 40px;
	margin: 0 auto;
}

.form_title {
	margin: 30px 0;
}

.form_title h2 {
	font-size: 3rem;
	line-height: 1.5;
	text-align: center;
	margin: 0;
}

.form_box h3 {
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.5;
	margin: 0 0 10px;
}

.form_box h3 + div {
	color: #ff0000;
	text-align: center;
	margin: 0 0 30px;
}

.form_box table {
	width: 100%;
	margin: 0 0 30px;
}

.form_box table tr th,
.form_box table tr td {
	width: auto;
	text-align: left;
	font-weight: normal;
	border: 0;
	padding: 20px 0;
}

.form_box table tr th {
	width: 30%;
}

.form_box table tr th span {
	color: #fff;
	white-space: nowrap;
	border-radius: 5px;
	background: #d9534f;
	padding: 5px;
	margin: 0 10px 0 0;
}

.form_box table tr th &gt; div {
	width: 100%;
	display: flex;
	align-items: center;
	line-height: 1.5;
}

.form_box label {
	line-height: 1.5;
}

.form_box input[type="text"],
.form_box input[type="email"],
.form_box input[type="tel"],
.form_box textarea,
.form_box select {
	width: 100%;
}

.form_box input.short {
	max-width: 200px;
}

.form_box input,
.form_box textarea,
.form_box select {
	font-family: revert;
	background: #f9f9f9;
	border: 1px solid #ececec;
	border-radius: 5px;
	padding: 10px;
}

.form_box textarea {
	resize: vertical;
}

.form_box p.error_messe {
	color: #ff0000;
}

.form_box &gt; p.front {
	text-align: center;
	margin: 0 0 30px;
}

.form_box &gt; p input {
	width: 100%;
	max-width: 300px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: bold;
	background: #d9534f;
	border: none;
	border-radius: 5px;
	box-shadow: 0 2px 3px 0 rgb(0 0 0 / 20%);
	position: relative;
	cursor: pointer;
	padding: 0 10px;
	margin: 0 auto;
	transition: 0.3s;
}

.form_box &gt; p input.back {
	color: #fff;
	background: #999;
}

.form_box &gt; p input:hover {
	opacity: 0.3;
}

.form_box .columns {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.form_box table.kakunin_table tr th,
.form_box table.kakunin_table tr td {
	border: 1px solid #ccc;
	padding: 20px;
}

.form_box table.kakunin_table tr th {
	font-weight: bold;
	background: #eee;
}

.form_box table.kakunin_table + p {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
}


@media screen and (max-width:1024px) {

	.form_box {
		padding: 20px 20px 40px;
	}

	.form_box table tr {
		display: flex;
		flex-flow: column;
	}

	.form_box table tr th {
		width: 100%;
		padding: 20px 0 0;
	}

	.form_box input.short {
		max-width: 100%;
	}

}

@media screen and (max-width:767px) {

	.form_box .columns {
		flex-flow: column;
	}
}
</pre></body></html>