@charset "UTF-8";
/* CSS Document */

.mv, 
.mv__title {
	margin-bottom: 0;
}
.check__progress {
	width: calc(100% / 11 * 1);
	height: 1px;
	margin: 1em 0 2em;
	background: #90a898;
	transition: width 0.5s;
}
.check__title {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75em;
	margin-bottom: 1.5em;
	text-align: left;
	font-size: 1.5em;
}
.check__title-num {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	white-space: nowrap;
	width: 3.5em;
	line-height: 3.5em;
	border-radius: 50%;
	font-family: 'NOW-MM', serif;
	background: #aabcb0;
}
.check__title-num span:last-of-type {
	font-size: 1.5em;
}
.check__qes {
	max-width: 370px;
	margin: 0 auto;
}
.check__qes li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1em;
	line-height: 1.5;
	background: #ebebeb;
	cursor: pointer;
}
.check__qes li::before {
	content: '';
	position: absolute;
	display: block;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	border: solid 1px #fff;
}
.check__qes li + li {
	margin-top: 10px;
}
.check__button {
	position: relative;
	padding: 2em 0;
}
.check__button::after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.check__button.on::after {
	content: none;
}
.check__button a {
	display: inline-block;
	overflow: hidden;
	text-indent: -999px;
	width: 5em;
	height: 5em;
	border-radius: 50%;
	background: #ebebeb url("../img/bg_arrow_fwd_xl.png") no-repeat 50% 55%;
	background-size: 40px auto;
}
.check__qes li.on, 
.check__button.on a {
	background-color: #aabcb0;
}
.siteFooter {
	padding-bottom: 20px;
}

@media screen and (max-width: 767px) {

	.mv__lead {
		margin-top: 10px;
		font-size: 1em;
	}
	.check__title {
		font-size: 1.25em;
	}
	.check__qes li {
		font-size: min(14px, 3.733vw);
	}
	.check__button {
		padding: 2em 0 0;
	}
	.check__button a {
		
	}

}

@media screen and (max-width: 350px) {

	.check__title {
		background-size: contain;
	}

}


.check__outer {
	position: relative;
	overflow-x: hidden;
}
.check__question {
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	transition: left 0.5s, opacity 0.5s;
	opacity: 0;
}
.check__question.on {
	position: relative;
	left: 0;
	opacity: 1;
}
.check__question.off {
	left: -100%;
}




