.question {
  padding: 100px 20px;
  background: url(/csr/stda/time-sense/images/img_question_bg_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .question {
    padding: 48px 20px 80px;
    background: url(/csr/stda/time-sense/images/img_question_bg_sp.jpg) no-repeat;
  }
}
.question__wrap {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .question__wrap {
    width: 100%;
  }
}
.question__title {
  font-size: 3.2rem;
  color: #008AA5;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .question__title {
    font-size: 2.2rem;
  }
}
.question__list {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .question__list {
    gap: 16px;
  }
}
.question__card {
  background-color: #fff;
  padding: 48px 64px 64px;
  border-radius: 10px;
  box-shadow: 0px 3px 11px rgba(0, 0, 41, 0.15);
}
@media screen and (max-width: 767px) {
  .question__card {
    padding: 32px 16px 40px;
  }
}
.question__card__title {
  font-size: 3rem;
  font-weight: bold;
  color: #008AA5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .question__card__title {
    font-size: 2.4rem;
  }
}
.question__text {
  font-size: 2.4rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .question__text {
    font-size: 1.6rem;
  }
}
.question__button {
  width: calc(50% - 12px);
  background-color: #fff;
  border: 1px solid #008AA5;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 41, 0.15);
  padding: 28px 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .question__button {
    width: 100%;
    padding: 14px 10px;
  }
}
@media screen and (min-width: 768px) {
  .question__button:hover {
    background-color: #CBE7EC;
  }
}
.question__button.is-select {
  background-color: #008AA5;
}
.question__button.is-select .question__button__text {
  color: #fff;
}
.question__button__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 48px;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .question__button__list {
    gap: 16px;
    margin-top: 32px;
  }
}
.question__button__text {
  font-size: 2rem;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .question__button__text {
    font-size: 1.6rem;
    text-align: left;
  }
}

.base-q__box {
  margin: 64px auto 0;
}
@media screen and (max-width: 767px) {
  .base-q__box {
    margin: 32px auto 0;
  }
}

.extra-q__box {
  margin: 80px auto 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .extra-q__box {
    margin: 40px auto 0;
  }
}
.extra-q__box.is-active {
  display: block;
}
.extra-q__box .question__card__title {
  color: #D6272C;
}
.extra-q__text {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .extra-q__text {
    font-size: 1.6rem;
  }
}

.result__button {
  position: relative;
  margin: 0 auto;
  background-color: #cecece;
  border: 1px solid #cecece;
  border-radius: 6px;
  width: 360px;
  padding: 16px 0;
  box-shadow: 0px 3px 6px rgba(0, 0, 41, 0.15);
}
@media screen and (max-width: 767px) {
  .result__button {
    width: 100%;
  }
}
.result__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 18px;
  height: 18px;
  background: url(/csr/stda/time-sense/images/icn_arrow_disable.svg) no-repeat;
  background-size: cover;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.result__button.is-active {
  background-color: #008AA5;
  border-color: #008AA5;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (min-width: 768px) {
  .result__button.is-active:hover {
    background-color: #fff;
  }
}
.result__button.is-active:hover::after {
  background: url(/csr/stda/time-sense/images/icn_arrow_turquoise_hover.svg) no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.result__button.is-active:hover .result__button__text {
  color: #008AA5;
}
.result__button.is-active::after {
  background: url(/csr/stda/time-sense/images/icn_arrow_turquoise.svg) no-repeat;
  background-size: cover;
  transform: translateY(-50%);
}
.result__button__box {
  margin-top: 64px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .result__button__box {
    margin-top: 48px;
    padding: 0;
  }
}
.result__button__text {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}