.news-fv-container{
    background-color: rgb(57, 87, 151, 0.05);
}

.news-fv-wrapper{
    padding-top: calc(100vw * 224 / 1366);
    padding-bottom: calc(100vw * 205 / 1366);
}

.news-fv-content{
    padding-left: calc(100vw * 100 / 1366);
}

.news-fv-content h2{
    font-size: calc(100vw * 64 / 1366);
    color: #1D3A78;
    border-bottom: 1px solid #1D3A78;
    display: inline-block;
    line-height: calc(100vw * 77 / 1366);
}

.news-fv-content p{
    font-size: calc(100vw * 24 / 1366);
    color: #1D3A78;
    line-height: calc(100vw * 29 / 1366);
}

.news-fv-content{
    opacity: 0;
    transform: translateY(18px);
    animation: newsFvIntro .9s cubic-bezier(.2,.8,.2,1) .15s forwards;
}

.news-fv-content h2{
    opacity: 0;
    transform: translateY(10px);
    animation: newsFvIntro .9s cubic-bezier(.2,.8,.2,1) .22s forwards;
}

.news-fv-content p{
    opacity: 0;
    transform: translateY(10px);
    animation: newsFvIntro .9s cubic-bezier(.2,.8,.2,1) .32s forwards;
}

@keyframes newsFvIntro{
    0%{
        opacity: 0;
        transform: translateY(18px);
        filter: blur(6px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce){
    .news-fv-content,
    .news-fv-content h2,
    .news-fv-content p{
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@media (max-width: 768px){

    .news-fv-wrapper{
        padding-top: calc(100vw * 72 / 375);
        padding-bottom: calc(100vw * 64 / 375);
    }

    .news-fv-content{
        padding-left: calc(100vw * 18 / 375);
        padding-right: calc(100vw * 18 / 375);
    }

    .news-fv-content h2{
        font-size: calc(100vw * 26 / 375);
        line-height: calc(100vw * 34 / 375);
        border-bottom: 1px solid #1D3A78;
        display: inline-block;
        word-break: break-word;
    }

    .news-fv-content p{
        font-size: calc(100vw * 14 / 375);
        line-height: calc(100vw * 20 / 375);
        margin-top: calc(100vw * 10 / 375);
    }
}
.news-sv-wrapper{
    margin-top: calc(100vw * -125 / 1366);
}

.news-sv-content{
    width: calc(100vw * 1264 / 1366);
}

.news-sv-content img{
    width: 100%;
    height: calc(100vw * 250 / 1366);
    object-fit: cover;
	border-radius: 0 40px 40px 0;
}

@media(max-width:768px){
    .news-sv-wrapper{
        margin-top: calc(100vw * -24 / 375);
    }

    .news-sv-content{
        width: 100%;
        padding-left: calc(100vw * 18 / 375);
        padding-right: calc(100vw * 18 / 375);
    }

    .news-sv-content img{
        width: 100%;
        height: calc(100vw * 168 / 375);
        border-radius: calc(100vw * 12 / 375);
        object-fit: cover;
    }
}

.news_archive_container{
    background: #ffffff;
    padding-top: min(calc(100vw * 70 / 1366), 70px);
    padding-bottom: min(calc(100vw * 90 / 1366), 90px);
}

.news_archive_wrapper{
    width: calc(100% - min(calc(100vw * 40 / 1366), 40px));
    max-width: 1166px;
    margin: 0 auto;
}

.news_tabs{
    display: flex;
    gap: min(calc(100vw * 20 / 1366), 20px);
    align-items: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: min(calc(100vw * 24 / 1366), 24px);
    -webkit-overflow-scrolling: touch;
}

.news_tab{
    flex: 0 0 auto;
    height: min(calc(100vw * 70 / 1366), 70px);
    padding: 0 min(calc(100vw * 26 / 1366), 26px);
    border: 1px solid #1D7FCB;
    border-radius: min(calc(100vw * 10 / 1366), 10px);
    background: #ffffff;
    color: #1D7FCB;
    font-size: min(calc(100vw * 18 / 1366), 18px);
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .25s ease, color .25s ease;
    white-space: nowrap;
}

.news_tab.is-active{
    background: linear-gradient(90deg, #007DC9, #23A0ED);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 min(calc(100vw * 10 / 1366), 10px) min(calc(100vw * 24 / 1366), 24px) rgba(13, 70, 120, .18);
}

.news_list{
    margin-top: min(calc(100vw * 22 / 1366), 22px);
}

.news_item{
    position: relative;
    margin-bottom: min(calc(100vw * 40 / 1366), 40px);
}

.news_item + .news_item{
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.news_card{
    display: flex;
    gap: min(calc(100vw * 28 / 1366), 28px);
    align-items:flex-start;
    margin: min(calc(100vw * 40 / 1366), 40px) auto 0;
}

.news_thumb{
    width: min(calc(100vw * 374 / 1366), 374px);
    flex: 0 0 auto;
}

.news_thumb_img,
.news_thumb_ph{
    width: 100%;
    height: min(calc(100vw * 250 / 1366), 250px);
    border-radius: min(calc(100vw * 18 / 1366), 18px);
    object-fit: cover;
    background: #efefef;
    display: block;
}

.news_body{
    width: min(calc(100vw * 767 / 1366), 767px);
    flex: 1 1 auto;
}

.news_meta{
    display: flex;
    align-items: center;
    gap: min(calc(100vw * 18 / 1366), 18px);
    margin-bottom: min(calc(100vw * 18 / 1366), 18px);
}

.news_badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: min(calc(100vw * 46 / 1366), 46px);
    padding: 0 min(calc(100vw * 24 / 1366), 24px);
    border-radius: min(calc(100vw * 10 / 1366), 10px);
    background: linear-gradient(90deg, #0B7BC4, #1AA0DB);
    color: #ffffff;
    font-size: min(calc(100vw * 18 / 1366), 18px);
    font-weight: 700;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.news_date{
    font-size: min(calc(100vw * 20 / 1366), 20px);
    font-weight: 700;
    color: #111111;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.news_title{
    font-size: min(calc(100vw * 32 / 1366), 32px);
    line-height: 1.35;
    font-weight: 900;
    color: #111111;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_text{
    margin-top: min(calc(100vw * 16 / 1366), 16px);
    font-size: min(calc(100vw * 20 / 1366), 20px);
    line-height: 1.7;
    color: rgba(17, 17, 17, .85);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news_card:hover .news_thumb_img,
.news_card:hover .news_thumb_ph{
    transform: translateY(-2px);
    transition: transform .25s ease;
}

.news_card:hover .news_title{
    text-decoration: underline;
}

.news_empty{
    font-size: min(calc(100vw * 18 / 1366), 18px);
    padding: min(calc(100vw * 18 / 1366), 18px) 0;
}

.news_pager{
    margin-top: min(calc(100vw * 40 / 1366), 40px);
    display: flex;
    justify-content: center;
}

.news_pager .page-numbers{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(calc(100vw * 44 / 1366), 44px);
    height: min(calc(100vw * 44 / 1366), 44px);
    padding: 0 min(calc(100vw * 14 / 1366), 14px);
    margin: 0 min(calc(100vw * 6 / 1366), 6px);
    border-radius: min(calc(100vw * 10 / 1366), 10px);
    border: 1px solid rgba(29, 127, 203, .35);
    color: #1D7FCB;
    font-weight: 700;
}

.news_pager .page-numbers.current{
    background: linear-gradient(90deg, #0B7BC4, #1AA0DB);
    color: #ffffff;
    border-color: transparent;
}

.news_divider{
    width: min(calc(100vw * 1166 / 1366), 1166px);
    height: 1px;
    background: #007DC9;
    margin: min(calc(100vw * 40 / 1366), 40px) auto 0;
}

.news_item:last-child{
    margin-bottom: 0;
}

.news_item:last-child .news_divider{
    display: none;
}

@media (max-width: 768px){
    .news_archive_container{
        padding-top: calc(100vw * 48 / 375);
        padding-bottom: calc(100vw * 64 / 375);
    }

    .news_archive_wrapper{
        width: calc(100% - calc(100vw * 36 / 375));
    }

    .news_tabs{
        gap: calc(100vw * 10 / 375);
    }

    .news_tab{
        height: calc(100vw * 54 / 375);
        padding: 0 calc(100vw * 14 / 375);
        border-radius: calc(100vw * 10 / 375);
        font-size: calc(100vw * 14 / 375);
    }

    .news_item{
        margin-bottom: calc(100vw * 26 / 375);
    }

    .news_card{
        flex-direction: column;
        align-items: stretch;
        gap: calc(100vw * 14 / 375);
        margin: min(calc(100vw * 40 / 375), 40px) auto 0;
    }

    .news_thumb{
        width: 100%;
    }

    .news_thumb_img,
    .news_thumb_ph{
        height: calc(100vw * 180 / 375);
        border-radius: calc(100vw * 14 / 375);
    }

    .news_body{
        width: 100%;
    }

    .news_meta{
        gap: calc(100vw * 12 / 375);
        margin-bottom: calc(100vw * 12 / 375);
    }

    .news_badge{
        height: calc(100vw * 38 / 375);
        padding: 0 calc(100vw * 14 / 375);
        border-radius: calc(100vw * 10 / 375);
        font-size: calc(100vw * 13 / 375);
    }

    .news_date{
        font-size: calc(100vw * 14 / 375);
    }

    .news_title{
        font-size: calc(100vw * 20 / 375);
        -webkit-line-clamp: 2;
    }

    .news_text{
        margin-top: calc(100vw * 10 / 375);
        font-size: calc(100vw * 14 / 375);
        -webkit-line-clamp: 2;
    }

    .news_divider{
        width: 100%;
        margin-top: calc(100vw * 26 / 375);
    }

    .news_item:last-child{
        margin-bottom: 0;
    }
}