@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
#skip_nav{
    position: relative;
    z-index: 2000;
}
#skip_nav a {
    position: absolute;
    top: -32px;
    left: 0;
    width: 260px;
    border: 1px solid #fff;
    background: #333;
    text-align: center;
}
#skip_nav a:active, #skip_nav a:focus{
    top: 0;
    text-decoration: none;
    z-index: 1000;
}
#skip_nav span {
    display: inline-block;
    padding: 2px 6px;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
    letter-spacing: -1px;
    white-space: nowrap;
}


/* layout */
#wrap{
    width: 100%;
    min-width: 1620px;
    /* overflow: hidden; */
    /* background-color: #fafafa; */
}
header{
    z-index: 100;
    /*position: relative;*/
    position: fixed;
    display: flex;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 10px 40px 0px;
    background: #fff;
    font-size: 1.5rem;
}
header.fixed{
    background: #fff;
    border-bottom: 1px solid #dedede;
}

#lnb.fixed{
    position: fixed;
    z-index: 4;
}
main{
    padding: 0 0 0px;
    margin: auto;
}

.container{
    padding-bottom: 0;
    position: relative;
    height: 100%;
    /* height: 850px; */
    /* overflow: hidden; */
    /* background: #fafafa; */
}
.container::before{
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    /* height: 850px; */
    top: 0;
    left: 0;
    z-index: -1;
    background: url("/user/images/bg.jpg");
    background-size: cover;
    z-index: -4;
}
.container>div{
    /* height: 1080px; */
    /* height: 100%; */
    height: 850px;
    /*height: 850px;*/
    /*overflow: hidden;*/
    position: relative;
}
/*.container>div::before, .container>div::after{
    display: block;
    position: absolute;
    content: "";
    z-index: -1;
}
#section-1{
    background: url("/user/images/screen.jpg");
    background-size: cover;
}
#section-2{
    background: url("/user/images/screen2.jpg");
    background-size: cover;
}
#section-3{
    background: url("/user/images/screen3.jpg");
    background-size: cover;
}
#section-4{
    background: url("/user/images/screen4.jpg");
    background-size: cover;
}
#section-5{
    background: url("/user/images/screen5.jpg");
    background-size: cover;
}*/

/* 좌측 스크롤 내비게이션 */
.navi-main {
    display: flex;
    z-index: 10;
    position: fixed;
    height: 100%;
    min-height: 73.5rem;
}
#menu-section {
    list-style: none;
    margin-block-start: 7em;
    margin-block-end: 1em;
    margin-inline-start: 20px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    padding-top: 10rem;
}
#menu-section::after{    
    content: "";
    display: block;
    position: absolute;
    top: 19rem;
    left: 2.5rem;
    width: 0.1rem;
    height: 12rem;
    background: #B9B9B9;
    z-index: -1;
}
#menu-section li{
    position : relative;
    margin-top : 1rem;
    padding-left: 10px;
}
/*#menu-section li:last-child:after{
    display: none;
}*/
/* #menu-section li::after {
    content: "";
    display: block;
    position: absolute;
    top: 1.7rem;
    left: -1.25rem;
    width: 0.2rem;
    height: 2rem;
    background: #B9B9B9;
} */
#menu-section li a {
    font-size: 1.2rem;
    color: #666;
    font-weight: 700;
}
#menu-section li a::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -1.7rem;
    width: 1rem;
    height: 1rem;
    margin-top: -0.35rem;
    border-radius: 50%;
    background: #B9B9B9;
}
#menu-section li:hover a, #menu-section li.on a{
    color: var(--color-main);
    font-size: 1.5rem;
}
#menu-section li:hover a::before, #menu-section li.on a::before {
    background: var(--color-main);
    transform: scale(1.5);
}
.container .sns-box{
    z-index: 10;
    height: unset;
    position: fixed;
    top: 40em;
    /*top: 12em;*/
    left: 25px;
    overflow: unset;
}
.container .sns-box a{
    display: block;
}
.container .sns-box img{
    width: 100%;
}
.container .sns-box li{
    width: 42px;
    padding-top: 12px;
}
.scroll-icon{
  position: relative;
  margin: 100px 0 0 40px;
  padding-top: 60px;
  font-size: 17px;
  text-align: center;
  color: var(--color-main);
}
.scroll-icon::after{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 30px;
  height: 50px;
  border: 2px solid var(--color-main);
  border-radius: 50px;
  box-sizing: border-box;
}
.scroll-icon::before {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--color-main);
  border-radius: 100%;
  -webkit-animation: scroll-icon 2s infinite;
  animation: scroll-icon 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes scroll-icon {
  0% {
    -webkit-transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll-icon {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.sub_banner{
    position: relative;
    width: 100%;
    height: 170px;
    background: url(/user/images/sub_banner1.png) no-repeat 50% 50%;
    background-size: cover;
    color: white;
}
.sub_banner .sub_tit{
    width: 96%;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    background-color: rgba(255, 255, 255, 0) !important;
}

/* etc */
.hide{
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: none;
    clip: rect(1px,1px,1px,1px);
}
.none{
    display: none !important;
}
.deg180{
    transform: rotate(180deg);
}
.active{
    top: 1080px;
}
/* .show{
    display: block;
} */
.justify-content-center{
    display: flex;
    justify-content: center;
}
.align-items-center{
    display: flex;
    align-items: center;
}
.swiper-pagination-bullet{
    border: 2px solid #666;
    opacity: 1;
    background: #eee;}
.swiper-pagination-bullet-active{
    border: 2px solid #000;
    opacity: 1;
    background: var(--color-main);
    /* background: #004d9f; */
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
    opacity: 1;
}
.swiper-button-next.swiper-button-disabled:after, .swiper-button-prev.swiper-button-disabled:after{
    color: #666;
    font-weight: 400;
}
.sel{
    min-width: 140px;
    margin-right: 4px;
    background: url(/user/images/icon/ic-arrow-down.png) no-repeat 88% 50%;
    background-size: 14px;
    border: 1px solid #666;
    border-radius: 5px;
  }
.sel_row{
    margin-bottom: 20px;
}
.sel_row.right{
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}
.sel_row.right.no_move{
    margin-top: 20px;
}
.sel_row.right .sq_btn{
    padding: 8px 40px;
    font-weight: 500;
}
.input_box{
    display: inline-block;
}

.request_popup .input_txt{
    margin-right: 4px;
    padding: 7px 16px;
    height: 100%;
    width: 25%;
    min-width: 225px;
    border: 1px solid #666;
    border-radius: 5px;
    font-size: 15px;
}
main .input_txt{
    margin-right: 4px;
    padding: 7px 16px;
    height: 100%;
    width: 25%;
    min-width: 225px;
    border: 1px solid #666;
    border-radius: 5px;
    font-size: 15px;
}

.input_txt:focus-visible{outline: 2px solid #111;}
.sq_btn{
    padding: 7px 18px;
    border: 1px solid #666;
    border-radius: 5px;
    font-size: 15px;
    color: #666;
    text-align: center;
}
.sq_btn.two{
    background-color: var(--color-main);
    color: #fff;
    border: 0;
}
.list_btn{
    font-weight: 500;
    margin-bottom: 20px;
}

/* 테이블 */
.table{
    width: 100%;
    margin-bottom: 30px !important;
}
.table thead th{
    padding: 20px 10px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #636363;
    font-size: 17px;
    font-weight: 500;
}
.table th{
    padding: 15px 10px;
    text-align: center;
    vertical-align: middle;
}
.table td{
    padding: 15px 10px;
    /* border-bottom: 1px solid #ccc; */
    text-align: center;
    vertical-align: middle;
    color: #636363;
    word-break: break-all;
}
.table td.tit, .table .tit_cont, .table .tit_commu{
    text-align: left;
    padding: 15px 3%;
}
.table .tit_commu a{
    display: block;
    padding: 2px;
    /*display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;*/
}
.table .tit_commu a .tit_commu_click{
    display: flex;
    align-items: center;
    gap: 6px;
    /*overflow: hidden;
    text-overflow: ellipsis;
    width: 70%;*/
}
.table .tit_commu a .tit_commu_click span{
    /*text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;*/
    width: 100%;
}
.consult_main_tb .tit_cont{
    padding: 15px 3%;
}
.program_tb .tit_cont{
    padding: 15px 2%;
}
.table .btn_down{
    display: inline-block;
    width: 44px;
    height: 36px;
    background: url(/user/images/icon/ic-download.png) no-repeat 50% 50%;
}


/* pagination */
.card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
}
.card-footer {
    display: block;
}
.card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
}
.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 0.875rem;
    --bs-pagination-color: #677788;
    --bs-pagination-bg: #fff;
    --bs-pagination-border-width: 0;
    --bs-pagination-border-color: #e7eaf3;
    --bs-pagination-border-radius: 0.3125rem;
    --bs-pagination-hover-color: var(--color-main);
    --bs-pagination-hover-bg: #f8fafd;
    --bs-pagination-hover-border-color: #e7eaf3;
    --bs-pagination-focus-color: var(--color-main);
    --bs-pagination-focus-bg: #f8fafd;
    --bs-pagination-focus-box-shadow: 0 0 1rem 0rgba(140, 152, 164, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--color-main);
    --bs-pagination-active-border-color: var(--color-main);
    --bs-pagination-disabled-color: #8c98a4;
    --bs-pagination-disabled-bg: #fff;
    --bs-pagination-disabled-border-color: #e7eaf3;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    justify-content: center!important;
}
.page-link {
    position: relative;
    display: block;
    padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
    font-size: var(--bs-pagination-font-size);
    color: var(--bs-pagination-color);
    background-color: var(--bs-pagination-bg);
    border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.page-link {
    min-width: 2.25rem;
    text-align: center;
    cursor: pointer;
    border-radius: 0.3125rem;
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--bs-pagination-active-bg);
    border-color: var(--bs-pagination-active-border-color);
}
.page-item:first-child .page-link {
    border-top-left-radius: var(--bs-pagination-border-radius);
    border-bottom-left-radius: var(--bs-pagination-border-radius);
}
.page-item:last-child .page-link {
    border-top-right-radius: var(--bs-pagination-border-radius);
    border-bottom-right-radius: var(--bs-pagination-border-radius);
}


/* main */
.main_index{
    padding: 0;
}
.main_banner{
    width: 80%;
    margin: 0 auto;
    /* min-width: 1300px;
    height: 650px;
    background-color: var(--color-main); */
}


/* header */
header .logo{
    width: 180px;
}
header .logo a{
    display: block;
    width: 100%;
    height: 100%;
}
header .logo a img{
    width: 100%;
    height: 100%;
}
header nav{
    /*width: 60%;*/
    width: 40%;
    /*margin: 0 auto;*/
    margin-left: 4%;
    margin-right: 6%;
}
header nav .gnb_depth1{
    display: flex;
    justify-content: center;
    align-items: center;
}
header nav .gnb_depth1 .depth1_item{
    margin-left: 30px;
    padding: 30px 20px;
}
header nav .gnb_depth1 .depth1_item:first-child{
    margin-left: 0;
}
header nav .depth1_item>a{
    position: relative;
    display: block;
    font-size: 20px;
    font-weight: bold;
}
header nav .gnb_depth1 .depth1_item>a::after{
    position: absolute;
    bottom: -6px;
    content:'';
    display: block;
    width: 100%;
    height: 3px;
    opacity: 0;
    /*background: var(--color-sub1);*/
    background: var(--color-main);
    transition: ease 0.3s;
}
header nav .gnb_depth1 .depth1_item:hover>a::after,header nav .gnb_depth1 .depth1_item:focus-within>a::after{
    opacity: 1;
}

/* header nav .gnb_depth1 .depth1_item:focus-within .submenu, header nav .gnb_depth1 .depth1_item:hover .submenu{
    display: block;
} */

header nav .submenu{
    position: absolute;
    width: 100%;
    top: 103px;
    left: 0;
    background: var(--color-white);
    display: none;
    border-top: 1px solid #eee;
    box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.1);
}
header nav .submenu.active{
    display: block;
}
header nav .submenu:before{
    content:'';
    position:absolute;
    top:0;
    right:50%;
    width:50%;
    height:100%;
    margin-right:650px;
    /*background: var(--color-sub1);*/
    background: var(--color-main);
}
header nav .submenu:after{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    width:50%;
    height:100%;
    margin-left:600px;
    background: #fff;
}
header nav .submenu_inner{
    max-width: 1300px;
    display: flex;
    justify-content: center;
    margin: auto;
}

header nav .menu_title{
    width: 10%;
    /*background: var(--color-sub1);*/
    background: var(--color-main);
    /*color: var(--color-black);*/
    color: var(--color-white);
    text-align: right;
    padding: 40px 20px 0 0;
    font-size: 22px;
    font-weight: 500;
}

header nav .gnb_depth2{
    display: flex;
    width: 90%;
    background: #fff;
}
header nav .depth2_item{
    width: 20%;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    margin: 40px 0;
    margin-left: 35px;
}

header nav .depth2_item>a{
    display: inline;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -1.4px;
}
header nav .depth2_item a:hover{
    /*color: var(--color-sub1);*/
    color: var(--color-main);
}
header nav .gnb_depth3{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
header nav .gnb_depth3 li{
    line-height: 2;
}
header nav .gnb_depth3 li a{
    font-size: 17px;
    padding-left: 10px;
    position: relative;
}
header nav .gnb_depth3 a::before{
    position: absolute;
    display: block;
    content: "·";
    left: 0;
}
header nav .gnb_depth4{
    padding-left: 12px;
}
header nav .gnb_depth4 li{
    line-height: 1.6;
}
header nav .gnb_depth4 li a{
    color: #555;
    padding-left: 10px;
    position: relative;
}
header nav .gnb_depth4 a::before{
    position: absolute;
    display: block;
    content: "-";
    left: 0;
}

header .hd_right{
    display: flex;
    align-items: center;
    gap: 25px;
    width: 30%;
    justify-content: space-between;
}
header .hd_right a{
    display: block;
}
header .hd_right .m_aside{
    display: none;
}
header .link_box{
    display: flex;
    flex-direction: row;
    align-items: center;
}
header .link_box a:nth-child(2){
    margin-left: 20px;
}
.srch_m{
    display: none;
}
.srch_box_m{
    width: 28px;
    height: 28px;
  }
/* .srch_box_m .srch_btn_tg img{
   width: 28px;
   height: 28px;
} */
.srch_m_inner{
  z-index: -1;
  position: absolute;
  width: 100%;
  left: 0;
  top: 100px;
  transition: 0.3s;
  padding: 16px 40px;
  background: #fff;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.1);
}

.srch_m_inner .srch_txt{
    display: flex;
    padding: 8px 20px;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 30px;
}
.srch_m_inner label{
    width: calc(100% - 40px);
}
.srch_m_inner input{
    width: 100%;
    font-size: 17px;
}
.srch_m_inner .srch_btn{
    margin-left: 10px;
}
.srch_box_m .srch_btn_tg {
  z-index: 2;
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  cursor: pointer;
  -webkit-touch-callout: none;
  background: url("/user/images/icon/search.svg") no-repeat center;
  background-size: cover;
  border: none;
}
.modal {
    z-index: 20;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}


/* 모바일 메뉴 */
header .m_menu{
    position:fixed;
    top:0;
    right:0;
    width:60%;
    height:100%;
    z-index:100;
    box-shadow:0px 0px 19px #000;
    padding: 80px 40px;
    background: #fff;
    overflow-y: scroll;
}
header .m_menu .m_menu_close{
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    background: url("/user/images/icon/ic-close.png");
    background-size: cover;
    width: 30px;
    height: 30px;
    font-size: 0;
}
header .m_depth1 .m_depth1_item>a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    padding: 16px 10px;
    border-bottom: 1px solid var(--color-main);
}
.m_d1Toggle, .m_d2Toggle{
    display: inline-block;
    font-size: 0;
    width: 20px;
    height: 20px;
    background: url("/user/images/icon/ic-arrow-down.png") center no-repeat;
}
.m_d2Toggle{
    /*position: absolute;
    top: 50%;
    right: 0;
    transform: translate(-10px, -10px);*/
    cursor: pointer;
}
header .m_depth2 .m_depth2_item{
    border-bottom: 1px solid #eee;
}
header .m_depth2 .m_depth2_item>div {
    position: relative;
    padding: 16px 10px 16px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* header .m_depth2 .m_depth2_item:last-child{
    margin-bottom: 30px;
} */
header .m_depth2 .m_depth2_item>a{
    /*display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;*/
    font-size: 18px;
    font-weight: 500;
}
header .m_depth3{
    padding: 16px 20px;
    background: #eee;
}
header .m_depth3 li{
    line-height: 2;
}
header .m_depth3 li a{
    display: block;
    font-size: 15px;
    padding-left: 10px;
    position: relative;
}
header .m_depth3 li a::before{
    position: absolute;
    display: block;
    content: "·";
    left: 0;
}
header .m_depth4{
    padding: 10px 16px;
    border: 1px solid #ccc;
    background: #f8f8f8;
    margin-top: 6px;
}
header .m_depth4 li a{
    display: block;
    padding-left: 10px;
    position: relative;
}
header .m_depth4 li a::before{
    position: absolute;
    display: block;
    content: "-";
    left: 0;
}
/* header .m_depth1 .m_depth1_item:focus-within .m_depth2,header .m_depth2 .m_depth2_item:focus-within .m_depth3{
    display: block;
} */
/* header .m_depth1 .m_depth1_item:focus-within .m_d1Toggle,header .m_depth2 .m_depth2_item:focus-within .m_d2Toggle{
    transform: rotate(180deg);
} */

#main{
    width: 1620px;
    /*overflow: hidden;*/
    padding-top: 100px;
    padding-bottom: 200px;
    display: flow-root;
}

/* LNB */
#lnb{
    width: 250px;
    float: left;
    margin-top: 20px;
    top: 0px;
}
#lnb .lnb-title{
    position: relative;
    font-size: 24px;
    overflow: hidden;
    background-color: var(--color-main);
    padding: 10px 0;
    border: 1px solid #666;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    text-align: center;
    color: var(--color-white);
    font-weight: bold;
}
#lnb .lnb-inner{
    border: 1px solid #666;
    border-top: 0;
    border-radius: 0 0 30px 30px;
    background: #fff;
    height: auto;
}

#lnb .lnb-inner .tree_list_wrap{
    #border: 1px solid #666;
    #border-top: 0;
    #border-radius: 0 0 30px 30px;
    background: #fff;
    height: auto;
    margin-bottom: 24px;
}

#lnb .lnb-depth1>li{
    position: relative;
    border-bottom: 1px solid #ccc;
    padding: 5px 5px;
    font-size: 20px;
    font-weight: bold;
}
#lnb .lnb-depth1>li:last-child{
    border-bottom: 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
#lnb .lnb-depth1>li.arr::after{
    display: block;
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: url("/user/images/icon/ic-arrow-down.png") no-repeat;
    background-position: 50% 50%;
    cursor: pointer;
}
#lnb .lnb-depth1>li.arr.on::after{
    transform: rotate(180deg);
}
/*#lnb .lnb-depth1>li ul{
    display: none;
}
#lnb .lnb-depth1>li.on ul{
    display: block;
} */
#lnb .lnb-depth1>li>a{
    /* display: block; */
    position: relative;
    width: 100%;
    color: #000;
}
#lnb .lnb-depth2{
    margin-top: 4px;
}
#lnb .lnb-depth2>li{
    font-size: 16px;
    font-weight: normal;
    position: relative;
    padding-left: 10px;
    margin-bottom: 2px;
}
#lnb .lnb-depth2>li.active{
    font-weight: 500;
    top: unset;
}
#lnb .lnb-depth2>li.active a,#lnb .lnb-depth2>li.active a::before{
    color: var(--color-main);
}
#lnb .lnb-depth2>li a::before{
    position: absolute;
    display: block;
    content: "·";
    left: 0;
}
#lnb .lnb-depth2>li:last-child{
    margin-bottom: 16px;
}
#lnb .lnb-depth2>li a{
    color: #333;
}
#lnb .lnb-depth3{
    margin: 14px 0;
    padding: 10px 20px;
    background: #f6f6f6;
}
#lnb .lnb-depth3>li{
    font-size: 16px;
    font-weight: normal;
    position: relative;
    margin-bottom: 12px;
}
#lnb .lnb-depth3>li:last-child{
    margin-bottom: 0;
}
#lnb .lnb-depth3>li a{
    color: #333;
}

/* article */
article{
    width: 1280px;
    margin: 46px auto 0;
    float: right;
}
.atc_srch{
    width: 100%;
    float: none;
}
.atc_board .cont_box{
    padding: 30px 0;
}
article .date{
    display: flex;
    justify-content: flex-end;
    color: #696969;
    font-size: 15px;
}
.title_box {
    display: flex;
    justify-content: space-between;
    /*padding: 0 18px 20px;*/
    padding-bottom: 10px;
}
.title_box .title_left{
    width: 90%;
}
.title_box .title_right{
    position: relative;
    width: 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.title_box .title_right a{
    display: block;
}
.title_box .title_right .btn {
    width: 37px;
    height: 37px;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    white-space: nowrap;
    text-align: center;
}
.title_box .title_right .btn-share{
    background: url("/user/images/icon/ic-share.png");
    background-size: cover;
}
.title_box .title_right .sns-share{
    display: none;
    position: absolute;
    padding: 10px 0;
    z-index: 500;
    /*top: 27px;*/
    right: 93px;
    width: 195px;
    line-height: 1;
    background-color: #fff;
    border: 1px solid #ccc;
}
.title_box .title_right .btn-print{
    background: url("/user/images/icon/ic-print.png");
    background-size: cover;
}
.title_box .title_right .sns-share .sns-list li {
  float: left;
  margin-left: 8px;
}
.title_box .title_right .sns-share .btn-close-share {
  width: 25px;
  height: 25px;
  margin: 8px 0 0 9px;
  background-image: url("/user/images/icon/ic-close.png");
}
article h2{
    position: relative;
    /* padding-left: 36px; */
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
}
/* path */
.path{
    /* margin: 20px auto 50px; */
    /* width: 1300px; */
    color: #666;
    margin-bottom: 8px;
}
.path ul{
    display: flex;
    /* justify-content: flex-end; */
    flex-wrap: wrap;
}
.path .path_item{
    padding: 0 6px 0 20px;
    position: relative;
}
.path .path_item:first-child{
    padding-left: 0;
}
.path .path_item:last-child{
    /* color: #1f8154; */
    color: var(--color-main);
}
.path_item+.path_item::before {
    content: url(/user/images/icon/ic-chevron.png);
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    color: #555;
}
.path .path_item img{
    vertical-align: sub;
}
/* article h2::before{
    background: url(/user/images/icon/ic-li1.png) no-repeat 50% 50%;
    background-size: 20px;
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 7px;
} */
article h3{
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
}
.atc_contents h3, .desc{
    position: relative;
    padding-left: 24px;
}
.atc_contents h3::before, .desc::before{
    /* background: url(/user/images/icon/ic-li2.png) no-repeat 50% 50%;
    background-size: 20px;
    width: 30px;
    height: 30px;
    top: 3px; */
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 13px;
    width: 12px;
    height: 12px;
    border: 3px solid var(--color-main);
    border-radius: 50%;
    /* width: 4px;
    height: 22px;
    background-color: var(--color-main);
    border-radius: 30px;
    top: 6px; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.desc::before{
    top: 4px;
}
.desc{
    margin-left: 20px;
    margin-bottom: 40px;
    font-size: 17px;
}
.desc.cr{
    margin-bottom: 0;
}
.cr2{
    margin-left: 36px;
    margin-bottom: 30px;
    font-size: 13pt;
}
.cont_box{
    width: 100%;
    padding: 30px 18px;
    /* padding: 50px 50px 100px 50px; */
    /* background-color: #fff; */
    border-top: 1px solid #eee;
    /* border-radius: 5px; */
    /* box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); */
}


/* contents page */
.atc_contents h2{
    margin-bottom: 10px;
}
.cont_box .tab_list{
    display: flex;
    margin-bottom: 45px;
    /* border-left: 1px solid #000; */
    /* border-bottom: 1px solid #000; */
    flex-wrap: wrap;
    gap: 10px;
}
.cont_box .tab_list li{
    min-width: 19%;
    /* margin-bottom: -1px; */
    border: 1px solid #ccc;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
}
.cont_box .tab_list li.on{
    background: var(--color-main);
    border: 1px solid var(--color-main);
}
.cont_box .tab_list li a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    padding: 10px;
}
.cont_box .tab_list li.on a{
    color: #fff;
}
.cont_box .cont{
    margin-bottom: 40px;
}
.cont_box .tab{
    display: none;
}
.cont_box .tab.on{
    display: block;
}
.cont_box table{
    margin: 10px auto;
    word-break: break-word !important;
}
.cont_txt{
    overflow: hidden;
    font-weight: 300;
    line-height: 1.5;
}
.cont_txt p{
    font-family: 'Noto Sans KR', sans-serif !important;
    word-break: break-all !important;
    word-wrap: break-word !important;
}
.cont_txt span{
    font-family: 'Noto Sans KR', sans-serif !important;
    word-break: break-all !important;
    word-wrap: break-word !important;
}
.cont_txt b{
    font-weight: bold;
}
.cont_txt>ul{
    margin-left: 40px;
}
.cont_txt ul li{
    /* list-style-position: inside;
    text-indent: -10px;
    padding-left: 20px; */
    font-family: 'Noto Sans KR', sans-serif !important;
}
.cont_txt ul ul li{
    margin-left: 30px;
}
.cont_txt ul ul ul li{
    margin-left: 60px;
}
.cont_txt caption, .consult_main_tb caption, .board_txt.answer caption{
    margin: 10px 0;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    border: none;
    clip: rect(1px,1px,1px,1px);
}
.cont_txt table th, .cont_txt table td{
    padding: 8px !important;
}
/* .cont_txt.miw_100 p img{
    width: 100% !important;
    height: auto !important;
} */


/* footer */
footer{
    width: 100%;
    min-height: 250px;
    border-top: 1px solid #ccc;
    background: #fff;
}
footer .footer_t {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1300px;
    margin: auto;
}
.footer_t > div{
    padding: 12px 40px;
    height: 60px;
}
footer .footer_t .mySwiper2 .swiper-wrapper{
    width: 100%;
    margin: auto;
}

footer .swiper-button-next-banner, footer .swiper-button-prev-banner{
    margin-left: 1px;
    margin-right: 1px;
    background-color: transparent;
}
footer .swiper-button-disabled::after{
    color: #ddd;}
footer .footer_t a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
footer .footer_t a img{
    display: block;
    height: 100%;
    max-width: 185px;
}
footer .footer_b{
    border-top: 1px solid #ccc;
    position: relative;
}
footer .footer_b_inner{
    width: 1300px;
    display: flex;
    margin: auto;
    padding: 20px 0;
    justify-content: space-between;
}
footer .footer_b h2{
    width: 10%;
    display: flex;
    flex-direction: column;
}
footer .footer_b h2 img{
    margin-top: 16px;
    width: 100%;
}
footer .footer_b h2 img:first-child{
    margin-top: 0;
}
footer .footer_b .footer_info{
    width: 85%;
    display: flex;
    justify-content: space-between;
}
footer .footer_b .footer_info ul{
    display: flex;
    margin-bottom: 16px;
}
footer .footer_b .footer_info ul li{
    margin-left: 16px;
}
footer .footer_b .footer_info ul li:first-child{
    margin-left: 0;
}
footer .footer_b .footer_info p,footer .footer_b .footer_info p a{
    color: #666;
    cursor: default;
}
footer .footer_b .footer_link{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
footer .footer_b .footer_link .family_sns{
    display: flex;
}
footer .footer_b .footer_link .family_select {
    margin-right: 6px;
    min-width: 200px;
}
footer .footer_b .footer_link .family_select select{
    background: #d8d8d8;
    width: 100%;
    padding: 6px 10px;
    border-radius: 15px;
}
footer .footer_b .footer_link .family_sns button{
    display: inline-block;
    padding: 3px 6px;
    background: #444;
    color: #fff;
    border-radius: 9px;
    font-size: 14px;
}
footer .footer_b .footer_link .family_sns button:focus-visible{
    outline: 2px solid #F15922;
}
footer .footer_b .footer_link .link_box{
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 16px;
}
footer .footer_b .footer_link .link_box a{
    display: block;
}
footer .footer_b .footer_link .link_box .link_left{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer .footer_b .footer_link .link_box .link_left a img{
    width: 128px;
    height: 30px;
    border: 1px solid #ccc;
    padding: 2px 10px;
}
footer .footer_b .footer_link .link_box .link_right a{
    height: auto;
    width: 87px;
}
footer .footer_b .footer_link .link_box .link_right a img{
    width: 100%;
    height: 100%;
}

/* 버튼들 */
.btn_top{
    z-index: 10;
    display: none;
    position: fixed;
    right: 100px;
    bottom: 100px;
    width: 120px;
    height: 120px;
    text-align: center;
    text-indent: -9999em;
    /* border: 2px solid #666; */
    background: url(/user/images/icon/btn-top.png) center no-repeat;
    background-size: 100%;
    /* color: #555; */
}
.btn_top:focus-visible {outline: 2px solid #F15922;}
/* .btn_top:after {
    content: 'TOP';
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-indent: 0;
} */
.btn_lg{
    display: block;
    padding: 16px 86px;
    border: #666 2px solid;
    border-radius: 100px;
    color: #666;
    font-size: 30px;
    font-weight: 600;
    cursor: default;
}
.btn_lg.active{
    border: 0;
    background: var(--color-main);
    color: #fff;
    cursor: pointer;
}
/*
button.gray.active.green{
    display: block;
    border: var(--color-sub2) 3px solid;
    border-radius: 30px;
    color: var(--color-sub2);
    font-weight: bold;
    font-size: 17px;
    padding: 12px 30px;
    background: var(--color-white);
} */

/* 반응형 */
@media screen and (max-width: 1499px) {
    header .hd_right{
        width: auto;
        justify-content: normal;
    }
    header .link_box{
        display: none;
    }
}
@media screen and (max-width: 1299px) {

    header .srch_box{display: none;}
    .srch_m{display: block;}

    header nav .depth1_item>a{
        font-size: 19px;
    }
    header nav .submenu{
        top: 99px;
    }

    main{
        /* width: 96%; */
        margin: 0 auto;
    }
    .srch_result{
        width: 100% !important;
    }
    .srch_result article h2{
        padding-left: 20px;
    }
    .container>div{
        height: 1024px;
    }
    .navi-main{
        display: none;
        /* display: block; */
        height: auto;
        min-height: auto;
        padding: 10px 0;
        left: 50%;
        transform: translate(-50%,0);
    }
    #menu-section{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-block-start: 0;
        margin-block-end: 0;
        margin-inline-start: 0;
        padding-inline-start: 0;
        padding-top: 0;
        gap: 10px;
    }
    #menu-section::after{
        display: none;
    }
    #menu-section li{
        margin-top: 0;
        padding-left: 0;
    }
    #menu-section li:before{
        display: none;
    }
    #menu-section li:hover a, #menu-section li.on a{
        font-size: 1.2rem;
    }
    #menu-section li.on:hover a::before{
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 2px;
    }
    .container .sns-box{
        padding: 0;
        top: unset;
        left: 10px;
        bottom: 40px;
    }
    .btn_lg{
        padding: 16px 80px;
        font-size: 24px;
    }
    .main_index{
        width: 100%;
    }
    
    .path{
        width: 100%;
    }
    footer .footer_t{
        padding: 0px 16px;
    }
    footer .footer_t {
        width: auto;
    }
    footer .footer_b_inner{
        width: 96%;
        display: block;
    }
    footer .footer_b h2{
        width: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    footer .footer_b h2 img{
        width: 130px;
        margin: 0 4px 16px;
    }
    footer .footer_b .footer_info{
        width: 100%;
        flex-wrap: wrap;
    }
    .scroll-icon{
      display: none;
    }

}
@media screen and (max-width: 1024px) {
    #wrap{
        min-width: auto;
        /*overflow: hidden;*/
    }
    header {
        font-size: 1.5rem;
        justify-content: space-between;
        padding: 12px 4%;
    }
    header .logo {
        width: 120px;
    }
    nav{
        display: none;
    }
    .srch_box_m {
        top: 34px;
    }
    .srch_m_inner{
        top: 65px;
    }
    header .hd_right .pc_sitemap{
        display: none;
    }
    header .hd_right .m_aside{
        display: block;
    }
    .navi-main{
        display: none;
    }
    .sub_banner .sub_tit{
        font-size: 28px;
    }
    #main{
        width: auto;
        padding-bottom: 60px;
    }
    #lnb{
        display: none;
    }
    article, .atc_board, .atc_srch{
        width: 94%;
        margin: 20px auto 0;
        float: none;
    }
    .atc_contents h2, article h2{
        font-size: 24px;
    }
    .atc_contents h3, article h3{
        font-size: 18px;
    }
    .atc_contents h3::before{
        top: 8px;
    }
    .path{
        font-size: 15px;
        line-height: 1.7;
    }
    .path .path_item{
        padding: 0 2px 0 16px;
    }
    .cont_box {
        padding: 3% 0;
    }
    .cont_box .tab_list{
        gap: 4px;
    }
    .cont_box .tab_list li{
        font-size: 16px;
    }
    .cont_box .tab_list li a{
        height: auto;
    }
    .cont_box p {
        font-size: 15px !important;
    }
    .cont_txt *{
        font-size: 15px !important;
    }
    .board .board_txt *{
        font-size: 15px !important;
    }
    .cont_txt table{
        width: 100% !important;
    }

    .table{
        font-size: 15px;
    }
    .table th{
        word-break: keep-all;
    }
    .table thead th{
        font-size: 15px;
    }
    .table .btn_down{
        width: 36px;
        border-radius: 10px;
    }
    .btn_top{
        right: 10px;
        width: 80px;
        height: 80px;
    }
    
    .title_box .title_left{
        width: 80%;
    }
    .title_box .title_right{
        width: 12%;
    }
    .title_box .title_right .sns-share{
        /*top: 13px;*/
        right: 125px;
    }
    .miw_100 p img{
        max-width: 100% !important;
        height: auto !important;
    }
    video{
        max-width: 100% !important;
        height: auto !important;
    }
    footer .footer_b .footer_link{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    footer .footer_b .footer_link .link_box{
        width: 30%;
    }
}
@media screen and (max-width: 821px) {
    header .m_menu{
        width: 70%;
        padding: 60px 16px;
    }
}
@media screen and (max-width: 767px) {
    header .m_depth1 .m_depth1_item>a{
        font-size: 17px;
    }
    header .m_depth2 .m_depth2_item>a{
        font-size: 16px;
    }
    /* header .m_depth2 .m_depth2_item:last-child{
        margin-bottom: 20px;
    } */
    header .m_depth3 li a{
        font-size: 14px;
    }
    #main{
        padding-top: 60px;
    }
    .title_box{
        flex-direction: column;
    }
    .title_box .title_left{
        width: 100%;
    }
    .title_box .title_right {
        width: 100%;
        justify-content: flex-end;
        gap: 10px;
    }
    .title_box .title_right .btn{
        width: 26px;
        height: 26px;
    }
    .title_box .title_right .sns-share{
        /*top: 21px;*/
        right: 91px;
        width: 200px;
    }
    .title_box .title_right .sns-list li img{
        width: 30px;
        height: 30px;
    }
    .title_box .title_right .sns-share .btn-close-share{
        margin: 3px 0 0 9px;
    }
    .sel_row{
        display:block;
    }
    .sel_row.right .sq_btn{
        padding: 7px 18px;
    }
    .sel{
        width: 100%;
        background: url(/user/images/icon/ic-arrow-down.png) no-repeat 98% 50%;
    }
    .sel.type2{
        margin-bottom: 4px;
    }
    .input_box{
        width: 100%;
        display: flex;
        gap: 4px;
    }
    .input_box > *{
        margin-top: 4px;
    }
    .sq_btn{
        min-width: 80px;
    }
    .table td{
        padding: 15px 5px;
    }
    .atc_board .input_txt{
        width: calc(100% - 74px);
    }
    .cont_txt>ul {
        margin-left: 26px;
    }
    .btn_lg{
        padding: 10px 24px;
        font-size: 16px;
    }
    .footer_t > div{
        height: 50px;
    }
    .btn_top{
        right: 10px;
        width: 52px;
        height: 52px;
        /* color: #555; */
    }
    /* .btn_top:after {
        top: 24px;
        font-size: 12px;
    } */
}
@media all and (max-width:479px) {
    header .m_menu{
        padding: 50px 16px;
    }
    header .m_depth1 .m_depth1_item>a{
        padding: 14px 10px;
    }
    header .m_depth2 .m_depth2_item>a{
        padding: 14px;
    }
    /* header .m_depth2 .m_depth2_item:last-child{
        margin-bottom: 12px;
    } */
    header .m_depth3{
        padding: 10px 18px;
    }
    .srch_m_inner{
        padding: 12px 20px;
    }
    .cont_box {
        overflow-x: auto;
    }
    .path{
        font-size: 14px;
    }
    .path .path_item img {
        width: 15px;
        height: 15px;
    }
    .title_box .title_right .btn {
        width: 24px;
        height: 24px;
    }
    .sub_banner{
        height: 140px;
    }
    .sub_banner .sub_tit{
        font-size: 24px;
    }
    .atc_contents h2, article h2{
        font-size: 20px;
    }
    /*.title_box .title_right .sns-share{
        top: 30px;
    }*/
    footer .footer_b h2{
        justify-content: center;
    }
    footer .footer_b .footer_info ul {
        flex-direction: column;
        align-items: center;
    }
    footer .footer_b .footer_info ul li{
        margin-left: 0;
    }
    footer .footer_b .footer_info p{
        text-align: center;
    }
    footer .footer_b .footer_link{
        flex-direction: column;
        align-items: center;
    }
    footer .footer_b .footer_link .link_box {
        width: 76%;
    }
    .container .sns-box{
        bottom: 10px;
    }
}
@media all and (max-width:399px) {
    main .input_txt{
        margin-right: 0;
    }
}