.news ._contents {
    padding-top: 116px;
    padding-bottom: 80px;
}

.news .topWrap {
    position: relative;
    display: flex; align-items: flex-start; justify-content: space-between;
    font-size: 48px;
    padding-bottom: calc(60/48*1em);
    border-bottom: 2px solid #000;
}
.news .topWrap b {
    font-weight: 700;
    color: #000;
    letter-spacing: -0.05em;
}
.news ._searchBar {
    display: inline-flex;
    align-items: flex-start;
}

.news .listWrap {
    display: flex;
    flex-direction: column;
}
.news .listWrap .list {
    display: flex;
    flex-direction: column;
}
.news .listWrap .list .item {
    display: flex; justify-content: space-between; align-items: flex-start;
    font-size: 32px;
    padding: calc(60/32*1em) calc(20/32*1em);
    border-bottom: 1px solid #d9d9d9;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s ease;
}
@media screen and (min-width: 821px) {
    .news .listWrap .list .item:hover {
        background: #eee;
    }
}
.news .listWrap .list .item .cont {
    display: flex; flex-direction: column;
    padding-right: calc(140/32*1em);
    min-width: 0;
    row-gap: calc(50/32*1em);
}
.news .listWrap .list .item .cont .title {
    font-weight: 700;
    color: #000;
    letter-spacing: -0.05em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news .listWrap .list .item .cont .txt {
    font-size: 18px;
    line-height: calc(28/18*1em);
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news .listWrap .list .item .cont .date {
    font-size: 18px;
    letter-spacing: -0.05em;
    color: #aaa;
}
.news .listWrap .list .item .imgBx {
    flex-shrink: 0;
    width: 337px;
    height: auto;
    position: relative;
}
.news .listWrap .list .item .imgBx::before {
    content: '';
    display: block;
    padding-bottom: calc(230/337*100%);
}
.news .listWrap .list .item .imgBx img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    object-fit: cover;
}

.news ._paging {
    padding-top: 55px;
}

@media screen and (max-width: 1600px) {
    .news .topWrap {
        font-size: 42px;
    }
    .news .listWrap .list .item {
        font-size: 28px;
    }
}
@media screen and (max-width: 1440px) {
    .news .topWrap {
        font-size: 36px;
    }
    .news .listWrap .list .item {
        font-size: 24px;
    }
    .news .listWrap .list .item .cont .txt {
        font-size: 16px;
    }
    .news .listWrap .list .item .cont .date {
        font-size: 16px;
    }
}
@media screen and (max-width: 1280px) {
    .news ._contents {
        padding-top: 60px;
    }
    .news .topWrap {
        font-size: 30px;
        padding-bottom: 20px;
    }
    .news .listWrap .list .item {
        font-size: 20px;
    }
    .news .listWrap .list .item .imgBx {
        width: 250px;
    }
}
@media screen and (max-width: 1024px) {
    .news .topWrap {
        font-size: 24px;
    }
    .news .listWrap .list .item {
        font-size: 16px;
    }
    .news .listWrap .list .item .cont .txt {
        font-size: 14px;
    }
    .news .listWrap .list .item .cont .date {
        font-size: 14px;
    }
}
@media screen and (max-width: 820px) {
    .news .topWrap {
        font-size: 20px;
    }
    .news .listWrap .list .item {
        font-size: 16px;
    }
    .news .listWrap .list .item .cont {
        padding-right: 20px;
    }
    .news .listWrap .list .item .imgBx {
        width: clamp(180px, 180/500*100vw, 250px);
    }
}
@media screen and (max-width: 500px) {
    .news ._contents {
        padding-bottom: 60px;
    }
    .news .topWrap {
        flex-direction: column; align-items: center;
    }
    .news ._searchBar {
        padding-top: 40px;
        width: 100%;
    }
    .news ._searchBar > div {
        width: 100%;
    }
    .news ._searchBar > div > input {
        max-width: 100%;
        width: 100%;
    }
    .news .listWrap .list .item {
        flex-direction: column-reverse;
    }
    .news .listWrap .list .item .cont {
        padding-right: 0;
        padding-top: 20px;
        width: 100%;
    }
    .news .listWrap .list .item .imgBx {
        width: 100%;
    }
}
@media screen and (max-width: 360px) {
    .news ._searchBar {
        padding-top: 30px;
    }
}



.news_view .news_view_visual {
    height: 100vh; position: relative; overflow: hidden;
}
.news_view .news_view_visual::before {
    content: '';
    display: block;
    padding-bottom: calc(980/1920*100%);
}
.news_view .news_view_visual .bg {
    height: 100%;
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: scale(1.4);
    filter: blur(10px);
}
.news_view .news_view_visual .bg::after {
    content: '';
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, transparent 35%, transparent 65%, rgba(0, 0, 0, 0.3) 100%);
    position: absolute;
    top: 0; left: 0;
}
.news_view .news_view_visual .bg > img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    object-fit: cover;
}
.news_view .news_view_visual .wrap {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.news_view .news_view_visual .wrap .cont {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex; align-items: flex-end; justify-content: center;
    overflow: hidden;
}
.news_view .news_view_visual .wrap .cont h2 {
    font-size: 70px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: calc(86/70*1em);
    padding-bottom: calc(120/70*1em);
    max-width: calc(880/70*1em);
    transform: translateY(60px);
}
.news_view ._contents {
    padding-top: 116px;
    padding-bottom: 180px;
    overflow: hidden;
}
.news_view ._contents .wrap .date {
    font-size: 17px;
    letter-spacing: -0.05em;
    color: #000;
    padding-bottom: calc(20/18*1em);
    border-bottom: 2px solid #000;
}
.news_view ._contents .wrap .editor {
    padding: 20px 0;
    min-height: 710px;
}
.news_view ._contents .wrap .btnWrap {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: calc(25/17*1em); font-size: 17px;
    border-top: 1px solid #d9d9d9;
}
.news_view ._contents .wrap .btnWrap .btn {
    font-size: inherit;
    color: #757575;
    padding: calc(13/17*1em) 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.news_view ._contents .wrap .btnWrap .btn i {
    font-size: inherit;
    color: inherit;
}
.news_view ._contents .wrap .btnWrap .btn.prev i {
    margin-right: calc(20/17*1em);
}
.news_view ._contents .wrap .btnWrap .btn.next i {
    margin-left: calc(20/17*1em);
}
.news_view ._contents .wrap .btnWrap .btn._box {
    font-size: inherit;
    color: #fff;
    min-width: calc(113/17*1em);
    background: #000;
    border-radius: calc(5/17*1em);
    display: flex; align-items: center; justify-content: center;
}
@media screen and (min-width: 821px) {
    .news_view ._contents .wrap .btnWrap .btn:not(._box):hover {
        color: #000;
    }
    .news_view ._contents .wrap .btnWrap .btn._box:hover {
        background: #4b4a4a;
    }
}
@media screen and (max-width: 1600px) {
    .news_view .news_view_visual .wrap .cont h2 {
        font-size: clamp(50px, 50/1440*100vw, 70px);
    }
}
@media screen and (max-width: 1280px) {
    .news_view .news_view_visual .wrap .cont h2 {
        font-size: clamp(40px, 40/1024*100vw, 50px);
    }
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 820px) {
    .news_view ._contents {
        padding-top: 70px;
        padding-bottom: 100px;
    }
    .news_view .news_view_visual {
        height: auto;
    }
    .news_view .news_view_visual .wrap .cont h2 {
        font-size: clamp(27px, 27/820*100vw, 40px);
        padding-bottom: calc(30/30*1em);
    }
    .news_view ._contents .wrap .btnWrap {
        font-size: clamp(16px, 16/500*100vw, 17px);
    }
}
@media screen and (max-width: 500px) {
    .news_view .news_view_visual .wrap .cont h2 {
        font-size: clamp(22px, 22/360*100vw, 27px);
    }
    .news_view ._contents .wrap .date {
        font-size: clamp(14px, 14/360*100vw, 17px);
    }
    .news_view ._contents .wrap .btnWrap {
        font-size: clamp(14px, 14/360*100vw, 16px);
    }
}
@media screen and (max-width: 360px) {
    .news_view ._contents {
        padding-top: 50px;
    }
    .news_view .news_view_visual .wrap .cont h2 {
        font-size: clamp(18px, 18/280*100vw, 22px);
    }
    .news_view ._contents .wrap .btnWrap {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px calc(60/280*100vw);
        padding-top: 10px;
    }
    .news_view ._contents .wrap .btnWrap .btn._box {
        order: 1;
    }
}