/* CSS Document */



#news-section{    
	display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}


.news-area{
	width: 100%;
	margin: 10px auto;
}

.news-area ul{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
    flex-direction: column;
}

.news-area .newsList a{
	width:100%;
    display: flex;
	flex-direction: column-reverse;
	border-bottom:1px solid #28a03c;
	position: relative;
}



.news-area .newsList a::before{
	position: absolute;
	display: block;
	content: '';
	width:5px;
	aspect-ratio:1/1;
	border-top:1px solid #28a03c;
	border-right:1px solid #28a03c;
	transform: rotate(45deg) translateY(-50%);
	right: 20px;
	top:50%;
}


.news-area .newsList a:hover .news-item-info .title{
	color:#148245;
}


.thumbNailWrap{
	overflow: hidden;
	width:100%;
	aspect-ratio:9/5;
	display: block;
}

.news-item-info-detail{
	display: flex;
}

.news-area .up_ymd{
	color: #333;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 3px;
	width: 130px;
}

.news-area .catName{
    color: #fff;
    background: #28a03c;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0 2vw;
    width: 85px;
    text-align: center;
    padding: 1px 5px 0;
}

.news-item-info{
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 12px 20px;
}



.news-item-info .title{
    font-size: 16px;
    font-weight: 500;
	letter-spacing: 2px;
}




.news-title-box{
	display: flex;
	align-items: flex-end;
	background: #28a03c;
	padding: 10px 20px;
}

.news-title-box p{
	color: #fff;
	font-size: 20px;
	line-height: 28px;
	letter-spacing: 1px;
}

.news-title-box h2{
	font-size: 20px;
	font-weight: 600;
	line-height: 28px;
	color: #fff;
	letter-spacing: 3px;
	margin-right: 5px;
}

#newsWrap{
	border:1px solid #28a03c;
	height: 240px;
    overflow: auto;
}


@media(max-width:1000px){
	
	#news-section {
		padding: 0 10px;
	}
	
	
}


@media(max-width:800px){
	
	.news-title-box {
		padding: 10px;
	}

    .news-area ul {
        padding: 0 5px 10px;
	}
	
	.news-item-info {
		margin: 5px 0;
        flex-direction: column;
        align-items: flex-start;
		padding-right: 25px;
		padding-left: 5px;
	}
	
	.news-item-info .title {
		letter-spacing: 1px;
		line-height: 23px;
		font-weight: 400;
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.news-area .up_ymd {
    	font-size: 14px;
    	letter-spacing: 1px;
		width: 90px;
		margin-left: 5px;
	}
	
	.news-area .catName {
		font-size: 12px;
		letter-spacing: 2px;
		margin: 0;
		width: 75px;
		padding: 1px 3px 0;
	}
	
	.news-item-info-detail {
    	flex-direction: row-reverse;
	}
	
	.news-item-info-detail {
		margin-top: 5px;
	}
	
	.news-area .newsList a::before {
    	right: 10px;
	}
	

}


@media(max-width:450px){
	
	.news-item-info .title {
		letter-spacing: 0px;
	    font-size: 15px;
	}
	
	.news-item-info {
    		padding-right: 10px;
	}
	

}