@charset "UTF-8";
header {z-index: 11;}
#quizContent {
  background: #002764;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 750px){
  #quizContent {
    padding: 15% 0 0 0;
  }
}
@media screen and (max-width: 749.99px){
  #quizContent {
    padding: 25% 0 20% 0;
  }
}

/* quiz utility */
.center {text-align: center;}
.m-center {margin: auto;}
.left {text-align: left;}
.right {text-align: right;}

img.block {display: block;}
.w100 { width: 100% !important; display: block;}
.w100px { width: 100px !important; display: block;}
.wrap1000 { margin: auto; max-width: 1000px; width: 100%; }
@media screen and (max-width: 749px) {
  .wrap1000 { padding: 0 15px; }
}
.wrap1200 {
  margin: auto;
  max-width: 1200px;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .wrap1200 { padding: 0 15px;}
  .wrap-sp { width: calc(100% - 30px); }
}
.bg_white { background: #FFF !important; }
.bg_silver { background: #DBDBDB !important; }
.bg_gray { background: #696969 !important; }
.bg_indigo { background: #002764 !important;}
@media screen and (min-width: 750px) {
  .bg_half-01 {
    background: linear-gradient(90deg, #F6F7F8 0, #F6F7F8 50%, #FFF 50%, #FFF 100%);
  }
}
@media screen and (max-width: 749px) {
  .bg_half-01 {
    background: #F6F7F8;
  }
}

.txt_white { color: #FFF !important; }
.txt_black { color: #333333 !important; }
.txt_indigo { color: #002764 !important; }
.txt_pink { color: #E50065 !important; }

.border_indigo {
  border: 1px solid #002764;
  border-radius: 5px;
  padding: 10px 15px;
}

.btn {
  margin: auto;
  font-size: 2.4rem;
  font-weight: 700;
  background: #E50065;
  color: #FFF;
  width: 220px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: 0.5s;
}
@media screen and (max-width: 749px) {
  .btn {
    font-size: 1.8rem;
  }
}
.btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #FFF;
  box-sizing: border-box;
  transition: 0.5s;
}
.btn.target::before {
  content: "";
  width: 16px;
  height: 9px;
  background: url("../img/quiz/icon_target.svg");
  background-size: 100% 100%;
  position: absolute;
  right: 9px;
  top: 9px;
}
@media screen and (min-width: 750px) {
  .btn:hover {
    color: #E50065;
    z-index: 1;
  }
  .btn:hover::after {
    background: #FFF;
    z-index: -1;
  }
  .btn:hover.target::before {
    content: "";
    background: url("../img/quiz/icon_target_pink.svg");
    background-size: 100% 100%;
  }
}
rt {
  font-size: 1.0rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(3px) scale(0.8);
  font-family: "游ゴシック", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", sans-serif;
}
@-moz-document url-prefix() {
  rt {
    transform: translateY(6px) scale(0.7);
  }
}
@media all and (-ms-high-contrast: none) {
  rt {
    transform: translateY(-2px) scale(0.8);
  }
}

.fadeTypeOpacity {
  opacity: 0;
}

.fadeOpacity {
  animation-name: fadeInOpacity;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  visibility: visible !important;
}

@keyframes fadeInOpacity {
  to {
    opacity: 1;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
  animation-fill-mode: both;
  animation-duration: 0.8s;
  animation-delay: 0.5s;
  visibility: visible !important;
}

@keyframes fadeInUp {
  from {
    transform: translateY(25px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeSlip {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mt3 {
  display: block;
  margin-top: 3px !important;
}

.mt5 {
  display: block;
  margin-top: 5px !important;
}

.mt10 {
  display: block;
  margin-top: 10px !important;
}
@media screen and (max-width: 749px) {
  .mt10 {
    margin-top: 5px !important;
  }
}

.mt15 {
  display: block;
  margin-top: 15px !important;
}
@media screen and (max-width: 749px) {
  .mt15 {
    margin-top: 10px !important;
  }
}

.mt20 {
  display: block;
  margin-top: 20px !important;
}
@media screen and (max-width: 749px) {
  .mt20 {
    margin-top: 10px !important;
  }
}

.mt25 {
  display: block;
  margin-top: 25px !important;
}
@media screen and (max-width: 749px) {
  .mt25 {
    margin-top: 15px !important;
  }
}

.mt30 {
  display: block;
  margin-top: 30px !important;
}
@media screen and (max-width: 749px) {
  .mt30 {
    margin-top: 15px !important;
  }
}

.mt35 {
  display: block;
  margin-top: 35px !important;
}
@media screen and (max-width: 749px) {
  .mt35 {
    margin-top: 15px !important;
  }
}

.mt40 {
  display: block;
  margin-top: 40px !important;
}
@media screen and (max-width: 749px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.mt40 {
  display: block;
  margin-top: 40px !important;
}
@media screen and (max-width: 749px) {
  .mt40 {
    margin-top: 20px !important;
  }
}

.mt50 {
  display: block;
  margin-top: 50px !important;
}
@media screen and (max-width: 749px) {
  .mt50 {
    margin-top: 25px !important;
  }
}

.mt60 {
  display: block;
  margin-top: 60px !important;
}
@media screen and (max-width: 749px) {
  .mt60 {
    margin-top: 30px !important;
  }
}

.mt70 {
  display: block;
  margin-top: 70px !important;
}
@media screen and (max-width: 749px) {
  .mt70 {
    margin-top: 35px !important;
  }
}

.mt80 {
  display: block;
  margin-top: 80px !important;
}
@media screen and (max-width: 749px) {
  .mt80 {
    margin-top: 40px !important;
  }
}

.mt90 {
  display: block;
  margin-top: 90px !important;
}
@media screen and (max-width: 749px) {
  .mt90 {
    margin-top: 45px !important;
  }
}

.mt100 {
  display: block;
  margin-top: 100px !important;
}
@media screen and (max-width: 749px) {
  .mt100 {
    margin-top: 50px !important;
  }
}

.mr20 {
  margin-right: 20px;
}
@media screen and (max-width: 749px) {
  .mr20 {
    margin-right: 0px;
  }
}

.ml {
  margin-left: auto;
}

@media screen and (max-width: 749px) {
  .sp-mt20 {
    margin-top: 20px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt35 {
    margin-top: 35px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt75 {
    margin-top: 75px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-mt125 {
    margin-top: 125px !important;
  }
}

@media screen and (max-width: 749px) {
  .sp-p20 {
    padding: 20px;
  }
}

.max430px {
  max-width: 430px;
  margin: auto;
}

.max375px {
  max-width: 375px;
  margin: auto;
}

.max395px {
  max-width: 395px;
  margin: auto;
}

.max320px {
  max-width: 320px;
  margin: auto;
}

.max300px {
  max-width: 300px;
  margin: auto;
}

.max265px {
  max-width: 265px;
  margin: auto;
}

.max205px {
  max-width: 205px;
  margin: auto;
}

.weight400 {
  font-weight: 400 !important;
}

.storyCopy {
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
  display: block;
  width: 100%;
  text-align: center;
}

/* ================== */
/* confirm */
.confirmBase {
  display: none;
  background: rgba(0, 39, 100, 0.8);
  height: 100vh;
  width: 100%;
  z-index: 200;
  position: fixed;
  overflow: scroll;
}
@media screen and (min-width: 750px) {
  .confirmBase {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: visible;
  }
}
.confirmBox {
  color: #002764;
  border: 5px solid #002764;
  background: #FFF;
  width: 700px;
  margin: 200px auto;
  padding: 50px 60px 30px;
}

@media screen and (max-width: 749px) {
  .confirmBox {
    width: calc(100% - 40px);
    margin: 40px auto;
    padding: 40px 15px;
  }
}
.confirmBox_text {
  text-align: center;
  font-size: 2.6rem;
}
@media screen and (max-width: 749px) {
  .confirmBox_text {
    font-size: 1.8rem;
  }
}
.confirmBox_btn {
  font-size: 1.8rem;
  font-weight: 700;
  background: #E50065;
  color: #FFF;
  width: 190px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 45px 10px 0;
  cursor: pointer;
  transition: 0.5s;
}
.confirmBox_btnWrap {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .confirmBox_btn {
    width: 150px;
    height: 40px;
  }
}
.confirmBox_btn:hover {
  background: #FFF;
  color: #E50065;
  border: 3px solid #E50065;
}

/* --- Para Diarog --- */
.paraDialogWrap {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  height: 100vh;
  width: 100%;
  z-index: 200;
  position: fixed;
  overflow: scroll;
}
.paraDialogBox {
  border: 5px solid #002764;
  background: #FFF;
  width: 700px;
  margin: 50px auto;
  padding: 50px 60px 52px;
}
@media screen and (max-width: 749px) {
  .paraDialogBox {
    border: 3px solid #002764;
    width: calc(100% - 40px);
    margin: 40px auto;
    padding: 40px 25px 125px;
  }
}
.paraDialogBoxInner {
  border: 5px solid #002764;
  border-radius: 10px;
  padding: 30px 40px;
  color: #002764;
  margin: 30px 0 0;
}
@media screen and (max-width: 749px) {
  .paraDialogBoxInner {
    border: 3px solid #002764;
    padding: 30px 25px;
  }
}
.paraDialogBoxInner::after {
  content: "";
  width: 47px;
  height: 40px;
  background: url("../img/quiz/answer/serif.svg");
  background-size: 100% 100%;
  left: 85px;
  bottom: -40px;
  position: absolute;
}
@media screen and (max-width: 749px) {
  .paraDialogBoxInner::after {
    width: 27px;
    height: 23px;
    left: 25px;
    bottom: -23px;
  }
}
.paraDialogBoxClose {
  font-size: 2.4rem;
  font-weight: 700;
  background: #E50065;
  color: #FFF;
  width: 220px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 55px auto 0;
  cursor: pointer;
  text-align: center;
  line-height: 1.5;
  background: url("../img/quiz/btn/btn_paraclose_1.png");
  background-size: 100% 100%;
  transition: 0.5s;
}
.paraDialogBoxClose:hover {
  background: url("../img/quiz/btn/btn_paraclose_2.png");
  background-size: 100% 100%;
}
.paraDialogBoxImage {
  position: absolute;
}
.paraDialogBoxImage-l {
  width: 185px;
  left: 10px;
  bottom: -170px;
}
@media screen and (max-width: 749px) {
  .paraDialogBoxImage-l {
    width: 80px;
    bottom: -15px;
    left: -5px;
  }
}
.paraDialogBoxImage-r {
  width: 317px;
  right: -90px;
  bottom: -190px;
}
@media screen and (max-width: 749px) {
  .paraDialogBoxImage-r {
    width: 140px;
    bottom: -15px;
    right: -10px;
  }
}
.paraDialog_title {
  font-size: 3.6rem;
  font-weight: 900;
  color: #002764;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 749px) {
  .paraDialog_title {
    font-size: 2.2rem;
  }
}
.paraDialog_title::after {
  content: "";
  display: block;
  background: url("../img/quiz/note.png");
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  top: -10px;
}
@media screen and (min-width: 750px) {
  .paraDialog_title::after {
    width: 100px;
    height: 141px;
  }
}
@media screen and (max-width: 749px) {
  .paraDialog_title::after {
    width: 65px;
    height: 91px;
  }
}
.paraDialog_ques {
  color: #002764;
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  margin: 55px 0 0;
  text-align: left;
}
@media screen and (min-width: 750px) {
  .paraDialog_ques {
    padding-left: 100px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 749px) {
  .paraDialog_ques {
    font-size: 1.6rem;
    text-align: left;
    justify-content: flex-start;
    margin: 35px auto 0;
  }
}
.paraDialog_ques::before {
  content: "";
  color: #FFF;
  font-size: 2.4rem;
  width: 80px;
  height: 70px;
  background: url("../img/quiz/quiz_no_pink_1.png");
  background-size: 80px 70px;
  display: block;
  margin: auto;
}
@media screen and (min-width: 750px) {
  .paraDialog_ques::before {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
.paraDialog_ans {
  color: #002764;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 55px 0 0;
}
@media screen and (min-width: 750px) {
  .paraDialog_ans {
    line-height: 1.3;
    height: 80px;
    border-radius: 5px;
    border: 5px solid #E50065;
    margin: 55px 0 0;
    box-sizing: content-box;
  }
}
@media screen and (max-width: 749px) {
  .paraDialog_ans {
    font-size: 1.6rem;
    margin: 35px 0 0;
  }
}
.paraDialog_ans::before {
  content: "";
}
@media screen and (min-width: 750px) {
  .paraDialog_ans::before {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    background: url("../img/quiz/answer_title_text.png");
    background-size: 100% 100%;
    z-index: 1;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 749px) {
  .paraDialog_ans::before {
    margin: 0 70px 10px;
    color: #FFF;
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 81px;
    height: 70px;
    background: url("../img/quiz/answer_title.png");
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 750px) {
  .paraDialog_ans::after {
    content: "";
    background: #E50065;
    height: 100%;
    width: 71px;
    position: absolute;
    left: 0;
    top: 0;
  }
}


/* --- answers --- */
.answerBase {
  display: none;
  background: rgba(0, 39, 100, 0.8);
  height: 100vh;
  width: 100%;
  z-index: 200;
  position: fixed;
  overflow: scroll;
}
@media screen and (max-width: 749.99px){
  .answerBase {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 750px) {
  .answerBase {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.answerBox {
  border: 5px solid #002764;
  background: #FFF;
}
@media screen and (min-width: 750px) {
  .answerBox {
    width: 750px;
    margin: 50px auto;
    padding: 80px 60px 50px;
  }
}
@media screen and (max-width: 749px) {
  .answerBox {
    width: calc(100% - 40px);
    margin: 40px auto;
    padding: 40px 25px 125px;
    border: 3px solid #002764;
  }
}
.answerBox_correct {
  width: 203px;
  height: 86px;
  color: #FFF;
  border-radius: 7px;
  font-size: 3.6rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media screen and (max-width: 749px) {
  .answerBox_correct {
    font-size: 2.8rem;
    height: 60px;
  }
}
.answerBox_correct-yes {
  background: #E50065;
}
.answerBox_correct-yes[data-num="1"]::after {
  content: "";
  width: 101px;
  height: 168px;
  background: url("../img/quiz/answer_yes.png");
  background-size: 100% 100%;
  position: absolute;
  right: -125px;
  top: -40px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-yes[data-num="1"]::after {
    width: 84px;
    height: 139px;
    right: -90px;
  }
}
.answerBox_correct-yes[data-num="2"]::after {
  content: "";
  width: 129px;
  height: 139px;
  background: url("../img/quiz/answer_yes_2.png");
  background-size: 100% 100%;
  position: absolute;
  right: -145px;
  top: -35px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-yes[data-num="2"]::after {
    width: 93px;
    height: 100px;
    right: -50px;
  }
}
.answerBox_correct-yes[data-num="3"]::after {
  content: "";
  width: 118px;
  height: 177px;
  background: url("../img/quiz/answer_yes_3.png");
  background-size: 100% 100%;
  position: absolute;
  right: -138px;
  top: -35px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-yes[data-num="3"]::after {
    width: 71px;
    height: 107px;
    right: -43px;
  }
}
.answerBox_correct-yes[data-num="4"]::after {
  content: "";
  width: 101px;
  height: 168px;
  background: url("../img/quiz/answer_yes.png");
  background-size: 100% 100%;
  position: absolute;
  right: -125px;
  top: -40px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-yes[data-num="4"]::after {
    width: 84px;
    height: 139px;
    right: -90px;
  }
}
.answerBox_correct-yes[data-num="5"]::after {
  content: "";
  width: 129px;
  height: 139px;
  background: url("../img/quiz/answer_yes_2.png");
  background-size: 100% 100%;
  position: absolute;
  right: -145px;
  top: -35px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-yes[data-num="5"]::after {
    width: 93px;
    height: 100px;
    right: -50px;
  }
}
.answerBox_correct-no {
  background: #002764;
}
.answerBox_correct-no[data-num="1"]::after {
  content: "";
  width: 110px;
  height: 125px;
  background: url("../img/quiz/answer_no.png");
  background-size: 100% 100%;
  position: absolute;
  right: -110px;
  top: -26px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-no[data-num="1"]::after {
    width: 82px;
    height: 94px;
    right: -60px;
  }
}
.answerBox_correct-no[data-num="2"]::after {
  content: "";
  width: 89px;
  height: 153px;
  background: url("../img/quiz/answer_no_2.png");
  background-size: 100% 100%;
  position: absolute;
  right: -110px;
  top: -41px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-no[data-num="2"]::after {
    width: 61px;
    height: 104px;
    right: -44px;
    top: -30px;
  }
}
.answerBox_correct-no[data-num="3"]::after {
  content: "";
  width: 149px;
  height: 119px;
  background: url("../img/quiz/answer_no_3.png");
  background-size: 100% 100%;
  position: absolute;
  right: -160px;
  top: -23px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-no[data-num="3"]::after {
    width: 86px;
    height: 69px;
    right: -44px;
    top: -10px;
  }
}
.answerBox_correct-no[data-num="4"]::after {
  content: "";
  width: 110px;
  height: 125px;
  background: url("../img/quiz/answer_no.png");
  background-size: 100% 100%;
  position: absolute;
  right: -110px;
  top: -26px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-no[data-num="4"]::after {
    width: 82px;
    height: 94px;
    right: -60px;
  }
}
.answerBox_correct-no[data-num="5"]::after {
  content: "";
  width: 89px;
  height: 153px;
  background: url("../img/quiz/answer_no_2.png");
  background-size: 100% 100%;
  position: absolute;
  right: -110px;
  top: -41px;
}
@media screen and (max-width: 749px) {
  .answerBox_correct-no[data-num="5"]::after {
    width: 61px;
    height: 104px;
    right: -44px;
    top: -30px;
  }
}
.answerBoxInner button.button {
  background: navy;
  border-radius: 30px;
  color: #FFFF00;
  display: block;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 30px auto;
  padding: 0.5em 1em;
  width: 100%;
}
.answerBoxInner button.button span:last-child {display:none;}
.answerBoxInner button.button span:first-child {
  display: block;
}
.answerBoxInner button.button.active {
  background: blue;
}
.answerBoxInner button.button.active span:first-child {display:none !important;}
.answerBoxInner button.button.active span:last-child {
  color: #FFF;
  display: block !important;
}
.answerBoxTitle {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 35px 0 0;
  padding: 5px 0;
  color: #002764;
}
@media screen and (min-width: 750px) {
  .answerBoxTitle {
    line-height: 1.3;
    border-radius: 5px;
    border: 5px solid #E50065;
  }
}
@media screen and (max-width: 749px) {
  .answerBoxTitle {
    flex-wrap: wrap;
    font-size: 2.0rem;
    margin: 25px 0 0;
  }
}
.answerBoxTitle::before {
  content: "";
}
@media screen and (min-width: 750px) {
  .answerBoxTitle::before {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 35px;
    background: url("../img/quiz/answer_title_text.png");
    background-size: 100% 100%;
    z-index: 1;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 749px) {
  .answerBoxTitle::before {
    margin: 0 70px 10px;
    color: #FFF;
    font-size: 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 81px;
    height: 70px;
    background: url("../img/quiz/answer_title.png");
    background-size: 100% 100%;
  }
}
@media screen and (min-width: 750px) {
  .answerBoxTitle::after {
    content: "";
    background: #E50065;
    height: 100%;
    width: 71px;
    position: absolute;
    left: 0;
    top: 0;
  }
}
@media screen and (max-width: 749px) {
  .answerBoxTitle2 {
    min-height: 79px;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 100%;
  }
}
@media screen and (min-width: 750px) {
  .answerBoxTitle2 {
    min-height: 79px;
    margin: 75px 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.answerBoxTitle2-1 {
  color: #002764;
  text-align: center;
  width: 100%;
  font-size: 2.0rem;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 750px) {
  .answerBoxTitle2-1 {
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 100px;
  }
}
@media screen and (max-width: 749px) {
  .answerBoxTitle2-1 {
    margin: auto;
    font-size: 1.8rem;
    width: 70%;
  }
}
.answerBoxTitle2-2 {
  color: #FFF;
  font-size: 2.4rem;
  text-align: center;
  width: 81px;
  height: 71px;
  background: url("../img/quiz/quiz_no_pink.png");
  background-size: 100% 100%;
  padding-top: 27px;
}
@media screen and (min-width: 750px) {
  .answerBoxTitle2-2 {
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 749px) {
  .answerBoxTitle2-2 {
    margin: 0 auto 20px auto;
  }
}
.answerBoxInner {
  margin: 30px 0 0;
  display: block;
}
.answerBoxText{display:none;
  border: 5px solid #002764;
  border-radius: 10px;
  padding: 30px 40px;
  color: #002764;
}

@media screen and (max-width: 749px) {
  .answerBoxText {
    border: 3px solid #002764;
    padding: 30px 25px;
    height: auto;
    max-height: 70vh;
    overflow-y: scroll;
    position: relative;
  }
}
.answerBoxInner .answerBoxText::after {
  content: "";
  width: 47px;
  height: 40px;
  background: url("../img/quiz/answer/serif.svg");
  background-size: 100% 100%;
  left: 85px;
  bottom: -40px;
  position: absolute;
}
@media screen and (max-width: 749px) {
  .answerBoxInner .answerBoxText::after {
    display: none;
  }
  /*
  .answerBoxInner::after {
    width: 27px;
    height: 23px;
    left: 25px;
    bottom: -23px;
    content: "";
    background: url("../img/quiz/answer/serif.svg");
    background-size: 100% 100%;
    position: absolute;
  }
  */
}
.answerBoxInner_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0 0;
}
@media screen and (min-width: 750px) {
  .answerBoxInner_flex > *:first-child {
    margin-right: 30px;
  }
}
@media screen and (max-width: 749px) {
  .answerBoxInner_flex {
    flex-wrap: wrap;
  }
  .answerBoxInner_flex > *:first-child {
    margin-bottom: 30px;
  }
}
.answerBoxInner_flex_text {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 749px) {
  .answerBoxInner_flex_text {
    flex-wrap: wrap;
  }
}
.answerBoxNext {
  width: 220px;
  height: 60px;
  margin: 55px auto 0;
  cursor: pointer;
  transition: 0.5s;
}
.answerBoxNext[data-num="2"] {
  background: url("../img/quiz/btn/next_2_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="2"]:hover {
  background: url("../img/quiz/btn/next_2_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="3"] {
  background: url("../img/quiz/btn/next_3_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="3"]:hover {
  background: url("../img/quiz/btn/next_3_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="4"] {
  background: url("../img/quiz/btn/next_4_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="4"]:hover {
  background: url("../img/quiz/btn/next_4_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="5"] {
  background: url("../img/quiz/btn/next_5_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="5"]:hover {
  background: url("../img/quiz/btn/next_5_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="6"] {
  background: url("../img/quiz/btn/next_6_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="6"]:hover {
  background: url("../img/quiz/btn/next_6_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="7"] {
  background: url("../img/quiz/btn/next_7_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="7"]:hover {
  background: url("../img/quiz/btn/next_7_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="8"] {
  background: url("../img/quiz/btn/next_8_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="8"]:hover {
  background: url("../img/quiz/btn/next_8_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="9"] {
  background: url("../img/quiz/btn/next_9_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="9"]:hover {
  background: url("../img/quiz/btn/next_9_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="10"] {
  background: url("../img/quiz/btn/next_10_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="10"]:hover {
  background: url("../img/quiz/btn/next_10_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="rslt"] {
  background: url("../img/quiz/btn/next_rslt_1.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxNext[data-num="rslt"]:hover {
  background: url("../img/quiz/btn/next_rslt_2.png");
  background-size: 100% 100%;
  background-repeat: repeat;
}
.answerBoxImage {
  position: absolute;
}
.answerBoxImage-l {
  width: 175px;
  left: 10px;
  bottom: -155px;
}
@media screen and (max-width: 749px) {
  .answerBoxImage-l {
    width: 80px;
    bottom: -15px;
    left: -5px;
  }
}
.answerBoxImage-r {
  width: 315px;
  right: -90px;
  bottom: -160px;
}
@media screen and (max-width: 749px) {
  .answerBoxImage-r {
    width: 140px;
    bottom: -15px;
    right: -10px;
  }
}

/* --- results --- */
.resultBase {
  display: none;
  background: rgba(0, 39, 100, 0.8);
  height: 100vh;
  width: 100%;
  z-index: 200;
  position: fixed;
  overflow: scroll;
}
@media screen and (max-width: 749.99px) {
  .resultBase {
    top: 50%;
    left: 50%;
    width: 100%;
    overflow: scroll;
    z-index: 999;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 750px){
  .resultBase {
    top: 50%;
    left: 50%;
    width: 100%;
    overflow: visible;
    z-index: 999;
    transform: translate(-50%, -50%);
  }
}

.resultBox {
  border: 5px solid #002764;
  background: #FFF;
  width: 700px;
  margin: 50px auto;
  padding: 50px 60px 30px;
}
@media screen and (max-width: 749px) {
  .resultBox {
    width: calc(100% - 40px);
    margin: 40px auto;
    padding: 40px 15px;
  }
}
.resultBoxInner {
  background: #002764;
  padding: 30px 40px 30px 35px;
  color: #FFF;
  margin: 30px 0 0;
}
@media screen and (max-width: 749px) {
  .resultBoxInner {
    padding: 50px 15px 30px;
  }
}
.resultBoxInner_title {
  letter-spacing: -0.1em;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 34px;
}
.resultBoxInner_titleWrap {
  display: flex;
}
@media screen and (max-width: 749px) {
  .resultBoxInner_titleWrap {
    justify-content: center;
  }
}
.resultBoxInner_title_image {
  width: 112px;
  margin-right: 28px;
}
@media screen and (max-width: 749px) {
  .resultBoxInner_title_image {
    position: absolute;
    width: 60px;
    z-index: 10;
    top: -25px;
    left: 0;
  }
}
.resultBoxInner_title_section {
  width: 180px;
  height: 63px;
  font-size: 2.4rem;
  background: #E50065;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 749px) {
  .resultBoxInner_title_section {
    margin: auto;
  }
}
.resultBoxInner_title_section[data-num="1"] {
  background: url("../img/quiz/btn/btn_quiz_1_active.png");
  background-size: 100% 100%;
}
.resultBoxInner_title_section[data-num="2"] {
  background: url("../img/quiz/btn/btn_quiz_2_active.png");
  background-size: 100% 100%;
}
.resultBoxInner_title_section[data-num="3"] {
  background: url("../img/quiz/btn/btn_quiz_3_active.png");
  background-size: 100% 100%;
}
.resultBoxInner_title_section[data-num="4"] {
  background: url("../img/quiz/btn/btn_quiz_4_active.png");
  background-size: 100% 100%;
}
.resultBoxInner_title_section[data-num="5"] {
  background: url("../img/quiz/btn/btn_quiz_5_active.png");
  background-size: 100% 100%;
}
@media screen and (max-width: 749px) {
  .resultBoxInner_title {
    font-size: 2.6rem;
  }
}
.resultBoxInner_title-num {
  font-size: 6.0rem;
}
@media screen and (max-width: 749px) {
  .resultBoxInner_title-num {
    font-size: 4.0rem;
  }
}
.resultBoxInner_title-after {
  font-size: 5.0rem;
  font-weight: 700;
  color: #E50065;
  margin-left: 20px;
}
@media screen and (max-width: 749px) {
  .resultBoxInner_title-after {
    font-size: 4.0rem;
  }
}
.resultBoxInner_list {
  width: 80px;
  height: 70px;
  text-align: center;
  font-size: 2.1rem;
  color: #FFF;
  background: url("../img/quiz/quiz_no_blank.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.resultBoxInner_listWrap {
  display: flex;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 40px auto 0;
}
@media screen and (min-width: 750px) {
  .resultBoxInner_list {
    margin-right: 15px;
    margin-bottom: 20px;
    padding-top: 28px;
  }
}
@media screen and (max-width: 749px) {
  .resultBoxInner_list {
    width: calc((100% - 20px)/5);
    margin-right: 5px;
    font-size: 1.5rem;
    padding-top: 6%;
  }
  .resultBoxInner_list:nth-of-type(5n) {
    margin-right: 0;
  }
}
.resultBoxInner_list:last-of-type, .resultBoxInner_list:nth-of-type(5) {
  margin-right: 0;
}
.resultBoxInner_list.active {
  background: url("../img/quiz/quiz_no_pink.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.resultBoxNext {
  font-size: 2.4rem;
  width: 190px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 20px auto 0;
  cursor: pointer;
  transition: 0.5s;
}
.resultBoxNext[data-num="2"] {
  background: url("../img/quiz/btn/btn_quiz_2_active.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 750px) {
  .resultBoxNext[data-num="2"]:hover {
    background: url("../img/quiz/btn/btn_quiz_2.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.resultBoxNext[data-num="3"] {
  background: url("../img/quiz/btn/btn_quiz_3_active.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 750px) {
  .resultBoxNext[data-num="3"]:hover {
    background: url("../img/quiz/btn/btn_quiz_3.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.resultBoxNext[data-num="4"] {
  background: url("../img/quiz/btn/btn_quiz_4_active.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 750px) {
  .resultBoxNext[data-num="4"]:hover {
    background: url("../img/quiz/btn/btn_quiz_4.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.resultBoxNext[data-num="5"] {
  background: url("../img/quiz/btn/btn_quiz_5_active.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 750px) {
  .resultBoxNext[data-num="5"]:hover {
    background: url("../img/quiz/btn/btn_quiz_5.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.resultBoxReturn {
  font-size: 1.8rem;
  font-weight: 700;
  background: #E50065;
  color: #FFF;
  width: 190px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 55px auto 0;
  cursor: pointer;
  transition: 0.5s;
}
.resultBoxReturn::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 2px solid #FFF;
  box-sizing: border-box;
  transition: 0.5s;
}
@media screen and (min-width: 750px) {
  .resultBoxReturn:hover {
    color: #E50065;
    z-index: 1;
  }
  .resultBoxReturn:hover::after {
    background: #FFF;
    z-index: -1;
  }
}
.resultBoxClose {
  font-size: 2.4rem;
  width: 190px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 20px auto 0;
  cursor: pointer;
  transition: 0.5s;
  background: url("../img/quiz/btn/btn_end_1.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 750px) {
  .resultBoxClose:hover {
    background: url("../img/quiz/btn/btn_end_2.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.result_share {
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 749px) {
  .result_share {
    display: flex;
    position: relative;
  }
}
.result_share .share_text {
  width: 100%;
  text-align: center;
}
.result_share .share_link {
  margin: 5px 8px 0;
}





/* ================= */

.quiz_header {
  text-align: center;
}
@media screen and (min-width: 750px) {
  .quiz_header {
    height: 150px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_header {
    padding: 0 0 40px 0;
  }
}
.quiz_header_label {
  display: inline-block;
  margin: 100px auto 0;
}
@media screen and (min-width: 750px) {
  .quiz_header_label {
    margin: 20px auto 0 auto;
    width: 400px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_header_label {
    font-size: 2.0rem;
    padding: 5px 23px;
    margin: auto;
    height: 45px;
  }
}
.quiz_header_label_sub {
  color: #FFFF00;
  font-size: 3.0rem;
  font-weight: 700;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .quiz_header_label_sub {
    font-size: 1.6rem;
    line-height: 1;
    margin: 0 auto;
  }
}
@media screen and (max-width: 749px) {
  .quiz_header_label_sub {
    font-size: 1.6rem;
    margin: 15px auto 0;
  }
}
.quiz_main[data-num="1"] {
  background: url("../img/quiz/bg_quiz.png");
  background-size: cover;
}
.quiz_main[data-num="2"] {
  background: url("../img/quiz/bg_quiz_2.png");
  background-size: cover;
}
.quiz_main[data-num="3"] {
  background: url("../img/quiz/bg_quiz_3.png");
  background-size: cover;
}
.quiz_main[data-num="4"] {
  background: url("../img/quiz/bg_quiz.png");
  background-size: cover;
}
.quiz_main[data-num="5"] {
  background: url("../img/quiz/bg_quiz_2.png");
  background-size: cover;
}
@media screen and (min-width: 750px) {
  .quiz_main {
    padding: 40px 0;
    min-height: 600px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_main {
    padding: 35px 0 97px;
  }
}
.quiz_label {
  width: 180px;
  height: 50px;
  margin: 0 auto 30px;
}
.quiz_label[data-num="1"] {
  background: url("../img/quiz/btn/label_1.png");
  background-size: 100% 100%;
}
.quiz_label[data-num="2"] {
  background: url("../img/quiz/btn/label_2.png");
  background-size: 100% 100%;
}
.quiz_label[data-num="3"] {
  background: url("../img/quiz/btn/label_3.png");
  background-size: 100% 100%;
}
.quiz_label[data-num="4"] {
  background: url("../img/quiz/btn/label_4.png");
  background-size: 100% 100%;
}
.quiz_label[data-num="5"] {
  background: url("../img/quiz/btn/label_5.png");
  background-size: 100% 100%;
}
.quiz_box {
  width: 500px;
  background: #FFF;
  border: 5px solid #002764;
  margin: auto;
}
@media screen and (min-width: 750px) {
  .quiz_box {
    padding: 20px 45px 50px;
    width: 90%;
  }
}
@media screen and (max-width: 749px) {
  .quiz_box {
    border: 3px solid #002764;
    width: calc(100% - 60px);
    padding: 20px 10px 30px;
  }
}

.quiz_box_flex {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 749px) {
  .quiz_box_flex {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 750px) {
  .quiz_box_flex {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.quiz_box_no {
  width: 80px;
  height: 69px;
  text-align: center;
  font-size: 2.1rem;
  color: #FFF;
  background: url("../img/quiz/quiz_no_pink.png");
  background-size: 100% 100%;
  padding-top: 30px;
}
@media screen and (min-width: 750px) {
  .quiz_box_no {
    width: 120px;
    height: 100px;
    padding-top: 50px;
  }
}
.quiz_box_title {
  color: #002764;
  font-weight: 600;
}
@media screen and (min-width: 750px) {
  .quiz_box_title {
    width: calc(100% - 140px);
    margin-left: 15px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 749px) {
  .quiz_box_title {
    width: 70%;
    margin-top: 10px;
    font-size: 1.5rem;
  }
}
.quiz_box_text {
  font-size: 2.0rem;
  font-size: 600;
  transition: 0.5s;
  cursor: pointer;
  min-height: 45px;
  max-height: 120px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  color: #002764;
  border: 2px solid #002764;
  border-radius: 5px;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
}
@-moz-document url-prefix() {
  .quiz_box_text span {
    transform: scale(0.9);
  }
}
@media screen and (min-width: 750px) {
  .quiz_box_text {
    line-height: 1;
    padding: 1px 0;
  }
}
@media screen and (max-width: 749px) {
  .quiz_box_text {
    min-height: 45px;
    font-size: 1.6rem;
  }
}
.quiz_box_textWrap {
  margin: 20px 0 0;
}
.quiz_box_text:hover {
  background: #E50065;
  color: #FFF;
}
.quiz_box_text.active {
  background: #E50065;
  color: #FFF;
}
.quiz_box_post {
  margin: 40px auto 0;
  font-size: 2.4rem;
  font-weight: 700;
  width: 220px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 220px;
}
@media screen and (max-width: 749px) {
  .quiz_box_post {
    width: 200px;
    margin: 25px auto 0;
  }
}
.quiz_box_post_img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.quiz_box_post_img-1 {
  opacity: 1;
}
.quiz_box_post_img-2 {
  opacity: 0;
}
.quiz_box_post.active .quiz_box_post_img-1 {
  opacity: 0;
}
.quiz_box_post.active .quiz_box_post_img-2 {
  opacity: 1;
}
.quiz_image {
  position: absolute;
  z-index: 8;
  width: 105px;
  left: -32px;
  bottom: -55px;
}
@media screen and (max-width: 749px) {
  .quiz_image {
    width: 105px;
    left: -32px;
    bottom: -103px;
  }
}
.quiz_image[data-num="3"] {
  width: 70px;
  left: -32px;
  bottom: -40px;
}
@media screen and (max-width: 749px) {
  .quiz_image[data-num="3"] {
    width: 70px;
    left: -32px;
    bottom: -103px;
  }
}
.quiz_image[data-num="4"] {
  width: 80px;
  left: -26px;
  bottom: -40px;
}
@media screen and (max-width: 749px) {
  .quiz_image[data-num="4"] {
    width: 80px;
    left: -26px;
    bottom: -100px;
  }
}
.quiz_image[data-num="5"] {
  width: 80px;
  left: -26px;
  bottom: -40px;
}
@media screen and (max-width: 749px) {
  .quiz_image[data-num="5"] {
    width: 80px;
    left: -26px;
    bottom: -100px;
  }
}
@media screen and (min-width: 750px) {
  .quiz_footer {
    height: auto;
    padding: 30px 10px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_footer {
    padding: 35px 0;
  }
}

/* Quiz Box */
.quiz_box {
  width: 500px;
  background: #FFF;
  border: 5px solid #002764;
  margin: auto;
}
@media screen and (min-width: 750px) {
  .quiz_box {
    padding: 20px 45px 50px;
    width: 90%;
  }
}
@media screen and (max-width: 749px) {
  .quiz_box {
    border: 3px solid #002764;
    width: calc(100% - 60px);
    padding: 20px 10px 30px;
  }
}

/* Quiz Box No. */
.quiz_box_no {
  width: 80px;
  height: 69px;
  text-align: center;
  font-size: 2.1rem;
  color: #FFF;
  background: url("../img/quiz/quiz_no_pink.png");
  background-size: 100% 100%;
  padding-top: 30px;
}
@media screen and (min-width: 750px) {
  .quiz_box_no {
    width: 120px;
    height: 100px;
    padding-top: 50px;
  }
}
.quiz_box_text {
  font-size: 2.0rem;
  font-weight: 600;
  transition: 0.5s;
  cursor: pointer;
  min-height: 45px;
  max-height: 120px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  color: #002764;
  border: 2px solid #002764;
  border-radius: 5px;
  margin: 10px 0;
  justify-content: center;
  text-align: center;
}
@-moz-document url-prefix() {
  .quiz_box_text span {
    transform: scale(0.9);
  }
}
@media screen and (min-width: 750px) {
  .quiz_box_text {
    line-height: 1;
    padding: 1px 0;
  }
}
@media screen and (max-width: 749px) {
  .quiz_box_text {
    min-height: 45px;
    font-size: 1.6rem;
  }
}
.quiz_box_textWrap {
  margin: 20px 0 0;
}
.quiz_box_text:hover {
  background: #E50065;
  color: #FFF;
}
.quiz_box_text.active {
  background: #E50065;
  color: #FFF;
}
.quiz_box_post {
  margin: 40px auto 0;
  font-size: 2.4rem;
  font-weight: 700;
  width: 220px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 220px;
}
@media screen and (max-width: 749px) {
  .quiz_box_post {
    width: 200px;
    margin: 25px auto 0;
  }
}
.quiz_box_post_img {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}
.quiz_box_post_img-1 {
  opacity: 1;
}
.quiz_box_post_img-2 {
  opacity: 0;
}
.quiz_box_post.active .quiz_box_post_img-1 {
  opacity: 0;
}
.quiz_box_post.active .quiz_box_post_img-2 {
  opacity: 1;
}
.quiz_image {
  position: absolute;
  z-index: 10;
  width: 105px;
  left: -32px;
  bottom: -55px;
}
@media screen and (max-width: 749px) {
  .quiz_image {
    width: 105px;
    left: -32px;
    bottom: -103px;
  }
}
.quiz_image[data-num="3"] {
  width: 70px;
  left: -32px;
  bottom: -40px;
}
@media screen and (max-width: 749px) {
  .quiz_image[data-num="3"] {
    width: 70px;
    left: -32px;
    bottom: -103px;
  }
}
.quiz_image[data-num="4"] {
  width: 80px;
  left: -26px;
  bottom: -40px;
}
@media screen and (max-width: 749px) {
  .quiz_image[data-num="4"] {
    width: 80px;
    left: -26px;
    bottom: -100px;
  }
}
.quiz_image[data-num="5"] {
  width: 80px;
  left: -26px;
  bottom: -40px;
}
@media screen and (max-width: 749px) {
  .quiz_image[data-num="5"] {
    width: 80px;
    left: -26px;
    bottom: -100px;
  }
}
@media screen and (min-width: 750px) {
  .quiz_footer {
    height: auto;
    padding: 30px 10px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_footer {
    padding: 35px 0;
  }
}
.quiz_Framelist {
  margin-right: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  width: 190px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 0;
}
@media screen and (min-width: 750px) {
  .quiz_Framelist {
    margin-right: 0;
  }
}
.quiz_FramelistWrap {
  display: flex;
  max-width: 980px;
  margin: auto;
}
@media screen and (min-width: 750px) {
  .quiz_FramelistWrap {
    justify-content: space-between;
    gap: 10px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_FramelistWrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.quiz_Framelist_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.5s;
}
.quiz_Framelist_img-1 { opacity: 1; }
.quiz_Framelist_img-2 { opacity: 0; }
@media screen and (max-width: 749px) {
  .quiz_Framelist {
    font-size: 1.8rem;
    width: calc((100% - 30px) / 2);
    margin-bottom: 10px;
  }
  .quiz_Framelist:nth-of-type(even) {
    margin-right: 0;
  }
}
.quiz_Framelist.current {
  cursor: auto !important;
}
.quiz_Framelist.current .quiz_Framelist_img-1 { opacity: 0; }
.quiz_Framelist.current .quiz_Framelist_img-2 { opacity: 1;}
.quiz_Framelist.active {  cursor: pointer; }
.quiz_Framelist.active .quiz_Framelist_img-1 { opacity: 0; }
.quiz_Framelist.active .quiz_Framelist_img-2 { opacity: 1;}
.quiz_Framelist.active:not(.current):hover .quiz_Framelist_img-1 { opacity: 1; }
.quiz_Framelist.active:not(.current):hover .quiz_Framelist_img-2 { opacity: 0; }
.quiz_Framelist.blank { cursor: auto; }

/* Quiz Frame List */
.quiz_Framelist {
  margin-right: 8px;
  font-size: 2.4rem;
  font-weight: 700;
  width: 190px;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 0;
}
@media screen and (min-width: 750px) {
  .quiz_Framelist {
    margin-right: 0;
  }
}
.quiz_FramelistWrap {
  display: flex;
  max-width: 980px;
  margin: auto;
}
@media screen and (min-width: 750px) {
  .quiz_FramelistWrap {
    justify-content: space-between;
    gap: 10px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_FramelistWrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.quiz_Framelist_img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.5s;
}
.quiz_Framelist_img-1 {
  opacity: 1;
}
.quiz_Framelist_img-2 {
  opacity: 0;
}
@media screen and (max-width: 749px) {
  .quiz_Framelist {
    font-size: 1.8rem;
    width: calc((100% - 30px) / 2);
    margin-bottom: 10px;
  }
  .quiz_Framelist:nth-of-type(even) {
    margin-right: 0;
  }
}
.quiz_Framelist.current {
  cursor: auto !important;
}
.quiz_Framelist.current .quiz_Framelist_img-1 {
  opacity: 0;
}
.quiz_Framelist.current .quiz_Framelist_img-2 {
  opacity: 1;
}
.quiz_Framelist.active {
  cursor: pointer;
}
.quiz_Framelist.active .quiz_Framelist_img-1 {
  opacity: 0;
}
.quiz_Framelist.active .quiz_Framelist_img-2 {
  opacity: 1;
}
.quiz_Framelist.active:not(.current):hover .quiz_Framelist_img-1 {
  opacity: 1;
}
.quiz_Framelist.active:not(.current):hover .quiz_Framelist_img-2 {
  opacity: 0;
}
.quiz_Framelist.blank {
  cursor: auto;
}

/* Quiz No. List */
.quiz_Nolist {
  width: 80px;
  height: 80px;
  text-align: center;
  font-size: 2.1rem;
  color: #FFF;
  background: url("../img/quiz/quiz_no_blank.png");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 20px;
  padding-top: 12px;
}
@media screen and (min-width:750px){
  .quiz_Nolist {
    background: url("../img/quiz/quiz_no_blank.png") no-repeat;
    background-size: 100% auto;
    padding-top: 40px !important;
    margin: 0 0 20px 0 !important;
    padding: 0;
    width: 18%;
    height: 90px;
    text-align: center;
  }
  .quiz_Nolist.active {
    background-size: 100% auto !important;
  }
}

.quiz_NolistWrap {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .quiz_NolistWrap {
    width: 100%;
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px;
  }
}
@media screen and (max-width: 749px) {
  .quiz_NolistWrap {
    flex-wrap: wrap;
    width: 90%;
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 749px) {
  .quiz_Nolist {
    margin-right: 10px;
    font-size: 1.5rem;
    width: calc((100% - 40px)/5);
    padding-top: 20px;
  }
  .quiz_Nolist:nth-of-type(5n) {
    margin-right: 0;
  }
}
.quiz_Nolist.active {
  background: url("../img/quiz/quiz_no_pink.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width:750px){
  .quiz_Nolist.active {
    background: url("../img/quiz/quiz_no_pink.png") no-repeat;
    background-size: cover;
  }
}

/* container stop */
.container.stop {
  position: fixed;
  width: 100%;
}
@media screen and (min-width: 750px) {
  .container.stop {
    width: 100%;
    max-width: 375px;
    height: 100vh;
    margin: 0 auto;
    padding: 50px 0 0;
    position: relative;
  }
}
.container.stopQ {
  position: fixed;
  width: 100%;
}


