@charset "utf-8";
/*--------------------------------------------------

	ENTRY

--------------------------------------------------*/
#entry .inner {max-width: 957px;}
#entry table {margin-bottom: clamp(40px, calc(40px + 20 * ((100vw - 375px) / 1545)), 60px);}
#entry table tr th {
	width: 190px;
	padding-bottom: 15px;
	font-size: clamp(14px, calc(14px + 2 * ((100vw - 375px) / 1545)), 16px);
	letter-spacing: .1em;
	vertical-align: middle;
}
#entry table tr.v_top th {padding-top: 15px;vertical-align: top;}
#entry table tr th span {
	margin-left: 15px;
	padding: 2px 4px;
	border-radius: 2px;
	background: #0E6981;
	color: #fff;
	font-size: clamp(12px, calc(12px + 2 * ((100vw - 375px) / 1545)), 14px);
}
#entry table tr:last-child th {padding-bottom: 50px;}
#entry table tr td {display: block;margin-bottom: 15px;}
#entry table tr:last-child td {margin-bottom: 0;}
#entry input[type="text"],
#entry input[type="tel"],
#entry input[type="email"],
.stbox select,.stbox-area select,
#entry textarea {
	width: 100%;
	height: 50px;
	padding: 0 20px;
	border: 1px solid #F5F5F5;
	border-radius: 5px;
	background: #F5F5F5;
	color: #333;
	font-size: clamp(14px, calc(14px + 2 * ((100vw - 375px) / 1545)), 16px);
	letter-spacing: .1em;
	cursor: pointer;
	resize: vertical;
}
#entry textarea {height: auto;margin-bottom: 10px;padding: 20px;}
::placeholder {color: #AAA;}
.stbox {position: relative;max-width: 120px;}
.stbox::after {
	content: '';
	position: absolute;
	top: 20px;
	right: 15px;
	width: 0;
	height: 0;
	border-top: 10px solid #333;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	pointer-events: none;
}
.stbox-area {position: relative;max-width: 250px;}
.stbox-area::after {
	content: '';
	position: absolute;
	top: 20px;
	right: 15px;
	width: 0;
	height: 0;
	border-top: 10px solid #333;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	pointer-events: none;
}
.radio {margin-right: clamp(10px, calc(10px + 50 * ((100vw - 375px) / 1545)), 60px);}
input[type="radio"] {appearance: none;display: none;opacity: 0;position: absolute;width: 1px;height: 1px;}
input[type="radio"] + span {display: inline-block;position: relative;padding: 20px 0 20px 36px;vertical-align: middle;cursor: pointer;}
input[type="radio"] + span::before,
input[type="radio"] + span::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 10px auto 0;
	border-radius: 50%;
	box-sizing: border-box;
}
input[type="radio"] + span::before {left: 9px;width: 20px;height: 20px;border: 1px solid #707070;background: #fff;}
input[type="radio"] + span::after {opacity: 0;left: 14px;width: 10px;height: 10px;background: #707070;}
input[type="radio"]:checked + span::before {border: 2px solid #0E6981;}
input[type="radio"]:checked + span::after {opacity: 1;background: #0E6981;}
.checkbox-container {position: relative;margin-left: 10px;}
.checkbox-wrapper {display: flex;align-items: flex-start;}
.error-message-container {margin-top: 10px;}
.error-message {display: block;color: #ff0000;font-size: 14px;}
.check {display: none;}
.check + label {
	position: relative;
	padding-left: 25px;
	font-size: clamp(13px, calc(13px + 2 * ((100vw - 375px) / 1545)), 15px);
	letter-spacing: .1em;
	cursor: pointer;
	user-select: none;
}
.check + label::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 50%;
	transform: translate(0, 50%);
    width: 20px;
    height: 20px;
    border: 1px solid #707070;
	background: #fff;
}
.check:checked + label::before {background: #fff;}
.check:checked + label::after {
	content: "";
    border-radius: 0;
	display: block;
	position: absolute;
	left: 5px;
	bottom: 37%;
	width: 10px;
	height: 5px;
	border-left: 2px solid #0E6981;
	border-bottom: 2px solid #0E6981;
	transform: rotate(-45deg);
}
.check + label a {margin-left: 10px;text-decoration: underline;}
#entry .submit {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	padding: clamp(15px, calc(15px + 5 * ((100vw - 375px) / 1545)), 20px);
	overflow: hidden;
	border: 1px solid #0E6981;
	border-radius: 3em;
	background: #0E6981;
	color: #fff;
	font-size: clamp(16px, calc(16px + 4 * ((100vw - 375px) / 1545)), 20px);
	text-align: center;
	letter-spacing: .1em;
	transition: all .5s ease-out;
}
#entry .submit:hover {background-position: 99% 50%;color: #0E6981;}
#entry .submit::before {
	content: '';
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	z-index: -5;
	transform-origin: left top;
	transform: scale(0, 1);
	background: #fff;
	transition: transform .3s;
}
#entry .submit:hover::before {transform-origin: left top;transform: scale(1, 1);}
@media only screen and ( max-width : 767px ) {
	#entry table tr th {display: block;width: 100%;padding-bottom: 10px;}
	#entry table tr:last-child th {padding-bottom: 10px;}
	#entry input[type="text"],
	#entry input[type="tel"],
	#entry input[type="email"],
	.stbox select {height: 40px;}
	.stbox::after {top: 16px;right: 14px;}
	input[type="radio"] + span {padding: 10px 0 10px 36px;}
}
/*--------------------------------------------------

　   ERROR

--------------------------------------------------*/
#entry.form {display: block;}
#entry.form h4 {text-align: center;line-height: 1.7;margin-bottom: 40px;}
#entry.form td {padding: 20px;border-radius: .7em;background: #F5F5F5;}
#entry.form .button_box {display: flex;justify-content: center;gap: 20px;}
#entry.form .button_box .submit {max-width: 400px;margin: 0;}
#entry.error .errorbox {margin-bottom: 80px;}
#entry.error .error_messe {color: #C41000;text-align: center;}
#entry.complete .container {text-align: center;}
#entry.complete .container p {margin-bottom: 40px;text-align: center;}
#entry.complete .container a {display: inline-block;width: auto;max-width: 100%;padding: 20px 30px;}
@media only screen and ( max-width : 1024px ) {
	#entry.form {margin-top: 70px;}
}