.form-dl dt {
	color: #1C2349;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	font-size: 2.3rem;
	font-weight: bold;
	margin-bottom: 1.3rem;
}

.form-dl dt small {
	font-size: 1.5rem;
	font-weight: 400;
	align-self: flex-end;
}

.form-dl dd {
	font-size: 2rem;
	margin: 0 0 4.5rem;
}

.form-label {
	background-color: #0055B8;
	border-radius: 2rem;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-left: 1.5rem;
	height: 3.2rem;
	width: 6.3rem;
}

.form-radio-list {
	margin-top: 4.4rem;
}

.form-radio-list li {
	margin-bottom: 1.3rem;
}

.form-radio-list li:last-child {
	margin-bottom: 0;
}

.form-footer {
	display: flex;
	gap: 3rem;
	margin-top: 3.5rem;
}

.form-footer a,
.form-footer button {
	border: none;
	background-color: #0055B8;
	border-radius: 0.4rem;
	cursor: pointer;
	color: var(--color-white);
	font-weight: bold;
	font-size: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 7rem;
}

.radio-custom {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	position: relative;
}

.radio-custom input {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
}

.radio-custom input:checked ~ .radio-custom__marker::after {
	background: #00296C;
	background: linear-gradient(0deg, rgb(0, 41, 108) 0%, rgb(3, 79, 203) 100%);
}

.radio-custom__label {
	font-size: 2rem;
	font-weight: 500;
}

.radio-custom__marker {
	border: 1px solid #707070;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 2.7rem;
	width: 2.7rem;
	position: relative;
}

.radio-custom__marker::after {
	content: "";
	background: #808080;
	background: linear-gradient(0deg, rgb(128, 128, 128) 0%, rgb(255, 255, 255) 100%);
	border-radius: 50%;
	width: 1.3rem;
	aspect-ratio: 1;
}

.checkbox-custom {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	position: relative;
}

.checkbox-custom input {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
}

.checkbox-custom input:checked ~ .checkbox-custom__marker {
	background-color: #0055B8;
	border-color: #0055B8;
}

.checkbox-custom input:checked ~ .checkbox-custom__marker::after {
	opacity: 1;
}

.checkbox-custom__label {
	font-size: 2rem;
}

.checkbox-custom__marker {
	border: 1px solid #707070;
	border-radius: 0.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 3.5rem;
	width: 3.5rem;
	position: relative;
}

.checkbox-custom__marker::after {
	content: "";
	opacity: 0;
	border-left: 0.2rem solid #fff;
	border-bottom: 0.2rem solid #fff;
	height: 0.8rem;
	width: 1.6rem;
	position: absolute;
	left: 50%;
	top: 40%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.form-policy a {
	color: #46BDCA;
}

.p-complete {
	text-align: center;
}

.p-complete__ttl {
	font-size: 3.6rem;
	margin-bottom: 2rem;
}

.p-complete__txt {
	font-size: 2.4rem;
	line-height: 2;
}

label.error {
	display: block;
	color: #f00;
	margin-top: 1rem;
}

@media (min-width: 769px) {

.form-footer a,
.form-footer button {
	font-size: 2rem;
}

.p-complete__ttl {
	font-size: 2.2rem;
}

.p-complete__txt {
	font-size: 1.8rem;
}

}

