@charset "UTF-8";

.hidden{
    position: absolute;
    text-indent: -9999px;
}


/* 인풋 포커스 */
input:focus,
button:focus,
textarea:focus {
    outline: none;
}
input::-ms-input-placeholder { color: #a9b3ba; }
input::-webkit-input-placeholder { color: #a9b3ba; }
input::-moz-placeholder { color: #a9b3ba; }
textarea::-ms-input-placeholder { color: #a9b3ba; }
textarea::-webkit-input-placeholder { color: #a9b3ba; }
textarea::-moz-placeholder { color: #a9b3ba; }

input:focus,
textarea:focus {
    border: 1px solid #1E293B;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}


/* 폼 */
.form-control{
    display: inline-block;
    width: 100%;
    color: #1E293B;
    font-size: 15px;
    line-height: 1.267;
    padding: 14px 18px 13px;
    border-radius: 4px;
    border: 1px solid #c9d4dc;
    background: #fff;
}


/* 버튼 */
.btn{
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
}
.btn-md{
    font-size: 15px;
    line-height: 1.267;
    padding: 15px 16px 14px;
    border-radius: 6px;
}
.btn-outline-gray{
    color: #1E293B;
    border: 1px solid #c9d4dc;
}


/* 게시판 영역 푸터 간격 조정 */
.sub-page-wrap ~ footer{
    margin-top: 140px;
}
@media only screen and (max-width: 768px) {
    .sub-page-wrap ~ footer {
        margin-top: 118px;
    }
}


/* 게시판 상단 비주얼 */
.sub-page-tit-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 426px;
    text-align: center;
    background: url(../img/img_board_notice_bg.png) no-repeat center;
    background-size: cover;
}
.sub-page-tit-wrap .txt h3{
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.262;
}
.sub-page-tit-wrap .txt p{
    color: rgba(255,255,255,.8);
    font-size: 16px;
    line-height: 1.25;
    margin-top: 12px;
}
@media only screen and (max-width: 1024px) {
    .sub-page-tit-wrap{
        height: 350px;
        background-position: center left 40%;
    }
}
@media only screen and (max-width: 768px) {
    .sub-page-tit-wrap {
        height: 300px;
    }
    .sub-page-tit-wrap .txt h3 {
        font-size: 38px;
    }
    .sub-page-tit-wrap .txt p{
        font-size: 15px;
        margin-top: 8px;
    }
}
@media only screen and (max-width: 575px) {
    .sub-page-tit-wrap .txt h3 {
        font-size: 32px;
    }
    .sub-page-tit-wrap .txt p{
        font-size: 14px;
    }
}


.sub-page-cont-wrap{
    overflow: hidden;
    margin-top: 76px;
}
.sub-page-cont-wrap .board-top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
}
.sub-page-cont-wrap .board-top .count{
    color: #475569;
    font-size: 15px;
    line-height: 1.267;
}
.sub-page-cont-wrap .board-top .count em{
    color: #1E293B;
    font-weight: 500;
}
.sub-page-cont-wrap .board-top .search-area{
    position: relative;
    width: 330px;
}
.sub-page-cont-wrap .board-top .search-area > a{
    position: absolute;
    top: 14px;
    right: 18px;
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/ico_search.svg) no-repeat center;
    background-size: 100% auto;
}
@media only screen and (max-width: 768px){
    .sub-page-cont-wrap:has(.board-lst-wrap.notice){
        margin-top: 48px;
    }
}


/* 공지사항 리스트 타이틀 영역 */
.board-lst-wrap.notice{
    color: #1E293B;
    line-height: 1.5;
}
.board-lst-wrap.notice li.notice-tit{
    display: flex;
    padding: 22px 0;
    border-top: 1px solid #1E293B;
    background: #f5f8fa;
}
.board-lst-wrap.notice li div{
    text-align: center;
}
.board-lst-wrap.notice li .left{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    display: flex;
    flex: 1 1 0%;
}
.board-lst-wrap.notice li .right{
    width: 12%;
}
.board-lst-wrap.notice li .left > :is(.num, .fix){
    width: 8%;
}
.board-lst-wrap.notice li .tit{
    width: calc(100% - 8%);
    font-weight: 500;
}
.board-lst-wrap.notice li:not(.notice-tit) span:is(.num, .date){
    display: inline-block;
    color: #64748B;
}
.board-lst-wrap.notice li:not(.notice-tit, .notice-nodata) a{
    display: flex;
    padding: 26px 0;
}
.board-lst-wrap.notice li:not(.notice-tit){
    border-top: 1px solid #e3e9ef;
}
.board-lst-wrap.notice li:not(.notice-tit) .tit{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    text-align: left;
    padding: 0 16px;
}
.board-lst-wrap.notice li:not(.notice-tit):last-child{
    border-bottom: 1px solid #e3e9ef;
}
.board-lst-wrap.notice li:not(.notice-tit) .fix::after{
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: top;
    margin-top: 2px;
    background: url(../img/ico_fix.svg) no-repeat center;
    background-size: 100% auto;
}
.board-lst-wrap.notice li:not(.notice-tit) .tit p{
    display: inline-block;
    vertical-align: middle;
}
@media only screen and (max-width: 1200px) {
    .board-lst-wrap.notice li .left > :is(.num, .fix) {
        width: 10%;
    }
    .board-lst-wrap.notice li .right{
        width: 12%;
    }
}
@media only screen and (max-width: 1024px) {
    .sub-page-cont-wrap .board-top,
    .board-lst-wrap.notice li.notice-tit,
    .board-lst-wrap.notice li:not(.notice-tit) .left .num{
        display: none;
    }
    .board-lst-wrap.notice li:not(.notice-nodata) div{
        text-align: left;
    }
    .board-lst-wrap.notice li .left > :is(.num, .fix){
        width: auto;
    }
    .board-lst-wrap.notice li .right{
        width: auto;
        line-height: 1.25;
    }
    .board-lst-wrap.notice li:not(.notice-tit) a{
        flex-direction: column;
        padding: 14px 0;
    }
    .board-lst-wrap.notice li:not(.notice-tit) .fix::after{
        width: 15px;
        height: 15px;
        margin-top: 3px;
    }
    .board-lst-wrap.notice li:not(.notice-tit) .tit{
        width: 100%;
        font-size: 14px;
        padding: 0;
    }
    .board-lst-wrap.notice li:not(.notice-tit) .date{
        font-size: 13px;
    }
}


/* 게시판 페이지네이션 */
.board-lst-pagination{
    margin-top: 46px;
}
.board-lst-pagination ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.board-lst-pagination a{
    display: block;
    min-width: 46px;
    min-height: 46px;
    color: #1E293B;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.286;
    padding: 14px;
}
.board-lst-pagination a.active{
    font-weight: 500;
    border-radius: 50%;
    background: #f4f5f8;
}
.board-lst-pagination a.arrow-prev{
    background: url(../img/ico_pagination_arrow.svg) no-repeat center;
    background-size: 100% auto;
    transform: rotate(-180deg);
}
.board-lst-pagination a.arrow-prev.disabled,
.board-lst-pagination a.arrow-next.disabled{
    opacity: .2;
}
.board-lst-pagination a.arrow-next{
    background: url(../img/ico_pagination_arrow.svg) no-repeat center;
    background-size: 100% auto;
}
@media only screen and (max-width: 1024px) {
    .board-lst-pagination{
        margin-top: 36px;
    }
    .board-lst-pagination a{
        min-width: 38px;
        min-height: 38px;
        font-size: 13px;
        line-height: 1;
        padding: 13px 14px 12px;
    }
}


/* 게시판 상세 */
.board-view-wrap{
    color: #1E293B;
    margin-top: 64px;
}
.board-view-tit{
    line-height: 1;
    padding: 27px 36px 24px 36px;
    border-top: 1px solid #1E293B;
    border-bottom: 1px solid #e3e9ef;
}
.board-view-tit strong{
    display: block;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.261;
}
.board-view-tit span{
    display: inline-block;
    color: #64748B;
    font-size: 15px;
    line-height: 1.267;
    margin-top: 10px;
}
.board-view-cont{
    padding: 40px 36px 30px 36px;
}
.board-view-cont .view-area .txt-wrap{
    min-height: 400px;
    font-size: 16px;
    line-height: 1.563;
}
.board-view-cont .file-download-wrap{
    padding: 26px;
    margin-top: 68px;
    border-radius: 8px;
    background: #f5f8fa;
}
.board-view-cont .file-download-wrap .file-lst {
    position: relative;
    display: block;
    line-height: 1;
}
.board-view-cont .file-download-wrap .file-lst:hover span{
    text-decoration: underline;
}
.board-view-cont .file-download-wrap .file-lst + .file-lst{
    margin-top: 6px;
}
.board-view-cont .file-download-wrap .file-lst::before{
    content: '';
    position: absolute;
    top: 1px;
    width: 18px;
    height: 18px;
    background: url(../img/ico_download_file.svg) no-repeat center;
    background-size: 100% auto;
}
.board-view-cont .file-download-wrap .file-lst span{
    word-break: keep-all;
    display: inline-block;
    color: #536277;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    padding-left: 21px;
}
.board-view-cont .board-view-nav li{
    font-size: 15px;
    line-height: 1;
}
.board-view-cont .board-view-nav li > span{
    min-width: 100px;
    color: #64748B;
}
@media only screen and (max-width: 768px) {
    .board-view-wrap{
        margin-top: 0;
    }
    .board-view-tit{
        padding: 15px 10px;
    }
    .board-view-tit strong{
        font-size: 18px;
    }
    .board-view-tit span{
        font-size: 12px;
        margin-top: 5px;
    }
    .board-view-cont{
        padding: 15px 10px;
    }
    .board-view-cont .view-area .txt-wrap{
        font-size: 14px;
    }
    .board-view-cont .file-download-wrap{
        padding: 12px;
        margin-top: 10px;
    }
    .board-view-cont .file-download-wrap .file-lst::before{
        width: 16px;
        height: 16px;
        margin-top: 0;
    }
    .board-view-cont .file-download-wrap .file-lst span{
        font-size: 12px;
        padding-left: 18px;
    }
    .board-view-cont .file-download-wrap .file-lst + .file-lst{
        margin-top: 4px;
    }
}

/* 게시판 상세 이전글&다음글 */
.board-view-nav{
    border-top: 1px solid #e3e9ef;
    border-bottom: 1px solid #e3e9ef;
}
.board-view-nav li{
    display: flex;
    align-items: center;
    font-size: 15px;
    line-height: 1.534;
    padding: 20px 36px;
}
.board-view-nav li + li{
    border-top: 1px solid #e3e9ef;
}
.board-view-nav li > span{
    display: inline-block;
    color: #64748B;
    margin-right: 32px;
}
.board-view-nav li > span::before{
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    vertical-align: top;
    margin: 2px 8px 0 0;
    background: url(../img/ico_board_nav_arrow.svg) no-repeat center;
    background-size: 100% auto;
}
.board-view-nav li > span.next::before{
    transform: rotate(-180deg);
}
.board-view-nav li > a{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: calc(100% - 123px);
    color: #1E293B;
}
@media only screen and (max-width: 768px) {
    .board-view-nav li{
        font-size: 13px;
        padding: 12px 10px;
    }
    .board-view-nav li > span {
        margin-right: 16px;
    }
    .board-view-nav li > span::before{
        width: 15px;
        height: 15px;
    }
    .board-view-nav li > a{
        flex: 1;
        width: auto;
    }
}
@media only screen and (max-width: 575px) {
    .board-view-nav li{
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* 게시글 상세 하단 영역 */
.board-view-bottom{
    text-align: center;
    margin-top: 46px;
}
.board-view-bottom .btn-list{
    padding-left: 46px;
    padding-right: 46px;
}
@media only screen and (max-width: 768px) {
    .board-view-bottom {
        margin-top: 36px;
    }
    .board-view-bottom .btn-list{
        font-size: 14px;
        line-height: 1;
        padding-left: 38px;
        padding-right: 38px;
    }
}


/* 게시글 데이터 없음 */
.board-lst-wrap.notice li.notice-nodata a{
    cursor: default;
    display: block;
    color: #a9b2ba;
    font-size: 15px;
    text-align: center;
    padding: 42px 70px 42px 0;
}
.board-lst-wrap.notice li.notice-nodata a::before{
    content: '';
    display: block;
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    background: #c9d4dc;
    -webkit-mask: url(../img/ico_nolst.svg);
    mask: url(../img/ico_nolst.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}
@media only screen and (max-width: 1200px) {
    .board-lst-wrap.notice li.notice-nodata a {
        padding-right: 3%;
    }
}
@media only screen and (max-width: 1024px) {
    .board-lst-wrap.notice li.notice-nodata a {
        font-size: 14px;
        padding: 20px 0 24px;
    }
    .board-lst-wrap.notice li.notice-nodata a::before {
        width: 38px;
        height: 38px;
    }
}