@charset "UTF-8";
/* CSS Document */

/*//////////----- SCHEDULE -----//////////*/

.weekly{
	margin-bottom:20px;
}

.weekly ul{
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	width:100%;
}

.weekly ul li{
	width:calc(100%/7);
	
	font-size:0.8rem;
	line-height:20px;
	
	text-align: center;
	
	position: relative;
}

.weekly ul li:after{
	display:block;
	content:"";
	
	width:1px;
	height:55px;
	
	position: absolute;
	top:0;
	right:0;
	
	background-color:#fff;
	
	z-index: 2;
}

.weekly ul li:first-child{
	font-size:1.0rem;
	line-height:35px;
}

.weekly ul li:last-child:after{
	display:none;
}

.weekly ul li span.note{
	display:block;
	
	font-size:0.6rem;
	line-height:15px;
}

.weekly ul li span.note:before{
	content:"（";
}

.weekly ul li span.note:after{
	content:"）";
}

.weekly ul li a{
	display:block;
	
	background-color:#048;
	color:#fff;
	
	box-sizing: border-box;
	padding:10px 0;
	
	transition:0.25s;
}

.weekly ul li a:hover{
	opacity: 0.8;
	text-decoration: none;
}

.weekly ul li:first-child a{
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
}

.weekly ul li:last-child a{
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
}

@media only screen and (min-width: 640px){
	
	.weekly{
		margin-bottom:30px;
	}
	
}

#schedule div.post-content{
	width:100%;
	
	display:flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: flex-start;
	
	box-sizing: border-box;
	padding:5px;
}

#schedule article{
	width:50%;
	
	box-sizing: border-box;
	padding:2.5px;
}

@media only screen and (min-width: 640px){
	
	#schedule article{
		width:calc(100%/3);
	}
	
}

@media only screen and (min-width: 760px){
	
	#schedule article{
		width:25%;
		
		padding:5px;
	}
	
}

@media only screen and (min-width: 960px){
	
	#schedule article{
		width:calc(100%/3);
	}
	
}