/*=================================================
 * CSS for PC
 * ================================================= */

 #day_select {
    padding: 35px 1px 0 1px;
	text-align: center;
	font-size: 0;
	line-height: 0;
	padding-bottom: 45px;
}

#day_select li {
    width: calc(100% / 7 - 2px);
	margin: 0 1px;
	color: #333;
	display: inline-block;
    vertical-align: top;
}

#day_select li br{
	display: none;
}

#day_select li a, #day_select li span {
    display: inline-block;
    width: 100%;
    height: 40px;
    position: relative;
    font-size: 14px;
    line-height: 16px;
	letter-spacing: -1px;
	vertical-align: top;
	font-family: 'Noto Serif JP', serif;
	font-weight: 400;
	text-align: center;
    text-decoration: none;
	cursor: pointer;
	box-sizing: border-box;
}
#day_select li a {
	border: 1px solid #ddd;
	color: #b99534;
	background: rgba(255, 255, 255, 0.8);
}

#day_select li span {
    color: #765600;
	background: rgb(218,184,92);
	background: linear-gradient(90deg, rgba(218,184,92,1) 0%, rgba(251,220,137,1) 50%, rgba(218,184,92,1) 100%);
    border-color: #b99534;
}

#day_select li div {
    padding-top: 10px;
}

.toptxt{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	text-align: center;
	padding: 0 0 45px 0;
	margin-top: -10px;
}
.toptxt span{	color: #cc0000;}


/** schedule **/

#cast{
	font-size: 0;
	line-height: 0;
	text-align: left;
	padding: 0 7.5px;
}

#cast .cbox{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 4 - 15px);
	margin: 0 7.5px 40px 7.5px;
	color: #222;
}
#cast .cbox:hover{
	text-decoration: none;
}

#cast .cbox .img_bg{
	position: relative;
	display: block;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#cast .cbox .img{
	display: block;
	width: 100%;
	height: 133%;
	overflow: hidden;
	margin: 0;
	-webkit-transition	: 0.4s ease-in-out;
	-moz-transition	: 0.4s ease-in-out;
	-o-transition	: 0.4s ease-in-out;
	transition		: 0.4s ease-in-out;
}

#cast .cbox .img > img{
	width: 100%;
	height: auto;
	-webkit-transition	: 0.4s ease-in-out;
	-moz-transition	: 0.4s ease-in-out;
	-o-transition	: 0.4s ease-in-out;
	transition		: 0.4s ease-in-out;
}

#cast .cbox .img:hover > img{
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
}

#cast .cbox .icon{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 12px;
	line-height: 22px;
	color: #b99534;
	position: absolute;
	top: -23px;
	left: 2px;
}

#cast .cbox .data{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: calc(100% - 4px);
	height: 55px;
	text-align: center;
	background: rgba(255, 255, 255, 0.9);
	position: absolute;
	bottom: 2px;
	left: 2px;
}

#cast .cbox .name{
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 22px;
	margin: 0 0 3px 0;
}

#cast .cbox .size{
	width: 100%;
	font-size: 11px;
	line-height: 12px;
}

#cast .cbox .time{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	text-align: center;
	padding: 5px 0;
	color: #765600;
	background: rgb(218,184,92);
	background: linear-gradient(90deg, rgba(218,184,92,1) 0%, rgba(251,220,137,1) 50%, rgba(218,184,92,1) 100%);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#cast .cbox .time span{
	display: inline-block;
	vertical-align: middle;
	font-size: 18px;
	line-height: 14px;
	margin: -3px 0 0 0;
}
#cast .cbox .today{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 13px;
	line-height: 14px;
	text-align: center;
	padding: 5px 0;
	color: #fff;
	background: rgb(33,71,113);
	background: linear-gradient(90deg, rgba(33,71,113,1) 0%, rgba(50,94,143,1) 50%, rgba(33,71,113,1) 100%);
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#cast .cbox .today.off{
	color: #999;
	background: #ccc;
}



/*=================================================
 * CSS for SP
 * ================================================= */

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

	#day_select li br{
		display: block;
	}

	#day_select li div {
		padding-top: 7px;
	}
	
	#day_select li a, #day_select li span {
		font-size: 10px;
		line-height: 12px;
	}
	

	#cast .cbox{
		width: calc(100% / 2 - 15px);
	}
	#cast .cbox .name{	font-size: 16px;}
	#cast .cbox .time{	font-size: 13px;}
	#cast .cbox .today{	font-size: 11px;}
}