/* CSS Document */


.news-area{
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 1000px;
    margin: 10px auto;
    padding: 10px;
}

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


.newsList a li{
	display: flex;
	flex-direction: column;
}

.thumbNailWrap{
	overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
	border: 1px solid #e9e9e9;
	background: #e9e9e9;
	border-radius: 2px;	
}

#newsWrap a .thumbNailWrap img{
	transition: 0.3s ease-in-out;
}


#newsWrap a:hover .thumbNailWrap img{
	transform: scale(1.1,1.1);
}

.news-item-info-detail{
    display: flex;
    flex-direction: row;
    align-items: center;
	justify-content: flex-start;
	min-width: 200px;
	margin-bottom: 10px;
}

.news-area .up_ymd{
	color: #333;
	font-size: 0.9rem;
	letter-spacing: 0.1rem;
	font-weight: 600;
	width: 110px;
}

.newsList{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}


.newsList::-webkit-scrollbar {
    width: 6px;
}

.newsList::-webkit-scrollbar-thumb {
    background-color: #CCCCCC;
	border-radius: 6px;
} 

.newsList::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 10px;
}

.newsList:hover::-webkit-scrollbar {
	width: 10px;
	cursor: pointer;
}


@media(max-width: 1200px){
	.newsList:hover::-webkit-scrollbar {
		width: 6px;
	}
	
	.newsList {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
	
	
}

#news .newsList a{
	display: block;
	padding: 40px;
	background: #fff;
	border-radius: 40px;
	margin: 0 auto 20px;
	border:2px solid #fff;
}


.news-item-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-top: 20px;
	justify-content: space-between;
}

.news-item-info .title{
    font-size: 1.1rem;
    font-weight: 500;
	letter-spacing:0rem;
}

.news-title-box{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 10px 20px;
	position: relative;
	z-index: 1;
	margin: 20px auto 10px;
}

.news-title-box::before{
	position: absolute;
	display: block;
	content:'';
	top:50%;
	transform: translateY(-50%);
	width: 65px;
	aspect-ratio:1/1;
	background: #a04800;
	border-radius: 52%;
	z-index: -1;
}

.up_ymd{
	color: #a04800;
	font-weight: 600;
	letter-spacing: 0.05rem;
	font-size: 0.9rem;
	transition: ease-in-out 0.3s;
}

.catName{
	margin-left: 5px;
	position: relative;
	padding-left: 10px;
	font-size: 0.95rem;
}

.newsList a:hover .title{
	text-decoration: underline;
}

.catName::before{
	position: absolute;
	content: '';
	display: block;
	width: 5px;
	background: #555;
	height: 1px;
	left: 0;
	top:50%;
	transform: translateY(-50%);
}

.news-arrow{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	width: 100%;
}

#news .newsList a:hover .up_ymd {
	color: #a04800;
}



@media(max-width:1200px){
	

	#news .newsList a:hover .up_ymd {
		color: #a04800;
	}

}


@media(max-width:1000px){
	
	.up_ymd {
    	letter-spacing: 0.025rem;
		font-size: 0.85rem;
		position: relative;
        bottom: 1px;
	}
	
	.catName {
    	font-size: 0.85rem;
	}

	.news-item-info .title {
		font-size: 1rem;
	}
	
	.newsList {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	
}


@media(max-width:600px){
	.newsList {
		grid-template-columns: repeat(1, 1fr);
		gap: 30px;
	}
}



