@charset "UTF-8";

/* #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# PC・スマホ 共通設定 #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# */

/* L1 ######################################## スケジュール ######################################## */

#schedule {
	position: relative;
	width: 1024px;
	margin: 0 auto;
}

#schedule h2 {
	position: relative;
	float: left;
	color: #ffffff;
	margin-bottom: 5px;
	padding: 0.4em 20px;
	font-family: "Century Gothic", "メイリオ", "Trebuchet MS";
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1.0;
	letter-spacing: 0.2em;
	
	border-radius: 22px;
	background: rgba(0, 0, 0, 0.85);
}
#schedule h2::before {
	content: "\f05a";
	margin-right: 6px;
	font-family: "FontAwesome";
}
#schedule h2::after {
	content: "－ スケジュール －";
	margin-left: 6px;
	color: #ffffff;
	font-family: "メイリオ", "Meryo", "HiraKakuProN-W3", "MS UI Gothic", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0;
}

/* ****************************** リスト ****************************** */

#category {
	clear: both;
	text-align: center;
}

#category li {
	display: inline-block;
	position: relative;
	cursor: pointer;
	margin: 1px;
	padding: 0.8em 15px;
	color: #336699;
	font-size: 1.4rem;
	text-align: center;
	line-height: 1.2;
	vertical-align: middle;
	border: 1px solid #cccccc;
	background: #ffffff;
	
	border-radius: 5px;
	box-shadow: inset -4px -4px 12px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
}

#category li.modified {
	color: #ff6600;
}

#category li.today {
	color: #cc0000;
}

#category li.modified span::before,
#category li.today span::before {
	position: relative;
	top: -2px;
	display: inline-block;
	margin-right: 5px;
	padding: 2px 6px;
	color: #ffffff;
	font-size: 1.0rem;
	line-height: 1.0;
	
	border-radius: 5px;
}
#category li.modified span::before {
	content: "NEW";
	background: #ff6600;
}
#category li.today span::before {
	content: "TODAY";
	background: #cc0000;
}
#category li.selected.modified span::before,
#category li.selected.today span::before {
	background: #999999 !important;
}


#category li.selected {
	cursor: default;
	color: #aaaaaa !important;
	box-shadow: inset 0px 4px 6px rgba(0, 0, 0, 0.1);
}

#category li span {
	display: block;
	text-align: left;
}

/* ****************************** 外枠 ****************************** */

div.list-wrapper {
	overflow: hidden;
	
	-webkit-transition: height 0.5s ease-in-out;
	-moz-transition: height 0.5s ease-in-out;
	-ms-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}

#schedule div.list {
	clear: both;
	position: relative;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	padding: 0.8em 25px 1.5em 25px;
	
	background: rgba(255, 255, 255, 0.85);
}

/* ****************************** table 関連 ****************************** */

/* L3 ======================================== table 要素 ======================================== */

#schedule table {
	position: relative;
	width: 100%;
	border-collapse: collapse;
	
	box-sizing: border-box;
}

/* L3 ======================================== caption 要素 ======================================== */

#schedule table caption {
	position: relative;
	margin-left: 1.6em;
	margin-bottom: 0.2em;
	color: #444444;
	font-size: 1.8rem;
	text-align: left;
	line-height: 1.6;
	letter-spacing: 0.1em;
	
	text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

#schedule table caption::before {
	position: absolute;	
	top: -1px;
	left: -1.4em;
	margin-right: 0.5em;
	font-family: "FontAwesome";
}
#schedule table#regular caption::before {
	content: "\f021";
}
#schedule table#web caption::before {
	content: "\f1e0";
}
#schedule table#tv caption::before {
	content: "\f26c";
}
#schedule table#radio caption::before {
	content: "\f0e7";
}
#schedule table#magazine caption::before {
	content: "\f02d";
}
#schedule table#etc caption::before {
	content: "\f05a";
}
#schedule table#event caption::before {
	content: "\f130";
}
#schedule table[id^=event] caption::before {
	content: "\f130";
}

/* L3 ======================================== tr 要素 ======================================== */

#schedule div.list > table > thead tr:last-child {
	background: rgba(0, 0, 0, 0.04);
}

/* L3 ======================================== info ======================================== */

#schedule table thead td.info {
	padding: 0.5em 50px 1em 50px;
}

#schedule table tfoot td.info {
	padding: 1.5em 50px 0 50px;
}

#schedule table tbody td.info {
	padding: 1.5em 50px;
	text-align: left !important;
	border-left: none !important;
	border-right: none !important;
}

/* L3 ======================================== th 要素 ======================================== */

#schedule table th {
	padding: 0.5em 25px;
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.2em;
	border: 1px solid #aaaaaa;
}

#schedule div.list > table > thead > tr > th:first-child {
	width: 100px;
	border-right-style: dotted;
}
#schedule table th:last-child {
	border-left-style: dotted;
}

/* L3 ======================================== td 要素 ======================================== */

#schedule div.list > table > tbody > tr > td {
	border: 1px solid #aaaaaa;
}
#schedule div.list > table > tbody > tr > td:first-child {
	position: relative;
	padding: 1em 10px;
	font-size: 1.2rem;
	text-align: center;
	vertical-align: middle;
	border-right-style: dotted;
}
#schedule div.list > table > tbody > tr > td:last-child {
	padding: 1em 50px;
	border-left-style: dotted;
}

#schedule table tbody tr.today > td:first-child {
	color: #cc0000 !important;
	font-weight: bold;
}

#schedule table tbody tr.today > td:first-child::before,
#schedule table tbody tr.new > td:first-child::before {
	display: block;
	margin: 5px 10px;
	font-weight: bold;
	color: #ffffff;
	
	border-radius: 8px;
}
#schedule table tbody tr.new > td:first-child::before {
	content: "NEW";
	background: #ff6600;
}
#schedule table tbody tr.today > td:first-child::before {
	content: "TODAY";
	background: #cc0000;
}

/* L3 ======================================== em 要素 ======================================== */

#schedule table td > em {
	color: #ff6600;
	font-weight: bold;
}

/* L3 ======================================== p 要素 ======================================== */

/* L4 ---------------------------------------- タイトル ---------------------------------------- */

#schedule table td > p.title {
	position: relative;
	margin: 0;
	color: #336699;
	font-size: 1.4rem;
	line-height: 1.6;
}

#schedule table td > p.title strong {
	font-size: 2.0rem;
	font-weight: normal;
	text-shadow: 2px 2px 0 rgba(51, 102, 153, 0.1);
}
#schedule table td > p.title::before {
	position: absolute;
	top: 1px;
	left: -1.3em;
	margin-right: 0.5em;
	font-family: "FontAwesome";
	font-size: 1.8rem;
	content: "\f005";
}
#schedule table td > p.powerplay::before,
#schedule table td > p.tie-up::before {
	content: "\f001";
	left: -1.4em;
}

/* L4 ---------------------------------------- メモ ---------------------------------------- */

#schedule table td > p.memo {
}

/* L3 ======================================== リスト関連 ======================================== */

#schedule table td > ul > li {
	position: relative;
	list-style-type: none;
}
#schedule table td > ul > li.memo {
	color: #666666;
}
#schedule table td > ul > li.warning {
	color: #cc0000;
}

#schedule table td > ul > li.time::before {
	content: "\f017";
	left: -20px;
}
#schedule table td > ul > li.repeat::before {
	content: "\f021";
	left: -20px;
}
#schedule table td > ul > li.description::before {
	content: "\f14b";
	left: -21px;
}
#schedule table td > ul > li.performer::before,
#schedule table td > ul > li.guest::before,
#schedule table td > ul > li.mc::before {
	content: "\f007";
	left: -20px;
}
#schedule table td > ul > li.memo::before {
	content: "\f27b";
	left: -22px;
	color: #666666;
}
#schedule table td > ul > li.stage-info::before {
	content: "\f21d";
	left: -20px;
}
#schedule table td > ul > li.warning::before {
	content: "\f071";
	left: -23px;
	color: #cc0000;
}

#schedule table td > ul > li.tie-up::before {
	content: "\f001";
	left: -21px;
}

#schedule table td > ul > li.time ul,
#schedule table td > ul > li.repeat ul {
	margin-left: 0;
}
#schedule table td > ul > li.time ul li::before,
#schedule table td > ul > li.repeat ul li::before {
	display: none;
}

#schedule table td > ul > li.time p + ul,
#schedule table td > ul > li.repeat p + ul {
	list-style-type: circle;
	margin-left: 25px;
}

#schedule table td > ul > li.time p + ul li::before,
#schedule table td > ul > li.repeat p + ul li::before {
	display: inherit;
}

/*
#schedule table td > ul > li ul.no-mark {
	margin-left: 0;
}
#schedule table td > ul > li ul.no-mark li::before {
	display: none;
}
*/
/* L3 ======================================== .format 上書き ======================================== */

.format div.box {
	margin: 1em -5px !important;
}

.format p.section-L2 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.format p.section-L3 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

/* L3 ======================================== ウェブ情報折りたたみ ======================================== */

#schedule #web td div.detail p.title {
	margin-left: -1em;
}

#schedule #web td div.detail p.title::before {
	content: "\f040";
	color: #666600;
	font-family: "FontAwesome";
	margin-right: 0.6em;
}

#schedule #web td div.detail p.title strong {
	color: #666600;
	font-weight: normal;
	font-size: 2.0rem;
}

#schedule #web td div.detail p,
#schedule #web td div.detail ul {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

#schedule #web td div.detail div.link-wrapper {
	margin-top: 0;
	margin-bottom: 0;
}

/* L3 ======================================== 詳細 ======================================== */

#schedule p.open-detail {
	cursor: pointer;
	margin-left: -10px;
	margin-right: -10px;
	padding: 0.4em 4%;
	color: #ff6600;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	border: 2px solid #ff6600;
	background: #ffffff;
	
	border-radius: 30px;
	box-shadow: inset 0 -20px 5px rgba(0, 0, 0, 0.05);
}

#schedule div.detail {
	overflow: hidden;
	margin-left: -20px;
	margin-right: -20px;
	padding-left: 20px;
	padding-right: 20px;
	
	-webkit-transition: height 0.5s ease-in-out;
	-moz-transition: height 0.5s ease-in-out;
	-ms-transition: height 0.5s ease-in-out;
	-o-transition: height 0.5s ease-in-out;
	transition: height 0.5s ease-in-out;
}

/* L1 ######################################## インフォメーション ######################################## */

#info {
	position: relative;
	width: 1024px;
	margin: 0 auto;
}

#info h2 {
	position: relative;
	float: left;
	color: #ffffff;
	margin-bottom: 5px;
	padding: 0.4em 20px;
	font-family: "Century Gothic", "メイリオ", "Trebuchet MS";
	font-size: 1.8rem;
	font-weight: normal;
	line-height: 1.0;
	letter-spacing: 0.2em;
	
	border-radius: 22px;
	background: rgba(0, 0, 0, 0.85);
}
#info h2::before {
	content: "\f05a";
	margin-right: 6px;
	font-family: "FontAwesome";
}
#info h2::after {
	content: "－ 注意事項 －";
	margin-left: 6px;
	color: #ffffff;
	font-family: "メイリオ", "Meryo", "HiraKakuProN-W3", "MS UI Gothic", "ＭＳ Ｐゴシック", "Osaka", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0;
}

#info > div {
	clear: both;
	position: relative;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	padding: 0.8em 20px 0.5em 20px;
	
	background: rgba(255, 255, 255, 0.85) -webkit-gradient(linear, left top, left bottom, color-stop(0.00, rgba(0, 0, 0, 0.05)), color-stop(1.00, rgba(0, 0, 0, 0.1)));
	background: rgba(255, 255, 255, 0.85) -webkit-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
	background: rgba(255, 255, 255, 0.85) -moz-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
	background: rgba(255, 255, 255, 0.85) -o-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
	background: rgba(255, 255, 255, 0.85) -ms-linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
	background: rgba(255, 255, 255, 0.85) linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
}

/* #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# PC・スマホ 共通設定 ここまで #=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=# */


