@charset "utf-8";

/* ### 기본 스타일 커스터마이징 시작 ### */
#hd_wrapper::before {
    background-color: #000;
}
/* 게시판 버튼 */
/* 목록 버튼 */
#bo_list a.btn_b01 {}
#bo_list a.btn_b01:focus, #bo_list .btn_b01:hover {}
#bo_list a.btn_b02 {}
#bo_list a.btn_b02:focus, #bo_list .btn_b02:hover {}
#bo_list a.btn_admin {} /* 관리자 전용 버튼 */
#bo_list a.btn_admin:focus, #bo_list a.btn_admin:hover {}

/* 읽기 버튼 */
#bo_v a.btn_b01 {}
#bo_v a.btn_b01:focus, #bo_v .btn_b01:hover {}
#bo_v a.btn_b02 {}
#bo_v a.btn_b02:focus, #bo_v .btn_b02:hover {}
#bo_v a.btn_admin {} /* 관리자 전용 버튼 */
#bo_v a.btn_admin:focus, #bo_v a.btn_admin:hover {}

/* 쓰기 버튼 */
#bo_w .btn_confirm {} /* 서식단계 진행 */
#bo_w .btn_submit {}
#bo_w .btn_cancel {}
#bo_w .btn_frmline {} /* 우편번호검색버튼 등 */

/* 읽기 내 테이블 */
#bo_v .tbl_head01 {}
#bo_v .tbl_head01 caption {}
#bo_v .tbl_head01 thead th {}
#bo_v .tbl_head01 thead a {}
#bo_v .tbl_head01 thead th input {} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
#bo_v .tbl_head01 tfoot th {}
#bo_v .tbl_head01 tfoot td {}
#bo_v .tbl_head01 tbody th {}
#bo_v .tbl_head01 td {}
#bo_v .tbl_head01 a {}
#bo_v td.empty_table {}

/* 쓰기 테이블 */
#bo_w table {}
#bo_w caption {}
#bo_w .frm_address {}
#bo_w .frm_file {}
#bo_w .frm_info {}

#bo_w .tbl_frm01 {}
#bo_w .tbl_frm01 caption {}
#bo_w .tbl_frm01 th {}
#bo_w .tbl_frm01 td {}
#bo_w .tbl_frm01 textarea, #bo_w .frm_input {}
#bo_w .tbl_frm01 textarea {}
/*
#bo_w .tbl_frm01 #captcha {}
#bo_w .tbl_frm01 #captcha input {}
*/
#bo_w .tbl_frm01 a {}

#bo_w .required, #bo_w textarea.required {}

/* ### 기본 스타일 커스터마이징 끝 ### */
#container {
    background-color: #F9FAFB;
}
section {
    width: initial;
}
.qa_write {
    display: flex;
    justify-content: center;
    gap: var(--space-16);
    padding-top: var(--space-28);
}
.qa_write .write_div {
   display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.qa_write .write_div > *{
    width: 100%;
}
@media (max-width: 797px) {
    .qa_write {
        flex-direction: column;
    }
}
.img__wrap {
    padding-left: var(--space-5);
    width: auto;
    height:97px;
}
.qa_process {
    
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    border-radius: var(--space-4);
    border: 1px solid var(--color-gray-200);
    background-color: var(--color-white);
}
.qa_process > p {
    padding-bottom: var(--space-4);
    color: var(--color-gray-600);
    font-size: var(--space-5);
    font-weight: 600;
    line-height: 28px;
}
.qa_process > ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}
.qa_process > ul > li {

    display: grid;
    grid-template-columns: fit-content(24px) 1fr;
    gap: 0 var(--space-3);
}

.qa_process > ul > li > b {  
    color: var(--color-gray-600);
    font-size: var(--space-4);
    line-height: 24px;
    font-weight: 500;
}
.qa_process > ul > li > p {  
    padding-left: var(--space-8);
    grid-column: 1 / 3; 
    color: var(--color-gray-400);
    font-size: var(--space-3_5);
    line-height: 20px;
}
.qa_write .section__title_wrap {
    display: flex;
    flex-direction: column;
    align-items:flex-start;
}
.qa_write .section__title_dec {
    font-size: var(--font-size-lg);
    color: var(--color-gray-500);
    text-align: left;
}
.precaution {
    margin-top: var(--space-8);
    padding: var(--space-6);
    display: grid;
    grid-template-columns: fit-content(24px) 1fr;
    gap: 0 var(--space-3);
    border-radius: var(--space-4);
    background: var(--color-sky-50);
}
.precaution > ul {
    padding-left: var(--space-8);
    grid-column: 1 / 3; 
    color: var(--color-gray-500);
    font-size: var(--space-3_5);
    line-height: 20px;
}

.form-wirte__wrap {
    
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    border-radius: var(--space-4);
    background-color: var(--color-white);
    
}
.form_ul {
        display: flex;
        flex-direction: column;
        gap: var(--space-6);
    }
li.checkbox__wrap {
    display:flex;
    flex-direction: column;
    }
li label {
        font-size: var(--font-size-base);
        color: var(--color-gray-600);
    }
    .form__select {
        width: 100%;
        padding-left: 10px;
    }
.checkbox__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: var(--space-3);
}
.checkbox__list .checkbox {
    padding: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
}
.form-wirte__wrap li.checkbox .checkbox__list .checkbox span, .form__text {
    padding-bottom: 8px;
    color: #374151;

    font-size: 16px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
}
.input_group {
    display: flex;
    gap: var(--space-2);
    flex-direction: column;
}
.input_group > div {
    display: flex;
    flex-direction: column;
}

.input_group:has(#qa_hp){
flex-direction: column;
}
.input_group:has(#qa_email){
flex-direction: column;
}
.frm_input {
    border-radius: 16px;
}
#bo_w select.form__select {
    border: 1px solid #E5E7EB;
}

.point__red {
    color: #EF4444;
}
.label_text {
    padding-bottom: 8px;
}
.write_div {
    width:100%;
}

.form-wirte__wrap .btn_submit {
width: 100%;
 border-radius: 10px;
 background-color: #BAE4CE !important;
 text-align: center;
    }
.btn_b01 {
    display: block;
    border-radius: 16px;
    text-align: center;
}


#bo_cate_ul {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    font-size: var(--font-size-base);
}

/* 게시판 목록 */
.all_chk{margin:10px 0}
#bo_list{margin:0 auto;max-width:1200px;padding:10px}
.qa_list{border-top:1px solid #000}
.qa_list li{padding: 15px;position:relative;border-bottom: 1px solid #e6e6e6;}

#bo_list .li_stat{float:right;display:inline-block;height:25px;padding:0 10px;border-radius:15px;margin-top:3px}
#bo_list .txt_rdy{border:1px solid #BAE4CE;color:#2A5A41;line-height:23px}
#bo_list .txt_done{background:#BAE4CE;color:#fff;line-height:25px}

#bo_list .li_title{display: block;font-weight: bold;margin: 5px 0;}
#bo_list .li_title strong{color: #2A5A41 !important;font-weight: normal;text-decoration: none;font-size: 0.92em;}
#bo_list .li_info{margin: 10px 0 0;line-height: 28px;color: #666;position: relative;padding-top: 3px;} 
#bo_list .li_info:after {display:block;visibility:hidden;clear:both;content:""}#bo_list .profile_img img{border-radius:50%;}
#bo_list .li_sbj{display:inline-block;font-weight: bold;font-size: 1.083em;}

#bo_cate h2 {width:0;height:0;font-size:0;line-height:0;overflow:hidden}
#bo_cate {background:#fff;color:#333;border-bottom:1px solid #eee;
white-space: nowrap;overflow-x: auto;
-webkit-overflow-scrolling: touch;
padding-top: 130px;
-ms-overflow-style: -ms-autohiding-scrollbar; }
#bo_cate::-webkit-scrollbar {display: none;}
#bo_cate ul{margin:0 auto;max-width:1200px;padding:0 10px}
#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:""} 
#bo_cate li{display:inline-block; width: 100px; text-align: center;}
#bo_cate li a{display:block;padding:0 15px;line-height:55px;color:#333947}
#bo_cate #bo_cate_on{position:relative;font-weight:bold;color:#2A5A41; border-radius: 20px; }
#bo_cate #bo_cate_on:before{width:100%;content:'';height:2px;background:#2A5A41;position:absolute;bottom:0;left:0}


/* 게시판 목록 공통 */
.bo_fx {margin:20px 0;padding:5px 10px;text-align:right}
.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
.bo_fx ul {margin:0;padding:0;list-style:none}
.bo_fx li{display:inline-block}
#bo_list_total {float:left;padding:0;height:2.5em;line-height:2.5em}
.bo_notice td {background:#f7f7f7}
.bo_notice td a {font-weight:bold}
.td_num strong {color:#000}
.bo_cate_link {display:inline-block;margin:0 3px 0 0;padding:0 6px 0 0;border-right:1px solid #e7f1ed;color:#999 !important;font-weight:bold;text-decoration:none} /* 글제목줄 분류스타일 */
.bo_current {color:#2A5A41}
.td_subject img {margin-left:3px}
#bo_list .cnt_cmt {display:inline-block;margin:0 0 0 3px;font-weight:bold}

#bo_sch {float: right;background:#fff;position:relative;margin:20px 0;border-radius:3px}
#bo_sch:after {display:block;visibility:hidden;clear:both;content:""}
#bo_sch legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
#bo_sch .sch_input{width:200px;height:42px;border:1px solid #ddd;padding:0;background-color:transparent;padding:0 40px 0 10px;vertical-align:top}
#bo_sch .sch_input:focus{outline:none;border-bottom:2px solid #2A5A41}
#bo_sch .sch_btn{height:42px;position:absolute;color:#aaa;top:0;right:0;border:0;width:40px;background:none;font-size:15px;vertical-align:top}


/* 게시판 쓰기 */
#bo_w #wr_email, #bo_w #wr_homepage, #bo_w #wr_subject {width:100%}
.btn_b01.btn, .btn_b02.btn{border-radius:10px}
#char_count_desc {display:block;margin:0 0 5px;padding:0}
#char_count_wrp {margin:5px 0 0;text-align:right}
#char_count {font-weight:bold}

#qa_subject {width:100%}

/* 게시판 읽기 */
#bo_v {margin:0 auto;max-width:1200px;padding:130px 10px 10px 10px}

#bo_v .bo_v_wr{}

#bo_v_table {margin:0 0 5px;padding:0 10px;color:#999;font-size:0.9em;font-weight:bold}

#bo_v_title {padding:0 0 10px; display:flex; flex-direction: column; gap: 10px; font-size:1.2em;}
#bo_v_title span{display:block;font-size:13px;color:#92C4AB}

#bo_v_info {padding:0 0 10px;border-bottom:1px solid #eee;position:relative;}
#bo_v_info h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_info strong {display:inline-block;margin:0 ;font-weight:normal}
#bo_v_info .info_date{position:absolute;top:0;right:0;color:#777}
#bo_v_info .profile_img img{border-radius:50%}

#bo_v_file {}
#bo_v_file h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_file ul {margin:0;padding:0;list-style:none}
#bo_v_file li {padding:0 10px;border-bottom:1px solid #eee;background:#f7f7f7}
#bo_v_file a {display:inline-block;padding:5px 0;color:#000;text-decoration:none}
#bo_v_file a:focus, #bo_v_file a:hover, #bo_v_file a:active {text-decoration:none}
.bo_v_file_cnt {display:inline-block;margin:0 10px}

#bo_v_link {}
#bo_v_link h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_link ul {margin:0;padding:0;list-style:none}
#bo_v_link li {padding:0 10px;border-bottom:1px solid #eee;background:#f7f7f7}
#bo_v_link a {display:inline-block;padding:5px 0;color:#000;text-decoration:none}
#bo_v_link a:focus, #bo_v_link a:hover, #bo_v_link a:active {text-decoration:none}
.bo_v_link_cnt {display:inline-block;margin:0 10px}

#bo_v_contact {padding: 20px 10px 20px 20px;border-bottom:1px solid #eee;background-color: #eee;}
#bo_v_contact h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_contact dl {margin:0;padding:15px 0;display:flex; white-space: nowrap;color:#666;list-style:none}
#bo_v_contact dl:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_contact dt, #bo_v_contact dd {float:left;margin:0}
#bo_v_contact dt {clear:both;padding:3px 0 ;margin-right: 5px;width:30px;text-align:center;font-weight:bold}
#bo_v_contact dd {padding:3px 0;width:80%}

#bo_v_top {margin:20px 0 }
#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_top h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_top ul {margin:0;padding:0;list-style:none}

#bo_v_bot {padding:0 10px}
#bo_v_bot:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_bot h2 {position:absolute;font-size:0;text-indent:-9999em;line-height:0;overflow:hidden}
#bo_v_bot ul {margin:0;padding:0;list-style:none}

.bo_v_nb {float:left}
.bo_v_nb li {float:left;margin-right:5px}
.bo_v_com {float:right}
.bo_v_com li {float:left;margin-left:5px}

#bo_v_atc {padding:10px;min-height:100px}
#bo_v_atc_title {margin:0;padding:0;height:0;overflow:hidden}

#bo_v_img {margin:0 0 10px;width:100%;overflow:hidden;zoom:1}
#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_img img {margin-bottom:15px;max-width:100%;height:auto}

#bo_v_con {margin-bottom:20px;width:100%;line-height:1.7em;word-break:break-all;overflow:hidden}
#bo_v_con a {color:#000;text-decoration:underline}
#bo_v_con img {max-width:100%;height:auto}

#bo_v_act {margin-bottom:20px;text-align:center}
#bo_v_act a {margin-right:5px;vertical-align:top}
#bo_v_act span {display:inline-block;margin-right:5px;padding:0 10px;border:1px solid #eee !important;background:#fafafa !important;color:#000 !important;text-decoration:none !important;line-height:2em;vertical-align:top}
#bo_v_act strong {color:#2A5A41}
#bo_v_act_good, #bo_v_act_nogood {display:inline-block;width:1px;height:1px;font-size:0;line-height:0;overflow:hidden}
.view_req {
    display: flex;
    gap: 10px;
}
.view_req li {
    display: flex;
    align-items: center;
    gap: 5px;
}
#bo_v_sns {margin:0 0 20px;padding:0;list-style:none;zoom:1}
#bo_v_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_v_sns li {float:left;margin:0 5px 0 0}

#bo_v_addq {margin:0 0 30px;text-align:right}

#bo_v_ans {padding-bottom: 100px;}
#bo_v_ans h2 {font-size:1.2em;margin:10px 0}
#bo_v_ans h2 span{display:inline-block;margin-right:10px}
#bo_v_ans h2 .tit_rpl{display:inline-block;font-size:11px;padding:0 5px;line-height:23px;font-weight:normal;background:#646982;color:#fff;}
#bo_v_ans #ans_datetime {padding:5px 0 10px;border-bottom:1px solid #eee;color:#777}
#bo_v_ans #ans_con {margin:10px 0 ;line-height:1.8em}
#bo_v_ans #ans_con img{max-width:100%;height:auto}
#bo_v_ans #ans_add {text-align:right}
#bo_v_ans #ans_msg {padding:40px 0;background:#f2f5f9;text-align:center}
#bo_v_ans .btn_submit{width:100%;height:40px;border-radius:35px}
#bo_v_ans .btn_confirm{margin:0 10px}

#bo_v_rel {}
#bo_v_rel .list_01{padding:0}
#bo_v_rel .list_01 li{padding:0}
#bo_v_rel h2 {margin:0 0 10px;font-size:1.2em}
#bo_v_rel .li_stat{float:right;display:inline-block;height:25px;padding:0 10px;border-radius:15px;margin-top:3px}
#bo_v_rel .txt_rdy{border:1px solid #ff63ab;color:#ff63ab;line-height:23px}
#bo_v_rel .txt_done{background:#ff63ab;color:#fff;line-height:25px}

#bo_v_rel .li_title{display: block;font-weight: bold;margin: 5px 0; 0}
#bo_v_rel .li_title strong{color: #3ca1ff !important;font-weight: normal;text-decoration: none;font-size: 0.92em;}
#bo_v_rel .li_info{padding: 10px 0 ;line-height: 28px;color: #666;position: relative;} 
#bo_v_rel .li_info:after {display:block;visibility:hidden;clear:both;content:""}#bo_list .profile_img img{border-radius:50%;}
#bo_v_rel .li_sbj{display: inline-block;font-weight: bold;margin: 5px 0;font-size: 1.083em;}



/* 게시판 댓글 */
#bo_vc {margin:0 0 5px;padding:15px 15px 5px;border-top:1px solid #cfded8;border-bottom:1px solid #cfded8;background:#f7f7f7}
#bo_vc h2 {margin-bottom:5px}
#bo_vc article {padding:0 0 5px;border-top:1px dotted #ccc}
#bo_vc header {position:relative;padding:13px 0 5px}
#bo_vc header .icon_reply {position:absolute;top:13px;left:-20px}
#bo_vc .sv_member, #bo_vc .sv_guest {font-weight:bold}
.bo_vc_hdinfo {display:inline-block;margin:0 10px 0 5px}
#bo_vc h1 {width:0;height:0;font-size:0;line-height:0;overflow:hidden}
#bo_vc a {color:#000;text-decoration:none}
#bo_vc p {padding:0 0 5px;line-height:1.8em}
#bo_vc p a {text-decoration:underline}
#bo_vc_empty {margin:0;padding:15px !important;border-bottom:1px dotted #ccc;text-align:center}
#bo_vc fieldset {margin:0 0 10px;padding:0}
#bo_vc #bo_vc_winfo {float:left}
#bo_vc footer {zoom:1}
#bo_vc footer:after {display:block;visibility:hidden;clear:both;content:""}

.bo_vc_act {float:right;margin:0;list-style:none}
.bo_vc_act:after {display:block;visibility:hidden;clear:both;content:""}
.bo_vc_act li {float:left;margin-left:5px}

#bo_vc_w {position:relative;margin-bottom:10px;padding:0 15px 15px;border-bottom:1px solid #cfded8}
#bo_vc_w h2 {padding:10px 0 5px}
#bo_vc_w #char_cnt {display:block;margin-bottom:5px}
#bo_vc_w textarea {width:99%}

#bo_vc_sns {margin:0;padding:0;list-style:none;zoom:1}
#bo_vc_sns:after {display:block;visibility:hidden;clear:both;content:""}
#bo_vc_sns li {float:left;margin:0 10px 0 0}
#bo_vc_sns input {margin:0 0 0 5px}

#bo_vc form {padding:0}

#bo_w{max-width:1200px;margin:0 auto;padding:130px 10px 10px 10px}
@media (max-width: 639px) {
    #bo_w {padding: 30px 20px 20px 20px}
}
#bo_w 
#bo_w .form_01{margin:10px 0}
#bo_w  select{border:1px solid #3497d9;background:#fff;width:100%}
#bo_w .bo_w_link label{position:absolute;top:1px;left:1px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;background:#eee;text-align:center}
#bo_w .bo_w_link .frm_input{padding-left:50px}
#bo_w .bo_w_flie .lb_icon{position:absolute;top:0px;left:0px;border-radius:3px 0 0 3px;height:38px;line-height:38px;width:40px;background:#eee;text-align:center}
#bo_w .bo_w_flie .frm_file{padding-left:50px;}
#bo_w .bo_w_flie .file_wr{border:1px solid #ccc;background:#fff;color:#000;vertical-align:middle;border-radius:3px;padding:5px;height:40px;margin:0}
#bo_w .bo_w_flie .frm_input{margin:5px 0 0 }
.write_div{margin:20px 0;text-align:right}

