@charset "UTF-8";

.news_fleximg {
    display: flex;
	justify-content:flex-start;
    gap: 0 16px;
}

.news_fleximg img{
	height: 300px;
	width: auto;	
}

.fleximg_news{
	display: flex;
	flex-wrap: wrap;
    margin-left: -16%;
}

.fleximg_news div{
	width: 48%;
}

.fleximg_news div img{
	width: 100%;
}

.fleximg_news div:last-child img{
    margin-left: -27%;
}

@media only screen and (max-width: 641px) {
	
	.pc-on{
		display: none;	
	}
	
	.news_fleximg {
		display: block;
	}

	.news_fleximg img {
		height: auto;
		width: 100%;
		margin-bottom: 16px;
        max-width: fit-content;
	}

	
	
	.fleximg_news{
	    margin-left: 0;
	}
	
	.fleximg_news div{
		width: 100%;

	}

	.fleximg_news div img{
    	max-width: fit-content;
	}

	.fleximg_news div:last-child img{
		margin-left: 0;
	}
	
}