/* 5s
-------------------------------------------*/

.five_s .poster{
	width: var(--page-width);
	margin: 0 auto;
	padding-top: 100px;
	display: flex;
	justify-content: space-between;
}
.five_s .poster div{
	width: 24%;
}
.five_s .poster img{
	border: 1px solid #ddd;
}

@media screen and (max-width: 650px){
	
	.five_s .poster{
		flex-wrap: wrap;
		padding-top: 15%;
	}
	.five_s .poster div{
		width: 48%;
	}
	.five_s .poster div:nth-of-type(3),
	.five_s .poster div:last-child{
		padding-top: 8%;
	}
}

