@charset "utf-8";

/****************************************/
ul#schedule_date {
	margin: 30px auto 30px;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
ul#schedule_date li {
	display: block;
	color: #fbd500;
	text-align: center;
	font-weight: bold;
	background: #a6945f;
	width: 70px;
	line-height: 20px;
	margin: 0 5px;
	border: 2px solid #a6945f;
    border-radius: 3px;
}
ul#schedule_date li.current {
	padding-left: 3px;
}
ul#schedule_date li a {
	display: block;
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.99, #a6945f), color-stop(0.00, #bfb28c));
	background: -webkit-linear-gradient(top, #bfb28c 0%, #a6945f 99%);
	background: -moz-linear-gradient(top, #bfb28c 0%, #a6945f 99%);
	background: -o-linear-gradient(top, #bfb28c 0%, #a6945f 99%);
	background: -ms-linear-gradient(top, #bfb28c 0%, #a6945f 99%);
	background: linear-gradient(top, #bfb28c 0%, #a6945f 99%);
	width: 66px;
	line-height: 20px;
	text-decoration: none;
}
ul#schedule_date li a:hover {
	color: #fbd500;
}
/****************************************/
div#schedule {
	padding: 20px 0 0 0;
	text-align: left;
	margin-right: -30px;
}
/****************************************/
#top_schedule {
	margin: 10px 0 30px;
}
ul.box {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	text-align: center;
    margin-right: -7px;
}
ul.box li {
	width: 220px;
	height: 405px;
	background: url(../img/bg.png) no-repeat top center;
	padding: 10px 0px 0 0;
	text-align: center;
    border: 1px solid #999;
    margin: 0 7px 16px;
}
ul.box dt .pic {
	width: 200px;
	height: 300px;
	object-fit: cover;
	margin-bottom: 3px;
}
ul.box dd .new {
    display: block;
	background: #4b82ff;
    color: #fff;
    width: 50px;
    line-height: 18px;
    float: left;
    margin-right: -50px;
    font-size: 12px;
    font-family: fertigo-pro,serif;
    letter-spacing: 0.05em;
}
ul.box p.size {
	margin: 0px 0  0;
	text-align: center;
	font-size: 13px;
	line-height: 160%;
}
ul.box p.size a {
	font-size: 18px;
    font-weight: bold;
	color: #fff;
	text-decoration: none;
}
ul.box p.size a:hover {
	color: #a18800;
}
ul.box p.shift {
	color: #fff;
	line-height: 22px;
    padding: 3px 0 0;
    margin: 5px 8px 0;
    background: #19aabb;
    border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
}

/* よく使いそうなCSS3
----------------------------------------------------*/
#selectors {
/* 角丸 */
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;

/* 角丸個別 */
	-webkit-border-top-right-radius: 15px;
	-moz-border-radius-topright: 15px;
	border-top-right-radius: 15px;

/* ボックスに影 */
	-webkit-box-shadow: 1px 1px 3px #999;
	-moz-box-shadow: 1px 1px 3px #999;
	box-shadow: 1px 1px 3px #999;

/* テキストに影 */
	text-shadow: 1px 1px 0px #999;

/* グラデーション */
    background: -moz-linear-gradient(top, #f5f5f5, #fff);　/* Firefox用 */  
  
