/* --- 공통 CSS --- */
.layout-qna.layout-con {
  height: 100vh;
}

.layout-qna .header {
  visibility: visible;
}

.layout-qna .footer {
  visibility: visible;
}

/* --- 메인 CSS --- */
.layout-qna .qna {
  margin: 0 auto;
}

.layout-qna .qna_main {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.layout-qna .qna_main_top {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.layout-qna .top_qs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 33px;
  background-color: #f2eeea;
  border-radius: 6px;
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: #9b4c3a;
}

.layout-qna .top_qs_area {
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
}

.layout-qna .qna_main_bottom {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
  line-height: 25px;
}

.layout-qna .qna_main_bottom > * {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  width: 312px;
  height: 60px;
  background-color: #fff;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  cursor: pointer;
}

.layout-qna .bottom_ans_number {
  font-family: 'Spoqa Han Sans Neo';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  margin-left: 20px;
  margin-right: 10px;
}

/* --- 마우스 호버 --- */
.layout-qna .bottom_answer1:hover {
  background-color: #cb7658;
  color: #fff;
}
.layout-qna .bottom_answer2:hover {
  background-color: #cb7658;
  color: #fff;
}
.layout-qna .bottom_answer3:hover {
  background-color: #cb7658;
  color: #fff;
}
.layout-qna .bottom_answer4:hover {
  background-color: #cb7658;
  color: #fff;
}
