.sv {
    padding-top: 150px;
    word-break: keep-all;
}
.sv .top {
    display: flex; justify-content: space-between;
    position: relative;
    z-index: 11;
}
.sv .top > span {
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.05em;
    color: #f36e3b;
}
.sv .top .path {
    display: flex; align-items: center;
    gap: calc(10/17*1em);
    color: #9b9b9b;
    font-size: 17px;
    letter-spacing: -0.05em;
}
.sv .top .path .path_sep {
    font-family: 'Pretendard';
    font-weight: 600;
    letter-spacing: -0.05em;
}
.sv .top .path .item {
    font-family: 'Pretendard';
    font-weight: 500;
    letter-spacing: -0.05em;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.sv .top .path .item.lastdepth {
    color: #000;
}
.sv .top .path .item .selectBox > i {
    padding: 0 .2em;
}
.sv .top .path .item .optWrap {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    box-sizing: border-box;
    /* box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1); */
    padding: calc(10/17*1em) 0;
    z-index: 100;
    white-space: nowrap;
    font-size: inherit;
}
.sv .top .path .item .optWrap > ul {
    display: flex; flex-direction: column;
    gap: calc(10/17*1em);
}
.sv .top .path .item .optWrap > ul > li {
    font-family: 'Pretendard';
    font-weight: 500;
    letter-spacing: -0.05em;
    transition: color .3s;
    width: 100%;
}
.sv .top .path .item .optWrap > ul > li > a {
    display: block;
    width: 100%;
    padding: 0 calc(20/17*1em);
    box-sizing: border-box;
}
@media screen and (min-width: 821px) {
    .sv .top .path .item .optWrap > ul > li:hover {
        color: #f36e3b;
    }
}

.sv .middle {
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 57px;
    letter-spacing: -0.05em;
    color: #000;
    padding-bottom: calc(50/57*1em);
    position: relative;
    z-index: 9;
}
.sv .middle .title_type {
    margin-top: calc(25/57*1em);
}
.sv .middle .title_type._2 .img {
    width: 100%;
    height: calc(65/57*1em);
}
.sv .middle .title_type._2 .img img {
    height: 100%;
    object-fit: cover;
}

.sv .bottom {
    display: flex; justify-content: space-between; align-items: flex-end;
    font-size: 18px;
    letter-spacing: -0.05em;
    padding-bottom: calc(20/18*1em);
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 9;
}
.sv .bottom > p {
    font-family: 'Pretendard';
    font-weight: 500;
    letter-spacing: -0.05em;
    color: #202020;
    line-height: calc(30/18*1em);
}
.sv .bottom > .btnWrap {
    display: flex; gap: calc(8/17*1em);
    font-size: calc(17/18*1em);
    padding-bottom: calc(7/17*1em);
}
.sv .bottom > .btnWrap > .btn {
    display: flex; align-items: center;
    gap: calc(7/17*1em);
    font-family: 'Pretendard';
    font-weight: 500;
    letter-spacing: -0.05em;
    color: #fff;
    padding: calc(12/17*1em) calc(22/17*1em);
    border-radius: calc(9/17*1em);
    box-sizing: border-box;
    transition: all .3s;
}
.sv .bottom > .btnWrap > .btn._1 {
    border: 2px solid #f36e3b;
    background: #f36e3b;
}
.sv .bottom > .btnWrap > .btn._2 {
    border: 2px solid #000;
    background: #000;
}
@media screen and (min-width: 821px) {
    .sv .bottom > .btnWrap > .btn._1:hover {
        background: #fff;
        color: #f36e3b;
    }
    .sv .bottom > .btnWrap > .btn._2:hover {
        background: #fff;
        color: #000;
    }
}


@media screen and (max-width: 1280px){
    .sv{ padding-top: 130px; }
    .sv .top > span{ font-size: 20px; }
    .sv .top .path{ font-size: 16px; }

    .sv .middle{ font-size: 50px; }
    .sv .bottom{ font-size: 16px; }
}

@media screen and (max-width: 820px){
    .sv{ padding-top: 100px; }
    .sv .top > span{ font-size: 18px; }
    .sv .top .path{ font-size: 14px; }

    .sv .middle{ font-size: 35px; padding-bottom: 15px; }
    .sv .bottom{ font-size: 14px; display: block; }
    .sv .bottom > .btnWrap{ margin-top: 30px; }
}

@media screen and (max-width: 500px){
    .sv{ padding-top: 80px; }
    .sv .top{ flex-direction: column-reverse; }
    .sv .top .path{ gap: calc(6 / 17 * 1em); margin-bottom: 20px; }
    .sv .top > span{ font-size: 16px; }
    
    .sv .middle{ font-size: 26px; }
    .sv .bottom > .btnWrap{ margin-top: 20px; }
    .sv .bottom > .btnWrap > .btn{ padding: 8px 10px; }
    .sv .bottom > p br{ display: none; }

}





.sub{ width: 100%; overflow: hidden; }



/* List + view 공통 */

/* 버튼2개 삭제 */
.sub.media .sv .bottom > .btnWrap{ display: none; }
.sub.company .sv .bottom > .btnWrap{ display: none; }
.sub.case .sv .bottom > .btnWrap{ display: none; }
.sub.case .sv .top .path .item.lastdepth{ pointer-events: none; }
.sub.case .sv .top .path .item.lastdepth .selectBox > i{ display: none; }


/* BOARD listTop */
.board{ width: 100%; padding: 125px 0; font-family: 'Pretendard'; }
.board .listTop{ display: flex; align-items: center; justify-content: space-between; }
.board .listTop > p{ font-size: 20px; letter-spacing: -0.05em; line-height: 1.3; font-weight: 600; color: #010101; }
.board .listTop > p span{ color: #f36e3b; }

.search{ display: flex; width: 100%; max-width: 270px; border: 1px solid #cbcbcb; box-sizing: border-box; padding: 0 20px; align-items: center; }
.search input{ border: none; color: #010101; height: 48px; letter-spacing: -0.05em; font-size: 17px; width: 100%; }
.search input::placeholder{ color: #b5b5b5; }
.search > a{ display: block; flex-shrink: 0; font-size: 20px; letter-spacing: -0.05em; color: #b5b5b5; }


@media screen and (max-width: 1280px){
    .board{ padding: 100px 0; }
    .board .listTop > p{ font-size: 18px; }
    .search{ padding: 0 15px; }
    .search input{ font-size: 16px; height: 38px; }
}

@media screen and (max-width: 820px){
    .board{ padding: 70px 0; }
    .board .listTop > p{ font-size: 16px; }
    .search{ padding: 0 10px; }
    .search input{ font-size: 14px; height: 32px; }
}

@media screen and (max-width: 500px){
    .board .listTop{ display: block; }
    .search{ margin-top: 10px; }
}

/* BOARD 2 listTop*/
.board_2 .listTop{display: flex;flex-direction: column;align-items: flex-start;gap: 60px;}
.board_2 .listTop.flx{ flex-direction: row; align-items: center; }
.board_2 .listTop._mo{display: none;}
.board_2 .listTop .flxBx{display: flex;align-items: center;justify-content: space-between;width: 100%;}
.board_2 .listTop .ctgryBx > span{display:block;font-size: 17px;color: #333333; letter-spacing: -0.05em;}
.board_2 .listTop .ctgryBx{display: flex;align-items: center; gap: 1.2em;}
.board_2 .listTop .ctgryBx .ctgryList{display: flex;gap: 1.2em;}
.board_2 .listTop .ctgryBx .ctgryList .ctgry{position: relative; min-width: 200px; }
.board_2 .listTop .ctgryBx .ctgryList .ctgry.small{min-width: 100px; }
.board_2 .listTop .ctgryBx .ctgry > span{display: flex;align-items: center;gap: 1em;font-size: 17px; letter-spacing: -0.05em; color: #333333; letter-spacing: -0.05em; justify-content: center;
    padding: calc(12/17*1em) calc(28/17*1em);
    box-sizing: border-box;border: 1px solid #cbcbcb;
}
.board_2 .listTop .ctgryBx .ctgry > span i{font-size: 20px;color: #333333;}
.board_2 .listTop .ctgryBx .ctgry .opt {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 5px);
    background: #fff;
    border: 1px solid #cbcbcb;
    box-sizing: border-box;
    z-index: 100;
    white-space: nowrap;
    font-size: 17px;
    width: 100%;
    text-align: center;
    letter-spacing: -0.05em;
    color: #333;
}
.board_2 .listTop .ctgryBx .ctgry .opt > ul {
    display: flex;
    flex-direction: column;
    /* width: 100%; */
}
.board_2 .listTop .ctgryBx .ctgry .opt > ul li{
    border-bottom: 1px solid #cbcbcb;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.board_2 .listTop .ctgryBx .ctgry .opt > ul li:last-of-type{
    border-bottom: 0;
}
.board_2 .listTop .ctgryBx .ctgry .opt > ul li > a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: calc(12/17*1em) 10px;
    box-sizing: border-box;
}

@media screen and (min-width: 821px){
    .board_2 .listTop .ctgryBx .ctgry .opt > ul li > a:hover{ background-color: rgba(0,0,0,0.02); }
}

@media screen and (max-width: 1440px){
    .board_2 .listTop .ctgryBx > span {font-size: 16px;}
    .board_2 .listTop .ctgryBx .ctgry > span {font-size: 16px;}
    .board_2 .listTop .ctgryBx .ctgry .opt{font-size: 16px;}
}
@media screen and (max-width: 1024px){
    .board_2 .listTop{display: none;}
    .board_2 .listTop.flx{ display: flex; }
    .board_2 .listTop._mo{display: flex;}
    .board_2 .listTop._mo .flxBx > p {
        font-size: 18px;
        letter-spacing: -0.05em;
        line-height: 1.3;
        font-weight: 600;
        color: #010101;
    }
    .board_2 .listTop._mo .flxBx > p span {color: #f36e3b;}
    .board_2 .listTop{gap: 40px;}
}
@media screen and (max-width: 820px){
    .board_2 .listTop._mo .flxBx > p {font-size: 16px;}
    
    .board_2 .listTop .ctgryBx > span {font-size: 14px; display: none;}
    .board_2 .listTop .ctgryBx .ctgry .opt{font-size: 14px;}
    .board_2 .listTop .ctgryBx .ctgryList{gap: .5em;}
    .board_2 .listTop .ctgryBx .ctgryList .ctgry{ min-width: 160px; }
    .board_2 .listTop .ctgryBx .ctgryList .ctgry.small{ min-width: 80px; }
    .board_2 .listTop .ctgryBx .ctgry > span {font-size: 14px;gap: 0.5em; padding: 10px 20px; }
}
@media screen and (max-width: 600px){
    .board_2 .listTop .ctgryBx {
        align-items: flex-start;
        flex-direction: column;
    }
    .board_2 .listTop.flx{
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
@media screen and (max-width: 500px){
    .board_2 .listTop .ctgryBx {width: 100%;align-items: center;}
    .board_2 .listTop .ctgryBx .ctgryList {flex-direction: column;width: 100%;}
    .board_2 .listTop .ctgryBx .ctgry > span{justify-content: center;}
    .board_2 .listTop .flxBx{flex-direction: column;align-items: flex-start;}
}

/* Gallery */


.board.gallery .listWrap{padding-top: 60px;}
.board.gallery .listWrap .list{display: flex;flex-wrap: wrap;gap: 35px;row-gap: 80px;}
.board.gallery .listWrap .list .item{width: calc((100% - (35px * 3)) / 4);}
.board.gallery .listWrap .list .item a{
    display: block;
    width: 100%;
}
.board.gallery .listWrap .list .item a .date{ font-size: 15px; letter-spacing: -0.05em; color: #a7a7a7; margin-top: 20px; display: block; }
.board.gallery .listWrap .list .item a .img{background-color: #ababab;position: relative;width: 100%;transition: border-radius 0.3s; border: 1px solid #ababab; box-sizing: border-box; overflow: hidden;}
.board.gallery .listWrap .list .item a .img::before{content: '';display: block;padding-bottom: calc(334/334*100%);}
.board.gallery .listWrap .list .item a .img img{position: absolute;top: 0;left: 0;width: 100%;height: 100%;object-fit: cover;}
.board.gallery .listWrap .list .item a .img:hover{border-radius: 34px;transition: border-radius 0.3s;}

.board.gallery .listWrap .list .item a .info{padding-top: 20px;display: flex;flex-direction: column;}
.board.gallery .listWrap .list .item a .info .ctg{
    font-size: 15px; letter-spacing: -0.05em;font-weight: 600;color: #a7a7a7;
}
.board.gallery .listWrap .list .item a .info .title{
    font-size: 20px;font-weight: 600;color: #000;padding-top: 15px;line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: -0.05em;
}
.board.gallery .listWrap .list .item a .info .desc{
    font-size: 17px;font-weight: 400;color: #000;padding-top: 20px;line-height: 1.64705;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: -0.05em;
}

.board.gallery .listWrap .list .item a .tag{padding-top: 30px;display: flex;flex-wrap: wrap;gap: 5px;}
.board.gallery .listWrap .list .item a .tag span{font-size: 15px; letter-spacing: -0.05em;font-weight: 400;color: #a7a7a7;}

@media screen and (max-width: 1440px){
    .board.gallery .listWrap .list .item{width: calc((100% - (35px * 2)) / 3);}
}
@media screen and (max-width: 1024px){
    .board.gallery .listWrap .list .item{width: calc((100% - 35px) / 2);}
}
@media screen and (max-width: 820px){
    .board.gallery .listWrap .list .item a .info .title {font-size: 18px;}
    .board.gallery .listWrap .list .item a .info .desc {font-size: 16px;padding-top: 10px;}
    .board.gallery .listWrap .list .item a .tag {padding-top: 10px;}
}
@media screen and (max-width: 500px){
    .board.gallery .listWrap .list .item{width: 100%;}
    .board.gallery .listWrap .list .item a .info .ctg {font-size: 14px;}
    .board.gallery .listWrap .list .item a .info .title {font-size: 16px;}
    .board.gallery .listWrap .list .item a .info .desc {font-size: 14px;}
    .board.gallery .listWrap .list .item a .tag span {font-size: 14px;}
}
/* BOARD 1은 notice.css */

/* BOARD 2 */ /* company IR + Case Board*/

.board_2 .listBx ._list{width: 100%;margin-top: 25px;border-top: 2px solid #000;}
.board_2 .listBx ._list li{border-bottom: 1px solid #b5b5b5;}
.board_2 .listBx ._list li > a{padding: 30px 0;padding-left: 3vw; display: flex;align-items: center;justify-content: space-between;}
.board_2 .listBx ._list li > a ._subTit span{font-size: 14px;font-weight: 500;color: #b5b5b5;letter-spacing: -0.05em;}
.board_2 .listBx ._list li > a ._mainTit h3{font-size: 22px;font-weight: 600;color: #010101;letter-spacing: -0.05em;padding-top: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.board_2 .listBx ._list li > a ._mainTit h3 br{ display: none; }
.board_2 .listBx ._list li > a .desc span{font-size: 17px;font-weight: 300;color: #010101;letter-spacing: -0.05em;padding-top: 15px;display: block;line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.board_2 .listBx ._list li > a .more {
    width: 160px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}
.board_2 .listBx ._list li > a .more span {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background-color: #919191;
    transition-duration: 0.2s;
    border-radius: 50%;
}

@media screen and (min-width: 821px){
    .board_2 .listBx ._list li > a:hover{ background-color: rgba(0,0,0,0.01); }
    .board_2 .listBx ._list li > a:hover .more span{ background-color: #f36e3b; }
}

@media screen and (max-width: 1440px){
    .board_2 .listBx ._list li > a ._mainTit h3 {font-size: 20px;}
}
@media screen and (max-width:1280px) {
    .board_2 .listBx ._list li > a{padding: 20px 0;padding-left: 2vw;}
    .board_2 .listBx ._list li > a ._mainTit h3 {font-size: 18px;}
    .board_2 .listBx ._list li > a .desc span {font-size: 16px;}
    .board_2 .listBx ._list li > a .more{ width: 70px; }
    .board_2 .listBx ._list li > a .more span{ width: 35px; height: 35px; font-size: 16px; }
}

@media screen and (max-width: 500px){
    .board_2 .listBx ._list li > a .more{display: none;}
    .board_2 .listBx ._list li > a {padding: 15px 0;padding-left: 1vw;}
    .board_2 .listBx ._list li > a ._mainTit h3 {font-size: 16px;padding-top: 10px;}
    .board_2 .listBx ._list li > a .desc span {font-size: 14px;padding-top: 10px;}
    .board_2 .listBx ._list li > a ._subTit span{font-size: 12px;}
}

/* Pagination */
.board_page{ display: flex; align-items: center; justify-content: center; margin-top: 90px; }
.board_page .btn{ padding: 2px; box-sizing: border-box; font-size: 16px; }
.board_page .btn.deact{ color: #b3b3b3; }

.board_page .number{ display: flex; align-items: center; justify-content: center; margin: 0 6px; }
.board_page .number li{ margin: 0 4px; }
.board_page .number li > a{ display: flex; align-items: center; justify-content: center; border-radius: 50%; width: 32px; height: 32px; font-size: 17px; letter-spacing: -0.05em; font-weight: 500; }
.board_page .number li.on > a{ background-color: #f36e3b; color: #fff; }

@media screen and (max-width: 1280px){
    .board_page{ margin-top: 50px; }
}

@media screen and (max-width: 500px){
    .board_page .number li{ margin: 0 2px; }
    .board_page .number li > a{ width: 26px; height: 26px; font-size: 15px; }
}


/* viewpage */

.board.view .viewTop{padding: 0 1vw;}
.board.view .viewTop small{font-size: 20px;font-weight: 500;color: #a0a0a0;letter-spacing: -0.05em;line-height: 1.3;padding-bottom: 10px; }
.board.view .viewTop h1{font-size: 42px;font-weight: 700;letter-spacing: -0.05em;line-height: 1.3; margin-top: 10px; }
.board.view .viewTop .bar{display: flex;align-items: flex-end;justify-content: space-between;padding-top: 70px;padding-bottom: 30px;}
.board.view .viewTop .bar span{font-size: 17px;color: #a0a0a0;font-weight: 400; letter-spacing: -0.05em;}
.board.view .viewTop .bar .att{display: flex;align-items: center;justify-content: flex-end;gap: 5px; }
.board.view .viewTop .bar .att + .att{ margin-top: 5px; }
.board.view .viewTop .bar .att i{font-size: 16px;color: #474747; letter-spacing: -0.05em; flex-shrink: 0;}
.board.view .viewTop .bar .att em{font-size: 17px;color: #474747;font-weight: 400; letter-spacing: -0.05em; flex-shrink: 0;}
.board.view .viewTop .bar .att p{font-size: 17px;color: #a0a0a0;font-weight: 400;padding-left: 10px; letter-spacing: -0.05em; word-break: break-all; max-width: 600px; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; line-height: 1.2;}

.board.view .editor{border-top: 2px solid #000;border-bottom: 1px solid #b5b5b5;
    /* 추후 수정 */
    padding: 5vw 1vw;color: #333;font-size: 17px;line-height: 1.5; letter-spacing: -0.05em;
}

/*  case view page  */
.case .board.view .viewTop {padding: 0;}
.case .board.view .viewTop .bar{padding-top: 30px;padding-bottom: 0;}
.case .board.view ._cont{border-top: 2px solid #000;margin-top: 25px;width: 100%;}
.case .board.view ._cont .row{padding-top: 40px;}
.case .board.view ._cont .row.n1{display: flex;align-items: center;gap: 5.5em;padding-bottom: 140px;}
.case .board.view ._cont .row .left{max-width: 500px;width: 100%;flex-shrink: 0;}
.case .board.view ._cont .row .left .imgBx{width: 100%;border: 1px solid #ececec;border-radius: 29px;display: flex;align-items: center;justify-content: center; overflow: hidden; min-height: 300px; padding: 0 20px; box-sizing: border-box;}
.case .board.view ._cont .row .left .imgBx img{ width: 100%; height: 100%; object-fit: cover; }
.case .board.view ._cont .row .right{}
.case .board.view ._cont .row .right .txtBx{}
.case .board.view ._cont .row .right .txtBx > p{font-size: 20px;font-weight: 500;color: #000; letter-spacing: -0.05em; line-height: 1.3;}
.case .board.view ._cont .row .right .txtBx > span{display: block;font-size: 17px;color: #000;font-weight: 300;line-height: 1.7647;padding-top: 20px; letter-spacing: -0.05em;}
.case .board.view ._cont .row .right .txtBx a._detail{display: flex;align-items: center;justify-content: center;background: #000;color: #fff;font-size: 17px; letter-spacing: -0.05em;font-weight: 500;padding: 12px 0;box-sizing: border-box; border-radius: 9px;max-width: 136px;width: 100%;margin-top: 30px;transition: background-color 0.3s;}
.case .board.view ._cont .row .right .txtBx a._detail:hover{background: #f36e3b;}

.case .board.view ._cont .row ._fuction{display: flex;align-items: flex-start;gap: 5px;padding-bottom: 30px;}
.case .board.view ._cont .row ._fuction:last-child{padding-bottom: 0;}
.case .board.view ._cont .row ._fuction em{font-size: 20px; letter-spacing: -0.05em;color: #f36e3b;}
.case .board.view ._cont .row ._fuction em i{position: relative;top:2px}
.case .board.view ._cont .row ._fuction p{
    display: flex;flex-direction: column;gap: 10px;
}
.case .board.view ._cont .row ._fuction p strong{
    font-size: 20px; font-weight: 600;color: #000;letter-spacing: -0.05em;line-height: 1.3;
}
.case .board.view ._cont .row ._fuction p small{font-size: 17px;color: #000;font-weight: 300;line-height: 1.3; letter-spacing: -0.05em;}
.case .board.view ._cont .btnBx{display: flex;align-items: center;justify-content: center;gap: 10px;padding-top: 110px;}
.case .board.view ._cont .btnBx a{display: flex;align-items: center;justify-content: center;gap: 8px;font-size: 17px;letter-spacing: -0.05em;font-weight: 400;padding: 13px 0;box-sizing: border-box; border-radius: calc(9/17*1em);max-width: 136px;width: 100%;transition: background-color 0.3s, border-color 0.3s ,color 0.3s;}
.case .board.view ._cont .btnBx a.__list{background: #f36e3b;color: #fff; border: 2px solid #f36e3b;box-sizing: border-box;}
.case .board.view ._cont .btnBx a._call{background: #000;color: #fff;border: 2px solid #000;box-sizing: border-box;}
.case .board.view ._cont .btnBx a i{position: relative;top: -1px;}
.case .board.view ._cont .btnBx a:hover{background: #fff;color: #f36e3b;}
.case .board.view ._cont .btnBx a._call:hover{background: #fff;color: #000;}

@media screen and (max-width: 1440px){
    .case .board.view ._cont .row .left {max-width: 480px;}
    .case .board.view ._cont .row.n1{gap: 4.5em;}
    .case .board.view ._cont .row .right .txtBx > span{word-break: keep-all;}
    .case .board.view ._cont .row .right .txtBx > span br{display: none;}
}

@media screen and (max-width: 1280px){
    .board.view .viewTop small {font-size: 18px;}
    .case .board.view ._cont .row .left .imgBx{ min-height: 220px; }
    .case .board.view ._cont .row .right .txtBx > p {font-size: 18px;}
    .case .board.view ._cont .row .right .txtBx > span{font-size: 16px;}
    .case .board.view ._cont .row.n1{gap: 3.5em;}
    .case .board.view ._cont .row .left {max-width: 450px;}
    .case .board.view ._cont .row .right .txtBx a._detail {font-size: 16px;}

    .case .board.view ._cont .row ._fuction p strong {font-size: 18px;}
    .case .board.view ._cont .row ._fuction p small {font-size: 16px;}
    .case .board.view ._cont .btnBx a {font-size: 16px;}
    .case .board.view ._cont .btnBx a i {font-size: 16px;}
    .case .board.view ._cont .row ._fuction em {font-size: 18px;}
}
@media screen and (max-width: 1024px){
    .case .board.view ._cont .row.n1{flex-direction: column;align-items: flex-start;}
    .case .board.view ._cont .row .right .txtBx > span{word-break: normal;}
    .case .board.view ._cont .row .right .txtBx > span br{display: block;}

}
@media screen and (max-width: 820px){
    .case .board.view ._cont .row .right .txtBx > span{word-break: break-all;}
    .case .board.view ._cont .row .right .txtBx > span br{display: none;}
    
}
@media screen and (max-width: 500px){
    .board.view .viewTop small {font-size: 16px;}
    .case .board.view ._cont .row.n1 {padding-bottom: 100px;}
    .case .board.view ._cont .row .right .txtBx a._detail {font-size: 14px;padding: 10px 0;max-width: 110px;}
    .case .board.view ._cont .row ._fuction em {font-size: 16px;}
    .case .board.view ._cont .row ._fuction p strong {font-size: 16px;}
    .case .board.view ._cont .row ._fuction p small {font-size: 14px;}
    
    .case .board.view ._cont .btnBx a {font-size: 14px;}
    .case .board.view ._cont .btnBx a i {font-size: 14px;}
    .case .board.view ._cont .row ._fuction em {font-size: 16px;}
    .case .board.view ._cont .row .left .imgBx{ min-height: 150px; }
    .case .board.view ._cont .row .right .txtBx > p {font-size: 16px;}
    .case .board.view ._cont .row .right .txtBx > span{font-size: 14px;}
    .case .board.view ._cont .btnBx a {font-size: 14px;padding: 10px 0;max-width: 100px;}
    .case .board.view ._cont .row ._fuction em i{position: relative;top:0}
    /* 이미지 개발 들어오면 수정해야함 */
    /* .case .board.view ._cont .row .left .imgBx{padding: 4em 0;}
    .case .board.view ._cont .row .left .imgBx img{height: 4em;} */
}
@media screen and (max-width: 360px){}

/* 목록 이전 다음글 */
.board.view .explore{display: flex;align-items: center;justify-content: space-between;padding-top: 30px;}
.board.view .explore .prev , .board.view .explore .next{display: flex;align-items: center;justify-content: center;gap: 15px;}
.board.view .explore .prev a, .board.view .explore .next a{
    width: 38px;height: 38px;border-radius: 50%;
    display: flex;align-items: center;justify-content: center;
}
.board.view .explore .prev a{background: #ababab;}
.board.view .explore .next a{background: #ff911d;}
.board.view .explore .prev a i, .board.view .explore .next a i{color: #fff;font-size: 17px;}
.board.view .explore .prev span{font-size: 17px;color: #888888;font-weight: 400; letter-spacing: -0.05em;}
.board.view .explore .next span{font-size: 17px;font-weight: 400; letter-spacing: -0.05em;}

.board.view .explore .listBtn{max-width: 146px;width: 100%;}
.board.view .explore .listBtn a{display: flex;align-items: center;justify-content: center;gap: 5px;background: #000;color: #fff;font-size: 17px;font-weight: 400;padding: 16px 0;box-sizing: border-box; border-radius: 25px; letter-spacing: -0.05em; }

@media screen and (max-width: 1680px){
    .board.view .viewTop h1 {font-size: 38px;}
}
@media screen and (max-width: 1280px){
    .board.view .viewTop h1 {font-size: 34px;}
}
@media screen and (max-width: 1024px){
    .board.view .viewTop .bar span {font-size: 16px;}
    .board.view .viewTop .bar .att em {font-size: 16px;}
    .board.view .viewTop .bar .att p {font-size: 16px;}
    .board.view .viewTop .bar .att i {font-size: 16px;}
    .board.view .editor{font-size: 16px;}
    .board.view .explore .prev span {font-size: 16px;}
    .board.view .explore .next span {font-size: 16px;}
    .board.view .explore .listBtn a {font-size: 16px;}
    .board.view .explore .prev a i, .board.view .explore .next a i {font-size: 16px;}
}
@media screen and (max-width: 820px){
    .board.view .viewTop h1 {font-size: 30px;}
    .board.view .viewTop .bar{padding-top: 50px;}


    .board.view .explore .listBtn {max-width: 120px;}
    .board.view .explore .listBtn a{padding: 12px 0;}
}
@media screen and (max-width: 500px){
    .board.view .viewTop h1 {font-size: 25px;}
    .board.view .viewTop .bar {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 30px;
    }
    .board.view .explore .prev, .board.view .explore .next {gap: 6px;}
    .board.view .explore .listBtn {max-width: 100px;}
    .board.view .explore .listBtn a{padding: 10px 0;}
    .board.view .viewTop .bar span {font-size: 14px;}
    .board.view .viewTop .bar .att{ justify-content: flex-start; }
    .board.view .viewTop .bar .att em {font-size: 14px; flex-shrink: 0;}
    .board.view .viewTop .bar .att p {font-size: 14px; }
    .board.view .viewTop .bar .att i {font-size: 14px; flex-shrink: 0;}
    .board.view .editor{font-size: 14px;}
    .board.view .explore .prev span {font-size: 14px;}
    .board.view .explore .next span {font-size: 14px;}
    .board.view .explore .listBtn a {font-size: 14px;}
    .board.view .explore .prev a i, .board.view .explore .next a i {font-size: 14px;}

    .board.view .explore .prev a, .board.view .explore .next a{
        width: 32px;height: 32px;
    }
}
@media screen and (max-width: 360px){
    .board.view .viewTop h1 {font-size: 20px;}
    .board.view .explore .prev{flex-direction: column;}
    .board.view .explore .next{flex-direction: column-reverse;}
    .board.view .explore{align-items: flex-start;}
}