#news_set{
    position: relative;
    width: 100%;
}
.news-scroll {
    display: flex;
    justify-content: flex-start;
    overflow-x: hidden;
    /* scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; */
}
    /* .news-scroll::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }
    .news-scroll::-webkit-scrollbar-thumb {
        background: black;
        border-radius: 10px;
      }
      .news-scroll::-webkit-scrollbar-track {
        background: transparent;
      } */
.news_box{
    margin: 0;
    background:#fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
    .news_box:before {
        content:"";
        display: block;
        border:3px solid #000;
        border-radius: 5px;
        width: 95%;
    }
        .news_box:before {
            position: absolute;
            top: 0;
        }
        .news_box:after {
            position: absolute;
            bottom: 5px;
        }
    .news_box h3.news_title {
        letter-spacing: 0.15rem;
        text-align: center;
        font-size: 1.2rem;
        margin:20px 0px 15px;
    }
    .news_box p {
        font-size: 85%;
    }

    #news_set .img_wrap {
        width: 95%;
        margin: 0 5% 1em 5%;
        background-color: #eee;
    }
        #news_set .img_wrap img {
            width: 100% !important;
            height: 285px;
            margin: 0;
            object-fit: cover;
            object-position: 50% 0;
        }
    #news_set .txt_box {
        width: 90%;
        margin: 0 auto;
    }
a.btn-new {
    display: block;
    width: 80%;
    padding: 10px 15px;
    margin: 1em auto;
    text-align: center;
    border:1px solid #000;
    font-weight: bold;
    font-size: 0.8rem;
    color: #000;
    letter-spacing: 0.15rem;
}
        a:hover.btn-new {
            border:1px solid #000;
            background-color: #000;
            color: #fff;
        }

@media screen and (max-width: 510px) {
    .news_box {
        flex: 0 1 350px;
        margin-right: 0;
        margin-bottom: 1em;
        min-width: 350px;
        height: 530px;
    }
    .news_box p {
        position: static;
    }
    #news_set .img_wrap {
        height: 200px;
        margin: 0 auto;
    }
        #news_set .img_wrap img {
            height: 200px;
            margin: 0 auto;
        }
    .news_box h4 {
        width: 92%;
        height: 80px;
        margin: 1em auto 0.5em auto;
    }
    .news_box .txt_box {
        height: 80px;
    }
    a.btn-new {
        bottom: 1em;
        width: 98%;
        height: 3em;
        padding: 0.5em 1em;
        line-height: 1.8em;
        margin: 0 auto;
        box-sizing: border-box;
    }
}
@media screen and (min-width: 511px) and (max-width: 959px) {
    .news_box {
        flex: 0 1 230px;
        min-width: 230px;
        height: 615px;
    }
    #news_set .img_wrap {
        height: 280px;
        margin: 0 auto;
    }
        #news_set .img_wrap img {
            height: 280px;
        }
    .news_box h4 {
        width: 95%;
        height: 80px;
        margin: 1em auto 0.5em auto;
    }
    .news_box .txt_box {
       height: 100px;
    }
}
@media screen and (min-width: 960px) {
    #news_set .img_wrap {
        height: 420px;
    }
        #news_set .img_wrap img {
            height: 420px !important;
        }
        .news_box {
            flex: 0 1 360px;
            min-width: 360px;
            height: 730px;
            padding: 0 5px;
            box-sizing: border-box;
        }
        .news_box h4 {
            width: 92%;
            height: 80px;
            margin: 0 auto;
        }
        .news_box div {
            min-height: 80px;
        }
}