.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 p {
    font-size: 16px;
    text-align: center;
    color: #e95b00;
    margin-top: 12px;
    letter-spacing: 2px;
    text-indent: 2px;
}

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

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

.news_detail .date {
    font-size: 24px;
    line-height: 1;
    color: #1f2b50;
    letter-spacing: 2px;
}

.news_detail .news_head {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 100px;
    padding: 15px 10px;
    border-top: solid 1.5px #1f2b50;
    border-bottom: solid 1.5px #1f2b50;
    margin-top: 20px;
}

.news_detail .news_head .head_content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.news_detail .news_head .head_content .genre {
    width: 126px;
    height: 26px;
    border-radius: 10px;
    background-color: #1f2b50;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2px 0;
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
    text-indent: 2px;
    color: white;
}

.news_detail .news_head .head_content h1 {
    width: calc(100% - 146px);
    font-size: 24px;
    line-height: 30px;
    color: #1f2b50;
    letter-spacing: 2px;
}

.news_detail .news_content {
    padding: 60px 50px 100px;
}
.news_content > .item > .news_txt {
    padding: 35px 0 60px;
    font-size: 18px;
    line-height: 40px;
}
.news_content > .item > .news_img > img {
    width: 100%;
}
.news_detail .bottom_block {
    padding-top: 35px;
    border-top: solid 1.5px #1f2b50;
}

.news_detail .navi_btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1165px;
}

.news_detail .navi_btn a {
    height: 17px;
}

.news_detail .navi_btn a img {
    display: block;
    width: auto;
    height: 100%;
}

.news_detail .list_btn {
    width: 480px;
    height: 70px;
    margin: 65px auto 0;
    border-radius: 35px;
    border: solid 3px #e95b00;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news_detail .list_btn p {
    font-size: 32px;
    line-height: 1;
    text-align: center;
    color: #e95b00;
    letter-spacing: 3px;
    text-indent: 3px;
}

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

    .news_detail .list_btn p {
        font-size: 28px;
    }

    .news_detail .date {
        font-size: 22px;
    }

    .news_detail .news_head .head_content .genre {
        width: 115px;
        font-size: 16px;
    }

    .news_detail .news_head .head_content h1 {
        width: calc(100% - 135px);
        font-size: 22px;
    }

    .news_detail .news_content {
        padding: 40px 40px 80px;
    }

    .news_content > .item > .news_txt {
        font-size: 16px;
        line-height: 30px;
    }
}

@media screen and (max-width: 1000px) {
    .news_detail .navi_btn a {
        height: 15px;
    }

    .news_detail .list_btn {
        max-width: 350px;
        width: 90%;
        height: 60px;
        border-radius: 30px;
    }

    .news_detail .list_btn p {
        font-size: 24px;
    }
}

@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;
    }

    .news_detail .navi_btn a {
        height: 12px;
    }

    .news_detail .list_btn {
        max-width: 280px;
    }

    .news_detail .list_btn p {
        font-size: 20px;
    }

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

    .news_detail .date {
        font-size: 18px;
    }

    .news_detail .news_head {
        min-height: 100px;
        padding: 10px 0;
        margin-top: 15px;
    }

    .news_detail .news_head .head_content {
        flex-wrap: wrap;
        gap: 5px;
    }

    .news_detail .news_head .head_content .genre {
        width: 105px;
        height: 22px;
        border-radius: 8px;
        font-size: 14px;
    }

    .news_detail .news_head .head_content h1 {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
    }

    .news_detail .news_content {
        padding: 30px 0 60px;
    }

    .news_content > .item > .news_txt {
        padding: 20px 0 40px;
        font-size: 14px;
        line-height: 24px;
    }
}
