@charset "utf-8";
.quiz_area .quiz_area_icon.true {
  position: absolute;
  top: 1%;
  width: 90%;
  color: black;
  font-size: 16px;
  display: none;
  background-color: white;
  font-size: 16px;
  /* text-stroke: 2px #fff; */
}
/* 説明表示するための要素（デフォルト非表示、回答後に一時的に表示） */
.quiz_area_description {
  position: absolute;
  top: 0;
  text-align: left;
  color: white;
  margin: 5%;
  z-index: 9999;
  width: 90%;
  padding: 5px;
  background-color: rgb(0,0,0,0.5);
  display: none;
  font-size: 14px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}
.quiz_area_bg.true26:before {
    font-size: 0px;
  }
.quiz_area_description:before {
  content: '説明：';
  position:relative;
  text-align:center;
  color: white;
  border-radius:5px;
  padding:2px;
  width:100%;
  font-weight:bold;
  background-color:rgb(0,0,0,0.8);
  font-size: 14px;
}
.quiz_area_icon {
  position:absolute;
  z-index:2;
  top: 30%;
  color: white;
  background-color:rgb(0,0,0,0.3);
  display:none;
  font-size: 16px;
}
.quiz_area .quiz_area_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index:0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  color: #fff;
  text-align: center;
  font-size:30px;
  border-bottom-left-radius:10px;
  border-bottom-right-radius:10px;
}
.quiz_area_close {
  padding: 0 10;
  z-index:99999;
  top: 85%;
  width: 100%;
  position: absolute;
  box-sizing: border-box;
  font-size: 16px;
  color: white;
  display:none;
}
.quiz_area .quiz_area_icon.false {
  position: absolute;
  top: 1%;
  width: 90%;
  color: black;
  font-size: 16px;
  display: none;
  background-color: white;
  font-size: 16px;
  /* text-stroke: 2px #fff; */
}

/*表示パターン*/
.quiz_area .quiz_area_description.false,
.quiz_area .quiz_area_close.false,
.quiz_area .quiz_area_icon.true,
.quiz_area .quiz_area_icon.true2,
.quiz_area .quiz_area_icon.true3,
.quiz_area .quiz_area_icon.false {
  display: block;
}

.quiz_question{
  font-size:16px;
  min-height:35px;
  line-height:35px;
  font-family:sans-serif;
  background:#fff;
  border:solid 5px #FF3BB8;
  font-weight:bold;
  color:#111;
  box-shadow: 0px 0px 0px 1px #333 inset;
}
.quiz_remark{
  font-size: 14px;
  min-height:35px;
  line-height:35px;
  font-family:sans-serif;
  background-color:#880000;
  border: solid 5px #FF3BB8;
  border-left-width:80px;
  border-right-width:80px;
  border-bottom-width:0px;
  font-weight:bold;
  color:#fff;
}
/* .falseは不正解（×を表示） */
.quiz_area .quiz_area_icon.true:after {
  content: '正解';
  font-size: 16px;
  display: block;
  position: absolute;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 1;
  top: -23px;
  color: white;
  z-index: 1;
  /* font-family: emoji; */
  background-color:#FF3BB8;
  width: 100%;
}
.quiz_area .quiz_area_icon.false:before {
  content: '正解';
  font-size: 16px;
  display: block;
  position: absolute;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-weight: 1;
  top: -23px;
  color: white;
  z-index: 1;
  /* font-family: emoji; */
  background-color:#FF3BB8;
  width: 100%;
}
.quiz_area .quiz_area_icon.true:before {
  content: '〇';
  color: blue;
  font-size: 300;
  display: block;
  position: absolute;
  opacity: 0.3;
  margin: 0;
  padding: 0;
  left: 50%;
  font-weight: 100;
  z-index: 1;
  transform: translate(-50%,-50%);
  -webkit-transform: translateX(-50%);
  -webkit-text-stroke: 1px #fff;
  animation: none;
}
.bunpocorrect{
  position:absolute;
  top:90%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.quiz_area .quiz_area_icon.false:after {
  content: '×';
  color: red;
  font-size: 200;
  display: block;
  position: absolute;
  opacity: 0.6;
  margin: 0;
  padding: 0;
  left: 50%;
  font-weight: 100;
  z-index: 1;
  transform: translate(-50%,-50%);
  -webkit-transform: translateX(-50%);
  -webkit-text-stroke: 1px #fff;
  animation: none;
}
@keyframes answer {

  0% {
opacity:0;
font-size:150px;
position: fixed;
top: 10px;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
-webkit-transform: translateY(-50%) translateX(-50%);
  }
  25% {
  opacity:0.6;
  font-size:150px;
  position: fixed;
top: 10px;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  }
  60% {
  opacity:0.6;
  font-size:150px;
  position: fixed;
top: 10px;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  }

  100% {
  opacity:0;
  font-size:150px;
  position: fixed;
top: -10px;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  }
}

@keyframes answer2 {

  0% {
opacity:0;
font-size:150px;
position: fixed;
top: 0px;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
-webkit-transform: translateY(-50%) translateX(-50%);
  }
  25% {
  opacity:0.6;
  font-size:150px;
  position: fixed;
  top: 0px;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  }
  60% {
  opacity:0.6;
  font-size:150px;
  position: fixed;
top: 0px;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  }

  100% {
  opacity:0;
  font-size:150px;
  position: fixed;
top: 25px;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  }
}

@media screen and (max-width: 960px) {
  .maintable{
width: 100%;
border-collapse:separate;
border-spacing: 0;
box-sizing: border-box;
  }
}
@media screen and (min-width: 960px) {
  .maintable{
width: 973px;
border-collapse:separate;
border-spacing: 0;
box-sizing: border-box;
  }
}

.maintable th{
  text-align: center;
  font-size:16px;
  color:white;
  border-radius:0px;
  background: #006633;
}

.maintable td{
  text-align: left;
  vertical-align:top;
  border-left: 1px solid #a8b7c5;
  border-bottom: 1px solid #a8b7c5;
  border-top:none;
  box-shadow: 0px -3px 5px 1px #eee inset;
  width: auto;
  padding: 10px 0;
  box-sizing: border-box;
}

.table{
  width: auto;
  border-collapse:separate;
  font-size:16px;
  border-spacing: 0;
  border-left: 1px solid #3c6690;
  border-right: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  box-sizing: border-box;
}
.table th{
  text-align: center;
  color:white;
  background: linear-gradient(#006633,#004d00);
  width: auto;
  padding: 0;
  font-size:16px;  border-left: 1px solid #3c6690;
  border-right: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  box-sizing: border-box;
}

.table td{
  text-align: left;
  color: #000000;
  font-size:16px;
  border-left: 1px solid #3c6690;
  border-right: 1px solid #3c6690;
  border-top: 1px solid #3c6690;
  border-bottom: 1px solid #3c6690;
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
  box-sizing: border-box;
}
.titleback{
border:none;
color:white;
max-width:973px;
background:linear-gradient(90deg, #FF3BB8 0%, #FF66B8 100%)
}
.quiz-sound {
  display:none;
}

.point {
position: relative;
max-width:930px;
padding: 0.5em 1em;
border: solid 3px #ffcc00;
text-align: left;
}
.point .box-title {
position: absolute;
display: inline-block;
top: -27px;
left: -3px;
padding: 0 9px;
height: 25px;
line-height: 25px;
font-size: 17px;
background: #ffcc00;
font-weight: bold;
border-radius: 5px 5px 0 0;
}
.point p {
margin: 0;
padding: 0;
}
.point .check {
padding: 0.5em 1em;
border: double 5px #006633;
}
.point .check p {
margin: 0;
padding: 0;
}
h2{
  font-size:18px;
}
h3{
  font-size:16px;
}
