@charset "UTF-8";


#subHeader {
	position: relative;
	margin-bottom: 30px;
}
#subHeader #btn_backtop { 
}


/***********************************
クイズスタート画面
***********************************/
#startBox {
	/* width: 960px; */
	position: relative;
	padding: 5px;
	border-radius: 9px;
	background: #0075be;
	margin-bottom: 70px;
	box-sizing: border-box;
}
#startBox .startbg {
	position:relative;
	background: #fff;
	border-radius: 4px;
}
#startBox .startbg img {
	margin: 1%;
	width: 98%;
}

#startBox a.btn_start {
	display: block;
	cursor: pointer;
	margin: 20px;
}
#startBox a.btn_start img {
	width: 100%;
}



/***********************************
クイズ問題ページ
***********************************/

/*問題部分*/
#drawarea .frame {	
	border: solid 2px #0075be;
	border-radius: 7px;
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
}

#drawarea .frame .heddingbox {
	background: #0075be;
	margin: 0;
	font-size: 18px;
	color: #fff;
	box-sizing: border-box;
	padding: 2px;
	text-align: center;
}
#drawarea .frame .heddingbox .noBox {
	width: 100px;
	display: block;
	background: #fff;
	color: #0075be;
	text-align: center;
	border-radius: 9px;
	margin: 2px auto 5px;
	padding: 6px 0 3px;
}

#questionBox .quizBox {
	margin: 5px;
	font-size: 16px;
	text-align: left;
}
#questionBox .quizBox p {
	display: inline;
	color: #fff;
}
#quizWrapper .btn_choice {
	cursor: pointer;
}


/*選択部分*/
.subContents #questionBox02 {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 20px;
}
.subContents #questionBox02 p img {
	width: 100%;
}
#choicesBox {
	width: 90%;
	text-align: left;
	margin: 20px auto 0;
}
#questionBox02 .choices {
	border: solid 3px #fff;
	border-radius: 11px;
	background: #c47300;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	margin-bottom: 10px;
	overflow: hidden;
}
#questionBox02 .choices a {
	display: block;
	font-weight: bold;
	font-size: 18px;
	color: #fff;
	background: #ff9600;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 4px;
}
#questionBox02 .choices:hover {
	opacity: 0.7;
}

/***********************************
クイズ答えページ
***********************************/

#drawarea #answerWrapper.frame .heddingbox .noBox {
	width: 125px;
	font-size: 60px;
}

#answerWrapper .quizBox {
	margin: 10px 5px;
	font-size: 22px;
}


#drawarea .frame.seikai {
	border: solid 5px #ff9600;
	background: #fffaf2;
}

#drawarea .frame.seikai .heddingbox {
	background: #ff9600;
}
#drawarea #answerWrapper.seikai .heddingbox .noBox {
	color: #ff9600;
}


/*答え部分（男の子）*/
.subContents #answerBox {
	width: 100%; /*830*/
	position: relative;
}
.subContents #answerBox #answerbg {
	position: relative;
	margin: 0 auto 0;
}
.subContents #answerBox #answerbg .view_sm,
.subContents #answerBox #answerbg .view_tub {
	display: none;
}
#answerBox .answer_txt {
	font-size: 20px;
	font-weight: bold;
	color: #F00;
	line-height: 1.5em;
	position: absolute;
	top: 20%;/*50/250*/
	left: 8%;
	width: 80%;
}
.hantei {
	font-size: 28px;
}
.huseikai{
	color: #00F;
}
.seikaiha {
	font-size: 26px;
	font-weight: bold;
	color: #F00;
}
.kiminokotae {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}



/*解説部分*/
.subContents #answerBox02 {
	width: 90%;
	position: relative; /*DWで正常にプレビュー*/
	zoom:1; /*IE6でレイアウト崩れ防止*/
	margin: 20px auto 0;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
}
#answerBox02 img.ans_float_right{
	float: right;
	margin-left: 10px;
	margin-bottom: 20px;	
}

#answerBox02 .left {
	margin-right: 20px;
}
#answerBox02 .right {
}
.subContents .HintBox  {
	font-size: 15px;
	background-color: #06C;
	color: #FFF;
	font-weight: bold;
	background-color: #06C;
	margin-top: 15px;
	color: #FFF;
	padding: 5px;
	line-height: 1.7em;
	-moz-border-radius: 10px;    /* Firefox */
	-webkit-border-radius: 10px; /* Safari,Chrome */
	border-radius: 10px;
	clear: both;
}

.subContents .HintBox p  {
	font-size: 15px;
	color: #FFF;
	font-weight: bold;
	line-height: 1.7em;
	padding-left: 20px;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
}
.subContents .HintBox img {
	display: block;
	margin: 0 auto;
}
.subContents .HintBox a  {
	color: #FFF;
	text-decoration: none;
}




/*下部ボタン*/
.subContents #answerBox03 {
	/* width: 634px; */
	overflow: hidden; /*floatの解除*/
	position: relative; /*DWで正常にプレビュー*/
	zoom:1; /*IE6でレイアウト崩れ防止*/
	margin: 30px auto;
	text-align: center;
}
#answerBox03 .left,
#answerBox03 .right {
	width: 200px;
	/* float: left; */
	margin: 0px auto;
}

#answerBox03 .left img ,
#answerBox03 .right img {
	width: 100%;
}


/***********************************
クイズ処理用
***********************************/
#drawarea{
	position: relative;
}
#startWrapper {
	position: relative;
	top: 0;
	left: 0;
}
#answerWrapper {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
}
#quizWrapper {
	position: absolute;
	display: none;
	top: 0;
	left: 0;
}

/*
========================================
return btn
========================================
*/
.return-btn{
	max-width: 305px;
	width: 81.33vw;
	display: block;
	margin:auto;

  -webkit-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
  background-color: #fff;
  -webkit-box-shadow: #333 0px 10px 10px -10px;
  box-shadow: #333 0px 10px 10px -10px;
  border-radius: 10px;
  border: 2px solid #000;
  padding: 13px 10px 11px;
  text-align: center;
  position: relative;
  color: #000 !important;
}
.return-btn:hover,
.return-btn:active,
.return-btn:focus{
	color: #fff !important;
  background-color: #0070CB;
}
.return-btn__txt{
	font-size: 15px;
	font-weight: bold;
}
.return-btn__arrow{
	position: absolute;
  top: 51%;
  right: 11px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}