/* クイズ出題ボックスの設定 */
#quiz_box{
	position: relative;
}
/* クイズタイトル */
#quiz_title{
    background: #efefef;
    padding: 5px;
    font-size: 1.8rem;
    color: #6DB030;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 3rem;
	letter-spacing: 2px;
}
/* オープニング　メッセージ　フォントなどは変更可 */
#quiz_msg{
	margin: 40px auto;
/*	height: 200px;*/
	font-size: 18px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
}
/* エンディング　メッセージ　変更可 */
span.end_tk {
	color: red;
	font-size: 18px;
}
/*--   正解・不正解画像の表示    表示位置(top,left,width)は自由に変えてください --*/
#dsp0, #dsp1 {
	position: absolute;
	top: 80px;
	left: 0px;
	width: 100%;
	margin: 0; padding: 0;
	z-index: 11;
	display:none;
	text-align: center;
}
#dsp0 img, #dsp1 img {
	opacity: 0.6;
}
#quiz_question {
    font-size: 1.6rem;
    padding:15px;
}
#webstudy #quiz_question h3 {
    font-size: 3rem;
    font-weight: bold;
    color: #6DB030;
    background: none;
    text-align: center;
}
#webstudy #quiz_question h3 small {
	color: #777;
}
#webstudy #quiz_question p {
	margin: 0 auto;
}
#quiz_answer {
	display: flex;
	justify-content: center;
}
#quiz_answer div {
	padding: 20px;
	margin: 20px;
    background: #ddd;
   	text-align: center;
   	border-radius: 20px;
	display: flex;
}
#quiz_answer div span,.msg_tokuten strong {
    color: #6DB030;
    font-size: 5rem;
    font-weight: bold;
}
#webstudy #quiz_start p,#webstudy #quiz_msg p a {
	display: inline-block;
    padding: 10px 15px 10px 25px;
    color: #FFF;
    background: url(/themes/tool@site/webstudy/images/arrow-xs-w.png) #6DB030 no-repeat 13px center;
    border: solid 3px #FFF;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    text-decoration: none;
}


.kaisetsu {
	margin-top: 20px;
	display: none;
}
.kaisetsu h4 {
	vertical-align: middle;
}
.kaisetsu h4 span {
	font-size: 2.5rem;
}
.kaisetsu > div {
    border: solid 2px #efefef;
	padding: 15px;
	margin-bottom: 15px;
}
#webstudy .kaisetsu div h3 {
	margin-top: 0px;
	letter-spacing: 2px;
}
#webstudy .next_q {
	display: inline-block;
	padding: 10px 15px;
	background: #6DB030;
	color: #FFF;
    text-decoration: none;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}
@media (min-width: 544px) {
	#webstudy #quiz_question p {
		max-width: 70%;
	}
	#dsp0 img, #dsp1 img {
		width: 50% !important;
	}
}
@media (max-width: 543px) {
	#webstudy #quiz_question p {
		max-width: 100%;
	}
		#dsp0 img, #dsp1 img {
		width: 80%;
	}
}
