/* Explan Section */
#explan {
	padding-top: 20px;
	background-color: var(--white);
}

#explan p {
	font-size: 1.2em;
}
@media screen and (max-width: 700px) {
	#explan p {
		font-size: 1.0em;
	}
}

#explan .start_btn {
	display: block;
	margin: 30px auto;
	width: 50%;
	max-width: 300px;
}

#explan .btn_desc {
	color: var(--gray);
	font-size: 0.8em;
	text-align: center;
}

/* Test Section */
#test {
	display: none;
}

#test .overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	opacity: 0.5;
	z-index: 100;
}

#test .modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	max-width: 600px;
	height: auto;
	background-color: var(--white);
	padding: 20px;
	z-index: 200;
}

#test .modal .top {
	display: flex;
	justify-content: space-between;
}

#test .modal .top div {
	margin-left: 0;
	color: var(--gray);
}

#test .modal .top img {
	margin-right: 0;
	width: 20px;
	height: 20px;
}

#test .modal .title {
	display: flex;
	justify-content: space-between;
	margin-top: 20px;
}

#test .modal .title div:nth-child(1) {
	margin-left: 0;
	font-size: 1.2em;
	font-weight: bold;
}

#test .modal .title div:nth-child(2) {
	margin-right: 0;
}

#test .modal hr {
	border: none;
	border-top: 1px solid var(--gray);
}

#test .modal .test .question {
	margin-bottom: 40px;
}

#test .modal .test .choice {
	margin-bottom: 4px;
	pointer-events: auto;
}

#test .modal .bottom img {
	float: right;
	margin-right: 0;
	width: 120px;
}

/* Result Section */
#result {
	display: none;
	padding-top: 20px;
	background-color: var(--white);
}

#result p {
	font-size: 1.2em;
}
@media screen and (max-width: 700px) {
	#result p {
		font-size: 1.0em;
	}
}

#result .score {
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 1.6em;
	font-weight: bold;
}

#result .share {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 60px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 600px;
}

#result .share img {
	margin-left: 10px;
	margin-right: 10px;
	width: calc(100% - 20px);
}

#result .closing {
	position: relative;
	margin-top: -100px;
}

#result .closing .large_btn {
	display: block;
	position: absolute;
	top: 90px;
	left: 0;
	right: 0;
	margin: auto;
	width: 90%;
	max-width: 600px;
}

#result .closing .link {
	position: absolute;
	top: 250px;
	left: 0;
	right: 0;
	margin: auto;
	width: 300px;
	text-align: center;
}

/* Review Section */
#review {
	display: none;
	background-color: var(--light-yellow);
}

#review .section_border .border {
	top: -47px;
}

#review h2 {
	text-align: left;
}

#review .title {
	margin-top: 40px;
	margin-bottom: 10px;
	font-size: 1.4em;
	font-weight: bold;
}

#review .title .correct {
	margin-left: 1em;
	color: green;
}

#review .title .incorrect {
	margin-left: 1em;
	color: red;
}

#review .link_accent {
	display: block;
	margin: 10px 0;
	text-align: center;
}