/*--------------------------------------------------------------
# 2カラム等のレイアウト
--------------------------------------------------------------*/

.news-photo-box{
	display: flex;
	padding: 0;
	gap:30px;
}
.news-photo-box figure{
	margin: 0;
}
.news-photo-item-2col{
	width: 50%;
}

@media screen and (max-width: 767px){

.news-photo-box{
	display: block;
}
.news-photo-box figure{
	margin-bottom: 20px;
}
.news-photo-item-2col{
	width: 100%;
}

}

