#chart .chart_container {
  border: solid 4px #82c6f0;
  border-radius: 20px;
  overflow: hidden;
}
#chart .chart_inner,
#chart .result_inner {
  padding: 50px 20px;
}
#chart .chart_title,
#chart .result_title {
  background: #82c6f0;
  color: #272b73;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  #chart .chart_title,
  #chart .result_title {
    font-size: 34px;
    font-size: 4.4270833333vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #chart .chart_title,
  #chart .result_title {
    font-size: 20px;
  }
}
#chart .q-icon {
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50rem;
  background: #fff;
  color: #2f85e5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  padding: 0 0 8px 0;
}
@media screen and (max-width: 768px) {
  #chart .q-icon {
    font-size: 42px;
    font-size: 5.46875vw;
  }
}
@media screen and (max-width: 768px) and (min-width: 539px) {
  #chart .q-icon {
    font-size: 24.7058823529px;
  }
}
#chart .chart_btn_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
#chart .chart_btn_list-item {
  width: 445px;
  max-width: 100%;
}
#chart .result_title {
  text-align: center;
}
#chart .result_img {
  text-align: center;
}
#chart .answer_btn {
  background: #272b73;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50rem;
  padding: 20px;
  font-weight: bold;
}
#chart .answer_btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
#chart .btn_wrp {
  margin-top: 40px;
}
#chart .back_btn {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #d6f2fb;
  font-weight: bold;
  padding: 20px;
  border-radius: 10px;
  position: relative;
}
#chart .back_btn::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background-image: url("/img/common/arw-circle-blu.png");
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%) scaleX(-1);
  transition: 0.3s;
}
#chart .back_btn:hover {
  color: rgba(38, 38, 38, 0.8);
}
#chart .back_btn:hover::before {
  transform: translate(-2px, -50%) scaleX(-1);
}/*# sourceMappingURL=chart_pc.css.map */