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

body{
	background: url(./img/pc_bg.jpg) no-repeat top center fixed;
	background-size: cover;
}


/** day_select **/

#day_select{
	padding: 0 0 50px 0;
	text-align: center;
}

#day_select{
	font-size: 0;
	line-height: 0;
}

#day_select ul{
}

#day_select li{
	display: inline-block;
	vertical-align: top;
	margin: 0 5px;
}

#day_select li > span,
#day_select li a{
	position: relative;
	display: inline-flex;
	align-items: center;
	align-content: center;
	justify-content: center;
	width: 100px;
	height: 40px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 15px;
	line-height: 20px;
	text-align: center;
	text-decoration	: none;
	cursor: pointer;
	position: relative;
	border-width: 1px;
	border-style: solid;
	-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;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#day_select li a{
	color: #000;
	background: rgba(255,255,255,0.8);
	border-color: #000;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
#day_select li a:hover{
	background: #999;
}

#day_select li > span.active{
	color: #fff;
	background: #000;
	border-color: #000;
}
#day_select li i{	font-style: normal;}

#day_select li .sat{	color: #0099ff;}
#day_select li .sun{	color: #ff6666;}
#day_select li br{	display: none;}


/** schedule **/

#schedule{
	text-align: center;
}

#schedule ul{
	font-size: 0;
	line-height: 0;
	text-align: left;
	padding: 0 75px;
}

#schedule li{
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: calc(100% / 4 - 50px);
	margin: 0 25px 50px 25px;
	background: rgba(255,255,255,0.8);
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

#schedule li .photo{
	position: relative;
}
#schedule li .photo a{
	display: block;
	position: relative;
	overflow: hidden;
	-webkit-transition	: 0.2s ease-in-out;
	-moz-transition	: 0.2s ease-in-out;
	-o-transition	: 0.2s ease-in-out;
	transition		: 0.2s ease-in-out;
}
#schedule li .photo a: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);
}
#schedule li .photo a > 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;
}

#schedule .icon{
	display: inline-block;
	vertical-align: top;
	position: absolute;
	top: -10px;
	right: -10px;
}
#schedule .icon img{
	width: 50px;
	height: auto;
}
#schedule .txt{
	position: relative;
	width: 100%;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	color: #000;
	text-align: center;
	padding: 0 0 10px 0;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}
#schedule .txt .course{
	font-family: "FontA";
	font-weight: normal;
	font-size:min(2.9vw, 16px);
	line-height: 1.8;
	background: #000;
}
#schedule .txt .job{
	font-size:min(2.9vw, 16px);
	line-height: 1.8;
	border-bottom: 1px solid #000;
}
#schedule .txt .name{
	font-size:min(2.8vw, 13px);
	line-height: 1.2;
	margin: 8px 0 0 0;
}
#schedule .txt .name a{
	font-size:min(4vw, 20px);
	color: currentColor;
}
#schedule .txt .size{
	font-size:min(2.5vw, 13px);
	line-height: 1.1;
	margin: 5px 0 0 0;
}
#schedule .txt .size br{	display: none;}

#schedule .txt .time{
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.3;
}
#schedule .txt .time .material-icons{
	position: relative;
	bottom: -2px;
	font-size: 16px;
	line-height: 1;
}

#schedule .txt .now{
	display: inline-block;
	vertical-align: top;
	width: 120px;
	font-family: var(--font-base);
	font-weight: normal;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	background: #ff3b3b;
	border-radius: 0 10px 10px 0;
	padding: 0 4px;
	position: absolute;
	left: 0;
	top: -25px;
	-webkit-animation:now 0.75s ease-in-out infinite alternate;
	-moz-animation:now 0.75s ease-in-out infinite alternate;
	animation:now 0.75s ease-in-out infinite alternate;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}


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

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

	body:before{
		background: url(./img/sp_bg.jpg) no-repeat top center;
		-webkit-background-size: cover;
		background-size: cover;
	}

	/** day_select **/
	#day_select{
		margin: 0;
		padding: 0 14px 15px 14px;
		text-align: center;
	}
	#day_select ul{	width: auto;}
	#day_select li{
		width: calc(100% / 7 - 2px);
		margin: 0 1px 2px 1px;
	}
	#day_select li > span,
	#day_select li a{
		flex-wrap: wrap;
		width: 100%;
		height: auto;
		position: relative;
		font-size: 11px;
		line-height: 12px;
		padding: 5px 0;
	}
	#day_select li em,
	#day_select li i{	width: 100%;}
	#day_select li a:before,
	#day_select li a:after,
	#day_select li span:before,
	#day_select li span:after{	display: none;}
	#day_select li br{	display: inline-block;}

	/** schedule **/
	#schedule{
		text-align: center;
		padding: 0 7.5px;
	}
	#schedule ul{	padding: 0;}
	#schedule li{
		width: calc(100% / 2 - 15px);
		height: auto;
		box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
		margin: 0 7.5px 15px 7.5px;
		-webkit-box-sizing: border-box;
		   -moz-box-sizing: border-box;
		        box-sizing: border-box;
	}
	#schedule .icon{
		top: -5px;
		right: -5px;
	}
	#schedule .icon img{
		width: 35px;
		height: auto;
	}
	#schedule .txt .size br{	display: inline;}

}
