@charset "UTF-8";

/*//////////----- SCHEDULE -----//////////*/

#schedule div.content{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
	margin:0 auto;
	max-width: 1080px;
	
	box-sizing: border-box;
	padding:5px;
}

#schedule article{
	width:50%;
	
	margin-bottom:10px;
}

@media only screen and (min-width: 640px){
	
	#schedule article{
		width:calc(100%/3);
		
		box-sizing: border-box;
		padding:0 5px;
	}
}

@media only screen and (min-width: 960px){
	
	#schedule article{
		width:25%;
		
		padding:0 10px;
	}
}