@charset "utf-8";

/*------------------------------------------

	BASE
	
-------------------------------------------*/

header.navi{
	display: flex;
	justify-content: space-between;
	padding: 10px;
}

.brandset{
	flex-basis: 40%;
}

.quizset{
	flex-basis: 45%;
}

main{
	background-color: rgb(218 0 92);
	padding: 35px 0 50px;
}

.quiz_box{
	width: 80%;
	margin: 0 auto 80px;
}

.quiz_title{
	width: 100%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: rgb(30 35 128);
	padding: 15px;
	text-align: center;
	color:#fff;
	font-size: 2.5rem;
	font-weight: 700;
}

.quiz_sentence{
	width: 100%;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;
	background-color: #fff;
	color: #333;
	padding: 40px 20px;
	font-size: 2rem;
}

.answer_box{
	width: 80%;
	margin: auto;
}

.answer_box p{
	width: 100%;
	border-radius: 10px;
	background-color: #fff;
	text-align: left;
	margin-bottom: 20px;
	font-size: 2.3rem;
	font-weight: bold;
	position: relative;
	padding-left: 7rem;
}

.answer_box p.tokuten{
	font-size: 2.2rem;
	padding: 18px;
	color: #1E2380;
	text-align: center;
}

.answer_box p span{
	background-color: blue;
	border-radius: 100px;
	width: 46px;
	font-size: 3rem;
	text-align: center;
	display: inline-block;
	position: absolute;
    left: 20px;	
}

.answer_box p span.co2{
	top:30px;
}

.answer_box p.answer_A span{
	background-color: #03A1FF;
}
.answer_box p.answer_B span{
	background-color: #FFAB03;
}
.answer_box p.answer_C span{
	background-color: #04BC04;
}

.answer_box p a{
	color: #333;
	display: block;
	padding: 18px;
}
	
.answer_box p span{
	color: #FFF;
}

.answer_box p.choice{
	background-color: #1E2380;
	color: #fff;
	padding: 18px;
	padding-left: 9.5rem;
}

.answer_box p.nochoice{
	opacity: 0.6;
	padding: 18px;
	padding-left: 9.5rem;
}

.answer_image{
	width: 55%;
	margin: auto;
}

.again, .next{
	width: 80%;
	margin: auto;
	border-radius: 10px;
	background-color: #fff;
	text-align: center;
	margin-bottom: 20px;
	font-size: 3rem;
	font-weight: bold;
	position: relative;
}

.again a, .next a{
	display: block;
	padding: 18px;
}

.next{
	background-color: #1E2380;
}

.next a{
	color: #fff;
	text-align: left;
}

.next span{
	background-color: #fff;
	border-radius: 100px;
	width: 46px;
	display: inline-block;
	position: absolute;
    right: 20px;
	top:22%;
	color: #1E2380;
}

.quiz_sentence span{
	font-weight: bold;
	color: #1E2380;
}

.quiz_sentence span sub{
	font-weight: bold;
}

sub { 
  vertical-align: sub; 
}