@charset "UTF-8";
/* 리스트 */
.board_list .list_wrap {
  position: relative;
  width: 100%;
}
.board_list .list_wrap li {
  position: relative;
  color: var(--bh_color_gray_900);
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  border-bottom: 1px solid var(--bh_color_gray_300);
  padding: 13px 11px;
}
.board_list .list_wrap li:first-child {
  border-top: 1px solid var(--bh_color_gray_300);
}
.board_list .list_wrap li.notice {
  background: var(--bh_color_gray_50);
}
.board_list .list_wrap li > a:last-child {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.board_list .list_wrap li .check {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 99;
}
.board_list .list_wrap .label {
  display: inline-block;
  color: #fff;
  line-height: 18px;
  background-color: #343a40;
  padding: 3px 9px 3px 9px;
  margin-right: 10px;
}
@media (max-width: 992px) {
  .board_list .list_wrap .label {
    padding: 3px 3px 3px 3px !important;
    margin-right: 5px !important;
    font-size: 11px !important;
    line-height: 11px !important;
  }
}
/* FAQ */
.board_list .faq_wrap .bh_toggle_list {
  position: relative;
  width: 100%;
  color: var(--bh_color_gray_800);
  background-color: var(--bh_color_white);
  border: 1px solid var(--bh_color_gray_200);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s;
  margin-bottom: 14px;
  padding: 15px;
}
.board_list .faq_wrap .bh_toggle_list .check {
  position: absolute;
  top: 2px;
  left: 10px;
  z-index: 99;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_title {
  display: flex;
  align-items: first baseline;
  gap: 5px;
  cursor: pointer;
  color: var(--bh_color_gray_900);
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_title > .title {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 500;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_title > .arrow {
  font-size: 24px;
  line-height: 1;
  color: var(--bh_color_gray_600);
  transition: 0.3s;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_title::before {
  content: "Q.";
  display: block;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.board_list .faq_wrap .bh_toggle_list.active .bh_toggle_title {
  color: var(--bh_color_main_800);
}
.board_list .faq_wrap .bh_toggle_list.active .bh_toggle_title > .arrow {
  transform: rotate(180deg);
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content {
  margin-top: 10px;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content .toggle_content_inner {
  display: flex;
  align-items: first baseline;
  gap: 5px;
  padding: 15px;
  background-color: var(--bh_color_main_100);
  border-radius: 5px;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content .toggle_content_inner::before {
  content: "A.";
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--bh_color_gray_800);
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content .toggle_content_inner .toggle_content {
  max-width: calc(100% - 19px);
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content .bh_toggle_title_sub {
  font-size: 13px;
  margin: 5px 0 10px 0;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content p, .board_list .faq_wrap .bh_toggle_list .bh_toggle_content a {
  color: var(--bh_color_gray_800);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content ul {
  font-size: 12px;
  font-weight: 400;
  padding: 0 2px;
  margin: 0 0 10px 0;
  list-style: none;
}
.board_list .faq_wrap .bh_toggle_list .bh_toggle_content ul li {
  padding: 8px 0;
}
.board_list .faq_wrap.numbering {
  counter-reset: accordion-counter;
}
.board_list .faq_wrap.numbering .bh_toggle_list {
  padding-left: 55px;
}
.board_list .faq_wrap.numbering .bh_toggle_list::before {
  position: absolute;
  top: 12px;
  left: 20px;
  display: block;
  width: 35px;
  height: 35px;
  color: var(--bh_color_gray_900);
  line-height: 32px;
  text-align: center;
  background: var(--bh_color_gray_50);
  border: 1px solid var(--bh_color_gray_300);
  border-radius: 50%;
  counter-increment: accordion-counter;
  content: counter(accordion-counter);
  z-index: 1;
}
.board_list .faq_wrap.numbering .bh_toggle_list.active::before {
  color: #ffffff;
  background: var(--bh_color_main);
}
.board_list .faq_wrap.numbering .bh_toggle_list::after {
  position: absolute;
  top: 7px;
  left: 15px;
  display: block;
  width: 45px;
  height: 45px;
  background-color: var(--bh_color_gray_50);
  border: 1px solid var(--bh_color_gray_300);
  border-radius: 50%;
  content: "";
}
.board_list .faq_wrap .tool_wrap .bd_btn_wrap {
  margin-top: 10px;
}
.board_list .faq_wrap .tool_wrap .bd_btn_wrap > a {
  font-size: 12px;
}
.board_list .faq_wrap .tool_wrap .bd_btn_wrap > a:hover {
  text-decoration: underline;
}
/*# sourceMappingURL=43db0cb8d50c6c5d28ef25def9ef4b6188e5c135.faq.scss.map */
