@charset "UTF-8";
@keyframes loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
html {
	overflow: hidden;
	width: 100%;
	height: 100%;
}
body {
	background-color: #cdb07f;
	overflow: hidden;
	width: 100%;
	height: 100%;
	position: relative;
}
.contents {
	position: relative;
	width: 1920px;
	height: 1080px;
	transform-origin: center center;
	left: 50%;
	top: 50%;
	transform: translate3d(-50%, -50%, 0);
	transition-duration: 0.5s;
	transition-property: opacity, visibility;
}
.step {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition-duration: 1s;
	transition-property: opacity, visibility;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
}
.step.isShow {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}
.step_base {}
.step_base > img {
	pointer-events: none;
	display: block;
}
.step_btnList {
	list-style: none;
	position: absolute;
	z-index: 1;
	top: 31.8%;
	display: flex;
	flex-wrap: wrap;
	right: 2.1%;
	width: 66.7%;
}
.step_btnList > li {
	width: 50%;
	padding: 0px 30px;
	box-sizing: border-box;
}
.step_btnList > li:nth-child(n+3) {
	margin-top: 50px;
}
.step_btn {
	display: block;
	width: 100%;
	height: 317px;
	background-color: rgba(255, 255, 255, 0);
	border: none;
	color: rgba(255, 255, 255, 0);
	border-radius: 30px;
	filter: blur(10px);
	transition-duration: .3s;
	transition-property: background-color, color;
}
.step_btn:hover {
	background-color: rgba(255, 255, 255, 0.20);
}
.step_backBtn {
	position: absolute;
	width: 325px;
	height: 140px;
	border: none;
	bottom: 2.5%;
	left: 1.6%;
	background-color: rgba(255, 255, 255, 0);
	color: rgba(255, 255, 255, 0);
}
.step_backBtn-top {
	left: auto;
	right: 1.7%;
	width: 260px;
}
.answer {
	position: absolute;
	top: 270px;
	left: 130px;
	width: 834px;
	height: 640px;
	font-size: 37px;
	font-weight: bold;
	line-height: 1.7;
	overflow: auto;
	scrollbar-width: auto;
	scrollbar-color: #888 rgba(255, 255, 255, 0);
}
.answer::-webkit-scrollbar {
	width: 12px;
}
.answer::-webkit-scrollbar-track {
	background-color: rgba(255, 255, 255, 0);
}
.answer::-webkit-scrollbar-thumb {
	background-color: #888;
	border-radius: 6px;
}
.answer::-webkit-scrollbar-thumb:hover {
	background-color: #aaa;
}
.answer_text {}
.answer_loading {
	animation-name: loading;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: steps(8);
	width: 80px;
	height: 80px;
	fill: #cf3f20;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	position: absolute;
	z-index: 2;
	display: none;
}
.answer_loading.isShow {
	display: block;
}
.step_recBtn {
	display: block;
	position: absolute;
	z-index: 0;
	left: 7%;
	width: 572px;
	height: 516px;
	background-color: rgba(255, 255, 255, 0);
	bottom: 14%;
	border-radius: 25px;
	color: rgba(255, 255, 255, 0);
	border: none;
	transition-duration: .3s;
	transition-property: opacity, visibility;
}
.step_recBtn.isHidden {
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}
.step_stopBtn {
	display: block;
	position: absolute;
	z-index: 1;
	left: 7%;
	width: 572px;
	height: 516px;
	background-color: rgba(255, 255, 255, 0);
	bottom: 14%;
	border-radius: 25px;
	border: none;
	font-family: inherit;
	line-height: 1;
	color: #fff;
	font-weight: bold;
	font-size: 118px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition-duration: .3s;
	transition-property: opacity, visibility;
}
.step_stopBtn.isShow {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}
.step_stopBtn::before {
	content: "";
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 100px;
	height: 100px;
	background-color: #fff;
	position: relative;
	z-index: 3;
	border-radius: 5px;
}
.step_stopBtn::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	bottom: 40px;
	left: 21px;
	width: 530px;
	height: 450px;
	background-color: #cf3f20;
}
.step_stopBtn_text {
	display: block;
	position: relative;
	z-index: 3;
	font-weight: bold;
	margin-top: 44px;
	transform: translateY(40px);
}
