@charset "utf-8";
.container {
  margin-top: 0;
}

.keyvisual-area {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-color: #aa1c32;
}

.bg_detail {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding-bottom: 1px;
  background-color: #fffcea;
}

.inquiryNumber {
  width: 920px;
  margin: 0 auto 10px;
}

.block-h2 {
  width: 920px;
  margin: 48px auto 20px;
}

.content-title__text--strong {
  font-size: 20px;
}

.quiz_contents {
  width: 920px;
  position: relative;
}

.quiz_area {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 48px 0;
  background-color: #aa1c32;
}

.quiz_btn {
  position: absolute;
  top: 60px;
  right: 0;
}

.toggle_btn {
  display: inline-block;
  width: 80px;
  height: 30px;
  background: url(/lp/imgs/shisan_quiz/ico_open.png);
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.selected {
  display: inline-block;
  width: 80px;
  height: 30px;
  background: url(/lp/imgs/shisan_quiz/ico_close.png);
  cursor: pointer;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.quiz_btn .toggle_btn:hover {
  opacity: 0.8;
}

.quiz_ttl {
  width: 345px;
  margin: 0 auto 40px;
}

.quiz_list {
  width: 920px;
  margin: 0 auto;
  display: none;
}

.quiz_list__item {
  width: 100%;
  margin: 0 auto 30px;
  padding: 20px 55px 30px 30px;
  border-radius: 5px;
  background-color: #fff;
}

.quiz_list__item:last-child {
  margin-bottom: 0;
}

.question_ttl {
  width: 170px;
}

.question_area {
  display: flex;
  margin-top: 20px;
  margin-left: 30px;
}

.question_detail {
  display: flex;
  margin-right: 40px;
}

.question_icon {
  margin-right: 20px;
}

.question_icon img {
  width: 70px;
}

.question_text {
  width: 310px;
  color: #00579d;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
}

.answer_list__item {
  display: flex;
  margin-bottom: 10px;
}

.answer_list__item:last-child {
  margin-bottom: 0;
}

.answer_text_a, .answer_text_b, .answer_text_c {
  font-size: 16px;
  font-weight: bold;
  padding-left: 45px;
  text-indent: -45px;
}

.answer_text_a::before {
  content: "";
  display: inline-block;
  background-image: url(/lp/imgs/shisan_quiz/ico_a.png);
  width: 35px;
  height: 35px;
  background-size: contain;
  vertical-align: middle;
}

.answer_text_b::before {
  content: "";
  display: inline-block;
  background-image: url(/lp/imgs/shisan_quiz/ico_b.png);
  width: 35px;
  height: 35px;
  background-size: contain;
  vertical-align: middle;
}

.answer_text_c::before {
  content: "";
  display: inline-block;
  background-image: url(/lp/imgs/shisan_quiz/ico_c.png);
  width: 35px;
  height: 35px;
  background-size: contain;
  vertical-align: middle;
}

.icon_indent {
  margin-left: 10px;
}

@media screen and (max-width: 1019px) {
  .inquiryNumber {
    width: calc(100% - 40px);
  }

  .block-h2 {
    width: calc(100% - 40px);
  }

  .quiz_contents {
    width: 100%;
  }

  .quiz_list {
    width: 100%;
  }

  .quiz_list__item {
    width: calc(100% - 40px);
    padding: 22px 15px 30px;
  }

  .question_area {
    display: block;
  }

  .quiz_btn {
    position: absolute;
    top: 55px;
    right: 0;
  }
  
  .toggle_btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(/lp/imgs/shisan_quiz/ico_open_sp.png);
    background-size: 100%;
    cursor: pointer;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }
  
  .selected {
    width: 40px;
    height: 40px;
    background: url(/lp/imgs/shisan_quiz/ico_close_sp.png);
    background-size: 100%;
    cursor: pointer;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
  }

  .question_ttl {
    width: 200px;
    margin: 0 auto 30px;
  }

  .question_area {
    margin: 0;
  }

  .question_icon {
    display: block;
    margin-right: 10px;
  }

  .question_icon img {
    max-width: 50px;
    width: 50px;
  }

  .question_detail {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .question_text {
    width: auto;
    font-size: 18px;
  }

  .answer_list__item {
    margin-left: 15px;
  }
}


