/* CSS Document */

#news{
    position: relative;
}

#news::before{
	content: '';
	display: block;
	position: absolute;
	z-index: -1;
	background: url("../img/bk/silver.jpg") center;
	background-size: 100% 100%;
	opacity: 0.5;
	width: 100%;
	height: 100%;
}

#newsWrap{
/*	max-height: 320px;*/
/*    overflow: auto;*/
	width: 100%;
/*
	scrollbar-color: #fff #bcaf0c;
    scrollbar-width: thin;
*/
}


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

.news-wrap{
	display: flex;
	flex-direction: row;
	width: 100%;
	height: 100%;
	gap: 30px;
}

.news-area .area-title{
	width: 800px;
}

.news-area .area-title p {
	position: relative;
	font-size: 4rem;
	letter-spacing: 3px;
	padding-bottom: 10px;
	line-height: 1;
}

.news-area .area-title p::before {
	content: 'TOPICS';
	bottom: -3px;
	left: -1.25rem;
	font-size: 7.5rem;
}


.news-area .area-title h2{
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 1px;
}

.news-area ul{
	display: flex;
    justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1300px;
	padding: 0 20px;
	margin: auto;
	gap: 10px;
	flex-direction: column;
}

.news-area .newsList a{
	width: 100%;
    padding:20px 30px 20px 10px;
    display: flex;
    flex-direction: column-reverse;
    margin: 0;
    background: rgba(255,255,255,0.95);
	position: relative;
}

#news .arrow-google {
	position: absolute;
	right: 5px;
	top:50%;
	transform: translateY(-50%);
}



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

.up_ymd{
    color: #000;
    display: inline;
    width: fit-content;
    padding: 1px 5px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    margin-top: 10px;
    margin-bottom: 5px;
    border-radius: 2px;
    border: 1px solid #333;
}

.catName{
	border: 1px solid #000;
	background: #000;
	color: #fff;
	padding: 1px 5px;
	font-weight: 400;
	font-size: 0.65rem;
	font-family: "Noto Sans JP", serif;
}


.news-item-info{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.news-item-info .title{
    font-size: 1.1rem;
    font-weight: 400;
	letter-spacing: 0.02rem;
	transition: 0.3s ease-in-out;
}

#newsWrap a:hover{
	box-shadow: 0 0 5px #555;
}

#newsWrap a:hover .title{
	letter-spacing: 0.04rem;
}

@media(max-width: 1200px){
	
	.news-area {
		padding-bottom: 100px;
	}
	
	.news-area ul {
    	padding: 0;
	}
	
	.news-item-info {
		gap: 0;
	}
	
	.news-area .newsList a {
    	padding: 10px 30px 10px 10px;
	}
	
	.news-item-info .title {
		font-size: 1rem;
		letter-spacing: 0.01rem;
	}
	
}



@media(max-width: 1000px){
	
	.news-area .area-title {
		width: 100%;
	}
	
	.news-wrap {
		gap: 10px;
	}
	
	.news-area {
        padding-top: 150px;
    }
	
	
	.news-area .area-title p::before {
		bottom: -3px;
		left: -1.25rem;
		font-size: 6rem;
	}
	
	.news-area .area-title p {
    	font-size: 3rem;
	}
	
	.news-item-info .title {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 5px;
    }
	
	
}


@media(max-width: 800px){
	
	.news-area .area-title p {
        text-align: center;
    	padding-bottom: 0;
	}
	
	.news-area .area-title {
    	margin-bottom: 20px;
	}
	
	.news-area .area-title p::before {
        left: 50%;
        transform: translateX(-50%);
    }
	
	.news-wrap {
		flex-direction: column;
	}
	
	.news-area .area-title h2 {
		font-size: 1.25rem;
		letter-spacing: 0.02rem;
		text-align: center;
	}


}