.area-form .privacy-check [type="checkbox"],
.area-form .privacy-check [type="radio"] {
    visibility: hidden;
    width: 1px;
    position: absolute;
}
.area-form .privacy-check {
	display: flex;
	justify-content: center;
	margin: 3rem 0 3rem;
}
.area-form .privacy-check label {
	display: inline-block;
	cursor: pointer;
}
.area-form .privacy-check label span {
	position: relative;
	font-size: 1.6rem;
}
.area-form .privacy-check label span a {
	text-decoration: underline;
}
.area-form .privacy-check label span::before {
	content: "";
	display: inline-block;
	position: absolute;
	box-sizing: border-box;
	top: 0.2rem;
	left: -3rem;
	width: 2rem;
	height: 2rem;
	border: 0.3rem solid #C7C7C7;
	border-radius: 0.5rem;
	background: #fff;
}
.area-form .privacy-check label span::after {
	content: "";
	display: inline-block;
	position: absolute;
	box-sizing: border-box;
	top: 1rem;
	left: -2.3rem;
	width: 0.7rem;
	height: 1.2rem;
	border-bottom: 0.2rem solid #707070;
	border-right: 0.2rem solid #707070;
	transform: translateY(-50%) rotate(45deg);
	opacity: 0;
}
.area-form .privacy-check label input:checked + span::after {
	opacity: 1;
}
.area-form .privacy-check p {
	font-size: 1.5rem;
}
.area-form .btn-wrap.input-back {
	text-align: center;
}
.area-form input.send-back {
	width: unset;
	margin: 50px 0 0 0;
	background: #FFF;
	border: unset;
	font-family: unset;
	color: #059CAE;
	text-decoration: underline;
	cursor: pointer;
}