.news_container{
    padding-top: 5%;
    padding-bottom: 54%;
}

.news_wrap{
    margin-left: auto;
    margin-right: auto;
    width: 82%;
}

.news_title{
    color: #3A7961;
    font-size: 5.3vw;
    font-weight: 700;
    line-height: 1.6;
}

.news_info_wrap{
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 4%;
}

.news_info_date{
    font-size: 3.7vw;
    flex-shrink: 0;
    margin-right: 5%;
    margin-top: 1.5%;
    margin-bottom: 4%;
}

.news_info_cate_box{
    display: flex;
    flex-wrap: wrap;
    gap: 1vw;
}

.news_info_cate_cate{
    border: .3vw solid #000;
    border-radius: 2vw;
    font-size: 3.7vw;
    padding: 1.5vw;
    min-width: 40vw;
    text-align: center;
}

.news_content_inner{
    margin-top: 16%;
}

.news_content_headUnderline{
    margin-top: 21%;
    margin-bottom: 10%;
}
.news_content_headUnderline:nth-child(1){
    margin-top: 0;
}

.news_content_headDot{
    font-size: 4.2vw;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 5%;
    margin-left: 1.2em;
    text-indent: -1.2em;
}

.news_content_text{
    font-size: 3.7vw;
    line-height: 1.8;
    margin-bottom: 10%;
    text-align: justify;
}
.news_content_text strong{
    font-weight: 700;
}
.news_content_text a{
    color: #0088FF;
    text-decoration: underline;
    text-underline-offset: .3em;
}

.news_content_img_box{
    margin-bottom: 10%;
}

.news_content_img{
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 100%;
}

.news_content_img_caption{
    color: #606060;
    font-size: 3.2vw;
    line-height: 1.6;
    margin-top: 4%;
    text-align: center;
    white-space: pre-wrap;
    word-break: break-all;
}

@media screen and (min-width: 768px){
    .news_container{
        margin-left: auto;
        margin-right: auto;
        padding-top: min(5%, 110px);
        padding-bottom: min(19%, 418px);
        max-width: 2200px;
    }

    .news_wrap{
        width: 64%;
    }

    .news_title{
        font-size: min(2.2vw, 48px);
    }

    .news_info_wrap{
        margin-top: 2%;
    }

    .news_info_date{
        font-size: min(1.3vw, 28px);
        margin-right: 2%;
        margin-top: .7%;
        margin-bottom: 2%;
    }

    .news_info_cate_box{
        gap: min(0.77vw, 17px);
    }

    .news_info_cate_cate{
        border: min(.1vw, 2px) solid #000;
        border-radius: min(.7vw, 15px);
        font-size: min(1.3vw, 28px);
        padding: min(.5vw, 11px);
        min-width: min(12.5vw, 275px);
    	transition: all .3s ease-out;
	}
	.news_info_cate_cate:hover {
		background-color: #3A7961;
		border-color: #3A7961;
		color: #fff;
	}

    .news_content_inner{
        margin-top: 8%;
    }

    .news_content_headUnderline{
        margin-top: 10%;
        margin-bottom: 4.5%;
    }

    .news_content_headDot{
        font-size: min(1.5vw, 32px);
        margin-bottom: 2.2%;
    }

    .news_content_text{
        font-size: min(1.3vw, 28px);
        line-height: 1.6;
        margin-bottom: 4.5%;
    }

    .news_content_text a:hover{
        text-decoration: none;
    }

    .news_content_img_box{
        margin-bottom: 4.5%;
    }

    .news_content_img_caption{
        font-size: min(1.1vw, 24px);
        margin-top: 2%;
    }
}