.question:hover {
  cursor: pointer;
}

.question__index {
  width: 85vw;
  margin: 0 auto;
}

.question__index ul {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 85vw;
  margin: 0 auto;
}
.question__index ul a {
  text-decoration: none;
  color: #000000;
  width: 50%;
}
.question__index ul a li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 4vw;
  margin-top: 20px;
}
.question__index ul a li div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
}
.question__index ul a li div span {
  font-size: 14px;
  text-align: left;
}
.question__index ul a li div i {
  margin-top: 9px;
  margin-right: 23px;
  color: #e63037;
  transform: rotate(90deg);
}
.question__index_line {
  margin-top: 10px;
  width: 6.8vw;
  height: 2px;
  background-color: #d4d4d4;
}

.question_classification {
  margin-top: 82px;
  margin-bottom: 41px;
}
/* .question_classification_inner {
  padding-top: 164px;
  margin-top: -82px;
} */

.question__backgroung {
  position: relative;
  height: 17px;
}
.question__backgroung img {
  position: absolute;
  width: 23vw;
  right: 25px;
  top: 10px;
  z-index: -1;
}
.question_category {
  display: flex;
  padding: 5px 0;
}
.question_category_left {
  width: 12vw;
  height: 2px;
  background-color: #AAAAAA;
  margin: auto 0;
  display: flex;
  justify-content: end;
}
.question_category_left_redzone {
  width: 20%;
  background-color: #e63037;
}
.question_category_text {
  color: #e63037;
  font-size: 28px;
  padding-left: 10px;
  font-weight: bold;
}
.question_item {
  width: 85vw;
  margin: auto;
  border-radius: 10px;
  border: solid 1px #e63037;
  margin-top: 10px;
  overflow: hidden;
  background-color: #fff;
}
.question {
  display: flex;
  padding: 10px;
  padding: 18px 16px;
}
.question_icon {
  font-family: 'Overpass';
  width: 32px;
  height: 32px;
  font-size: 18px;
  background-color: #e63037;
  color: white;
  border-radius: 50%;
  text-align: center;
  margin-top: 0.4vw;
  flex-shrink: 0;
  line-height: 36px;
}
.question_text {
  width: 100%;
  margin: auto 0;
  padding-left: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-right: 8px;
}
.question_text div {
  font-size: 18px;
  font-weight: bold;
}
.question_dot_area {
  display: flex;
  padding: 10px;
  margin-left: 50px;
  margin-right: 24px;
}
.question_dot {
  width: 100%;
  border-bottom: 1px dashed #e63037;
}
.question_accordion {
  width: 3vw;
  height: 45px;
  margin-top: 1vw;
  margin-left: 5px;
}
.question_accordion div {
  display: block;
  height: 30px;
  text-align: center;
  line-height:0;
  position: relative;
}
.question_accordion div:before {
  display: block;
  content: "";
  position: absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  margin:auto;
  width: 16px;
  height: 2px;
  background-color: #e63037;
  transition: .2s;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}
.question_accordion div:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 16px;
  height: 2px;
  background-color: #e63037;
  transition: .3s;
}
.question.on .question_text .question_accordion div:before {
	transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
}
.question.on .question_text .question_accordion div:after {
	background-color: transparent;
}
.answer {
  display: flex;
  padding: 10px;
  padding: 18px 16px;
}
.answer_icon {
  font-family: 'Overpass';
  width: 32px;
  height: 32px;
  font-size: 18px;
  background-color: #FFDBC9;
  color: #e63037;
  border-radius: 50%;
  text-align: center;
  flex-shrink: 0;
  line-height: 36px;
}
.answer_text {
  margin: auto 0;
  padding: 0 10px;
  font-size: 16px;
  line-height: 1.88;
}
.answer_text div {
  font-size: 16px;
}
.answer_text a {
  color: #e63037;
  text-decoration: underline;
}
.answer_text span {
  color: #e63037;
}
.answer_text p {
  padding-left: 15px;
}

/* PC用 **/
@media screen and (min-width: 768px) {
  main {
    margin-top: 110px;
  }

  .question__index {
    width: 75vw;
    max-width: 1000px;
  }

  .question__index_line {
    margin-top: 13px;
  }
  .question__index ul {
    width: 100%;
    flex-wrap: nowrap;
    max-width: 1000px;
  }
  .question__index ul a li {
    margin-right: 1vw;
  }
  .question__index ul a:last-child li {
    margin-right: 0;
  }
  .question__index ul a li div {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .question__index ul a li div span {
    text-align: center;
  }
  .question__index ul a li div i {
    margin-right: 0;
  }

  .question_category {
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 33px;
  }
  .question_category_left {
    width: 24vw;
    height: 2px;
    background-color: #AAAAAA;
    margin: auto 0;
    display: flex;
    justify-content: end;
    margin-left: -24vw;
  }
  .question_dot_area {
    margin-left: 88px;
  }
  .question_item {
    width: 75vw;
    max-width: 1000px;
  }
  .question {
    padding: 10px;
    padding: 18px 16px;
  }
  .question_icon {
    width: 48px;
    height: 48px;
    font-size: 28px;
    line-height: 52px;
  }
  .question_text {
    padding-left: 30px;
    margin-right: 8px;
  }

  .question_accordion div:before {
    width: 30px;
  }
  .question_accordion div:after {
    width: 30px;
  }

  .answer {
    padding: 10px;
    padding: 18px 16px;
  }
  .answer_icon {
    width: 48px;
    height: 48px;
    font-size: 28px;
    line-height: 52px;
  }
  .answer_text {
    padding: 10px 0 10px 30px;
  }
}

.question_text h2 {
  font-size: 18px;
}