.pan_list_wrap {
    width: 100%;
    height: 46px;
    background-color: #e95b00;
}

.pan_list_wrap .pan_list {
    display: flex;
    padding: 12px 45px;
    align-items: center;
    gap: 30px;
}

.pan_list_wrap .pan_list :is(a, p) {
    font-size: 12px;
    color: white;
    letter-spacing: 1px;
    position: relative;
}

.pan_list_wrap .pan_list :is(a, p) + :is(a, p)::before {
    content: url(../img/pan_arrow.svg);
    width: 15px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -22.5px;
    margin: auto;
}

.top_wrap {
    position: relative;
    margin-top: -11px;
    overflow: hidden;
}

.top_wrap .wave_filter {
    width: 3122px;
    height: 15px;
    mask-image: url(../img/wave_mask.svg);
    -webkit-mask-image: url(../img/wave_mask.svg);
    mask-size: cover;
    -webkit-mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    background-image: url(../img/head_bg.png);
    background-position: top center;
    background-size: 1600px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.top_wrap .head_block {
    width: 100%;
    background-image: url(../img/head_bg.png);
    background-position: top center;
    background-size: 1600px;
    position: relative;
    padding: 50px 0 60px;
}

.top_wrap .head_block img {
    width: 197px;
    display: block;
    margin: 0 auto;
}

.top_wrap .head_block h1 {
    font-size: 16px;
    text-align: center;
    color: #e95b00;
    margin-top: 12px;
    letter-spacing: 2px;
    text-indent: 2px;
}

.content_wrap {
    padding: 55px 0 225px;
    background-image: url(../img/bg_white.jpg);
    background-position: top center;
    background-size: 800px;
}

.news_list {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.news_list .news_item {
    width: 100%;
    padding: 15px 0;
    display: flex;
    align-items: flex-end;
    min-height: 92px;
    border-bottom: solid 1.5px #1f2b50;
}

.news_list .news_item a {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.news_list .news_item a .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 240px;
}

.news_list .news_item a .info .date {
    font-size: 18px;
    letter-spacing: 2px;
    color: #1f2b50;
}

.news_list .news_item a .info .genre {
    width: 126px;
    height: 26px;
    border-radius: 10px;
    background-color: #1f2b50;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_list .news_item a .info .genre p {
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
    text-indent: 2px;
    color: white;
}

.news_list .news_item a .item_content {
    width: calc(100% - 260px);
}

.news_list .news_item a .item_content p {
    font-size: 20px;
    line-height: 26px;
    color: #1f2b50;
    letter-spacing: 1px;
}

.pagination {
    width: 100%;
    margin: 80px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 5;
}

.pagination .pn_item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #1f2b50;
    background-color: white;
    border: solid 1.5px #1f2b50;
}

.pagination .pn_item.active {
    background-color: #1f2b50;
    color: white;
}

.pagination .pn_item.dot {
    width: auto;
    background-color: transparent;
    border: none;
}

.pagination .arrow {
    height: 17px;
}

.pagination .arrow.prev {
    margin-right: 10px;
}
.pagination .arrow.next {
    margin-left: 10px;
}

.pagination .arrow.disabled {
    opacity: 0.3;
    display: none;
}

.pagination .arrow a {
    width: auto;
    height: 100%;
    display: block;
}

.pagination .arrow img {
    height: 100%;
    display: block;
}

.pagination .arrow img.sp_arrow {
    display: none;
}

@media screen and (max-width: 1200px) {
    .top_wrap .head_block img {
        width: 158px;
    }

    .news_list .news_item a .info {
        width: 225px;
    }

    .news_list .news_item a .info .date {
        font-size: 16px;
    }

    .news_list .news_item a .info .genre {
        width: 115px;
    }

    .news_list .news_item a .info .genre p {
        font-size: 16px;
    }

    .news_list .news_item a .item_content {
        width: calc(100% - 245px);
    }

    .news_list .news_item a .item_content p {
        font-size: 18px;
    }
}

@media screen and (max-width: 1000px) {
    .news_list .news_item a {
        flex-wrap: wrap;
        gap: 10px;
    }

    .news_list .news_item a .item_content {
        width: 100%;
    }

    .pagination {
        margin: 55px auto 0;
        gap: 8px;
    }

    .pagination .pn_item {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .pagination .arrow {
        height: 15px;
    }

    .pagination .arrow.prev {
        margin-right: 5px;
    }
    .pagination .arrow.next {
        margin-left: 5px;
    }
}

@media screen and (max-width: 600px) {
    .pan_list_wrap .pan_list {
        padding: 12px 5%;
    }

    .top_wrap .head_block {
        padding: 35px 0 40px;
    }

    .top_wrap .head_block img {
        width: 126px;
    }

    .content_wrap {
        padding: 45px 0 120px;
    }

    .news_list .news_item a .info {
        width: 210px;
    }

    .news_list .news_item a .info .date {
        font-size: 14px;
    }

    .news_list .news_item a .info .genre {
        width: 105px;
        height: 22px;
        border-radius: 8px;
    }

    .news_list .news_item a .info .genre p {
        font-size: 14px;
    }

    .news_list .news_item a .item_content p {
        font-size: 16px;
        line-height: 22px;
    }

    .pagination {
        margin: 55px auto 0;
        gap: 8px;
    }

    .pagination .pn_item {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .pagination .arrow {
        height: 10px;
    }
}

@media screen and (max-width: 450px) {
    .pagination .arrow img {
        display: none;
    }

    .pagination .arrow img.sp_arrow {
        display: block;
    }
}
