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

	FORM

--------------------------------------------------*/
#form .container {
	padding: 20px;
	padding-top: calc(40px + 40 * ((100vw - 375px) / 1545));
	padding-bottom: calc(50px + 40 * ((100vw - 375px) / 1545));
	border-radius: 40px;
	background: #FCFBF9;
}
#form .container .title_common2 {margin-bottom: calc(40px + 10 * ((100vw - 375px) / 1545));}
#form .container .title_common2 h2 {margin-bottom: calc(30px + 10 * ((100vw - 375px) / 1545));}
#form .container .title_common2 p {text-align: center;}
#form .container .title_common2 p a {text-decoration: underline;}
#form form {max-width: 800px;margin: 0 auto;text-align: center;}
#form table {margin-bottom: calc(40px + 10 * ((100vw - 375px) / 1545));}
#form table tr th {width: 240px;padding-top: 10px;vertical-align: top;}
#form table tr th p {display: flex;align-items: center;gap: calc(10px + 10 * ((100vw - 375px) / 1545));}
#form table tr th p span {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 10px 3px;
	border-radius: 5px;
	background: #F66C02;
	color: #fff;
	font-size: calc(12px + 3 * ((100vw - 375px) / 1545));
	text-align: center;
}
#form table tr td {display: block;margin-bottom: 20px;}
#form table tr td.flex {display: flex;align-items: center;gap: 20px;}
#form table tr:last-child td {margin-bottom: 0;}
#form input[type="text"],
#form input[type="tel"],
#form input[type="email"],
#form .stbox select,
#form textarea {
	width: 100%;
	height: 45px;
	padding: 0 20px;
	border: 1px solid #707070;
	background: #fff;
	font-size: calc(14px + 2 * ((100vw - 375px) / 1545));
	cursor: pointer;
	resize: vertical;
}
#form textarea {height: auto;padding: 10px 20px;}
::placeholder {color: #D5CCCA;}
#form .stbox {position: relative;width: 100%;max-width: 268px;}
#form .stbox.age {max-width: 100px;}
#form .stbox::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 15px;
    width: 0;
    height: 0;
    border-top: 10px solid #707070;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
	border-radius: 2px;
    pointer-events: none;
}
.radio_flex {display: flex;flex-wrap: wrap;align-items: center;margin-bottom: calc(10px + 10 * ((100vw - 375px) / 1545));}
.radio_flex .rbox {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px calc(20px + 30 * ((100vw - 375px) / 1545));
	margin-right: calc(10px + 10 * ((100vw - 375px) / 1545));
}
.radio_flex .rbox .wpcf7-list-item {margin: 0 !important;}
.radio_flex .rbox label input[type='radio'] {display: none;position: absolute;opacity: 0;}
.radio_flex .rbox label span {display: flex;align-items: center;cursor: pointer;}
.radio_flex .rbox label span::before {
	content: '';
	display: inline-block;
	position: relative;
	top: 0;
	width: 18px;
	height: 18px;
	margin-right: 10px;
	border: 1px solid #707070;
	border-radius: 50%;
	background: #fff;
	text-align: center;
	vertical-align: top;
	cursor: pointer;
	box-sizing: border-box;
	transition: all 250ms ease;
}
.radio_flex .rbox label input[type='radio']:checked + span::before {box-shadow: inset 0 0 0 3px #fff;background: #F66C02;}
.radio_flex .rbox label input[type='radio']:focus + span:before {outline: none;}
.radio_flex .rbox label input[type='radio']:disabled + span:before {
	box-shadow: inset 0 0 0 4px #fff;
	border-color: #fff;
	background: #fff;
}
.radio_flex .rbox label input[type='radio'] + span:empty:before {margin-right: 0;}
.radio_flex small {font-size: calc(10px + 3 * ((100vw - 375px) / 1545));line-height: 1.4;}
#form .privacy_wrap {
	height: 300px;
	margin-bottom: 20px;
	padding: 20px;
	border: 1px solid #707070;
	overflow-y: scroll;
	background: #fff;
}
#form .privacy_wrap p.txtR {text-align: right;}
#form .privacy_wrap ol {margin: 20px 0 20px 20px;}
#form .privacy_wrap ol li {margin-bottom: 20px;list-style-type: decimal;}
#form .privacy_wrap ol li:last-child {margin-bottom: 0;}
#form .privacy_wrap ol li p {margin-bottom: 10px;}
#form .privacy_wrap ol li p:last-child {margin-bottom: 0;}
#form .check_wrap {margin-bottom: calc(40px + 10 * ((100vw - 375px) / 1545));text-align: center;}
#form .check_wrap p.text {margin-bottom: 25px;text-align: center;}
#form .check_wrap p.text a {text-decoration: underline;}
#form .check_wrap .check_item {display: inline-flex;justify-content: center;align-items: center;position: relative;}
#form .check_wrap .checkLabel .wpcf7-list-item {margin: 0 !important;}
#form .check_wrap .checkLabel label {cursor: pointer;}
#form .check_wrap .checkLabel input {display: none;}
#form .check_wrap .checkLabel input + span {display: inline-block;position: relative;padding-left: 35px;}
#form .check_wrap .checkLabel input + span::after,
#form .check_wrap .checkLabel input + span::before {content: '';display: block;position: absolute;top: 0;}
#form .check_wrap .checkLabel input + span::before {
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 26px;
	height: 26px;
	border: 1px solid #707070;
	background: #fff;
}
#form .check_wrap .checkLabel input + span::after {
	display: none;
	position: absolute;
	left: 7px;
	top: 2px;
	transform: rotate(135deg);
	width: 13px;
	height: 7.5px;
	border-top: 3px solid #F66C02;
	border-right: 3px solid #F66C02;
}
#form .check_wrap .checkLabel input:checked + span::after {display: block;}
#form .submit {
	display: block;
	position: relative;
	z-index: 1;
	margin: 0 auto;
	padding: 25px 6em;
	border: none;
	border-radius: 40px;
	background: #F66C02;
	color: #fff;
	font-weight: bold;
	font-size: calc(20px + 6 * ((100vw - 375px) / 1545));
	line-height: 1;
	letter-spacing: .03em;
	text-align: center;
	transition: all .3s ease-out;
	user-select: none;
}
#form .submit:hover {transform: translateY(-10px);}
@media only screen and ( max-width : 767px ) {
	#form .container {padding: 30px 20px;}
	#form table tr th {display: block;width: 100%;margin-bottom: 10px;padding-top: 0;}
	#form table tr td {display: block;}
}
/*--------------------------------------------------

　   ERROR

--------------------------------------------------*/
#form.form {display: block;}
#form.form .inner {text-align: center;}
#form.form .wrap {text-align: center;}
#form.form h4 {text-align: center;line-height: 1.7;margin-bottom: 40px;}
#form.form .button_box {text-align: center;}
#form.form table tr td {
	padding: 20px;
	border: none;
	border-radius: 5px;
	background: #F5F5F5;
	font-size: calc(14px + 2 * ((100vw - 375px) / 1545));
}
#form.error .errorbox {margin-bottom: 80px;}
#form.error .error_messe {color: #FF0000;text-align: center;}
#form.complete .wrap p {margin-bottom: 40px;text-align: center;}
@media only screen and ( max-width : 1024px ) {
	#form.form {padding-top: 150px;}
}