.project {
  background-image: url("../images/orange_bg.png");
  background-repeat: repeat;
  background-size: contain;
}

.game_title {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 980px) {
  .game_title {
    max-width: 380px;
  }
}
.game_title img {
  width: 100%;
}

.game_sec {
  padding: 130px 0 100px;
}
@media (max-width: 980px) {
  .game_sec {
    padding: 100px 0 50px;
  }
}
@media (max-width: 980px) {
  .game_sec .container {
    padding: 0 15px;
  }
}

.quiz_title_text {
  text-align: center;
  color: white;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.5;
  margin-top: 15px;
}
@media (max-width: 980px) {
  .quiz_title_text {
    font-size: 18px;
  }
}

.progress_bar {
  width: 100%;
  height: 3px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 45px 0 55px;
}
@media (max-width: 980px) {
  .progress_bar {
    width: 93%;
    margin: 40px auto 40px;
  }
}
.progress_bar .progress_bar_item {
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
}
.progress_bar .progress_bar_item.active {
  position: relative;
}
.progress_bar .progress_bar_item.active::after {
  content: "";
  position: absolute;
  transition: all 0.3s ease-in-out;
  background-image: url("../images/kumamon_bear.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 64px;
  height: 80px;
  top: -30px;
  left: 0;
}
@media (max-width: 980px) {
  .progress_bar .progress_bar_item.active::after {
    width: 40px;
    height: 50px;
    top: -22px;
    left: -10px;
  }
}

.progress_number {
  display: flex;
  color: white;
  font-weight: 800;
  font-size: 24px;
}
@media (max-width: 980px) {
  .progress_number {
    font-size: 18px;
  }
}
.progress_number p {
  margin-right: 10px;
}

.question {
  color: white;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .question {
    font-size: 40px;
  }
}
@media (max-width: 980px) {
  .question {
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 5px;
  }
}

.question_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
@media (max-width: 980px) {
  .question_container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.question_container .answer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 32px;
  background-color: white;
  padding: 20px;
  font-weight: 600;
  font-size: 24px;
  color: rgb(236, 100, 0);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border-radius: 48px;
  position: relative;
}
@media (max-width: 1440px) {
  .question_container .answer {
    padding: 13px 25px;
    font-size: 20px;
  }
}
@media (max-width: 980px) {
  .question_container .answer {
    padding: 8px 20px 8px 15px;
    font-size: 16px;
    border-radius: 30px;
  }
}
.question_container .answer:before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.question_container .answer:has(input[type=radio]:checked) {
  background-color: rgb(42, 170, 150);
  color: white;
  box-shadow: 0px 0px 0px 4px rgb(255, 242, 160) inset;
}
.question_container .answer:has(input[type=radio]:checked) .answer_list {
  background-color: white;
  color: rgb(42, 170, 150);
}
.question_container .answer p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 980px) {
  .question_container .answer p {
    gap: 10px;
    justify-content: flex-start;
  }
}
.question_container .answer .answer_list {
  color: white;
  background-color: rgb(236, 100, 0);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 48px;
  font-weight: 800;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .question_container .answer .answer_list {
    width: 50px;
    height: 50px;
    font-size: 36px;
  }
}
@media (max-width: 980px) {
  .question_container .answer .answer_list {
    width: 38px;
    height: 38px;
    font-size: 24px;
    flex-shrink: 0;
  }
}
.question_container .answer input[type=radio] {
  display: none;
}