/* CSS Document */


#open article {
  padding: 40px 0;
}
#open .inner {
	max-width: 1100px;
}



#open h2 {
	font-size: 200%;
  font-weight: 900;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#open ul.day {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin: 15px 0 30px;
}
#open ul.day li {
}
#open h2 strong {
	font-size: 200%;
	font-weight: 900;
	line-height: 1.2;
	display: flex;
	align-items: baseline;
}
#open h2 strong span {
	font-family: 'Noto Sans JP';
	font-size: 30%;
	font-weight: 900;
	color: #fff;
	background: #333;
	border-radius: 100%;
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;
	position: relative;
	top: -5px;
}
#open ul.day li a {
	display: block;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	color: #fff;
	background: #cfb70e;
  border-radius: 3px;
	width: 120px;
  padding: 5px 5px 6px 10px;
	box-sizing: border-box;
	position: relative;
}
#open ul.day li a span {
	font-size: 90%;
}
#open ul.day li.current a {
	background: #eee;
  color: #999;
	pointer-events: none;
}
#open ul.day li.current a::after {
	content: '';
	border-top: 10px solid #eee;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
}


#open #chart {
	width: 100%;
	margin: 20px 0;
}
#open #chart .areaSection {
}
#open #chart .areaSection .areaTitle {
	position: sticky;
  top: 100px;
  z-index: 8;
	margin: 0 0 35px;
	padding-top: 60px;
  background: #fff;
}
#open .lead {
	font-size: 95%;
  line-height: 1.8;
	text-align: center;
  margin: 20px 0;
}
#open #chart .areaSection .areaTitle h3 {
	font-size: 120%;
  line-height: 1.4;
  text-align: center;
	color: #fff;
  background: #eee;
  border-radius: 5px;
  padding: 10px;
}
#open #chart .areaSection.area1 h3 { background: #688C9D;}
#open #chart .areaSection.area2 h3 { background: #C8A20D;}
#open #chart .areaSection.area3 h3 { background: #71AA80;}
#open #chart .areaSection.area4 h3 { background: #7883BB;}
#open #chart .areaSection.area5 h3 { background: #949DCC;}
#open #chart .areaSection.area6 h3 { background: #997396;}
#open #chart .areaSection.area7 h3 { background: #a89696;}

#open #chart .areaSection.area5 h3 { background: #997396;}
#open #chart .areaSection.area6 h3 { background: #a89696;}

#open #chart .timeScale {
	display: flex;
	margin-left: 240px;
	font-size: 13px;
	line-height: 1.4;
	text-align: center;
	position: relative;
}
#open #chart .timeScale span {
	flex: 1 1 0;
	padding: 10px 0 3px;
	position: relative;
	left: -2.8%;
}
#open #chart .timeScale span::after {
	content: '';
	border-left: 1px solid #ccc;
  height: 10px;
	position: absolute;
  top: 100%;
  left: 50%;
}

#open #chart .timeScale .timeNowLine {
  position: absolute;
	top: 40px;
}
#open #chart .timeScale .timeNowLine::before {
	content: '';
	border-bottom: 10px solid #f00;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}


#open #chart .barRow {
	display: flex;
	align-items: flex-start;
	margin: 10px 0;
}
#open #chart .barRow .label {
	line-height: 1.4;
	width: 240px;
	padding-right: 10px;
  box-sizing: border-box;
	position: relative;
}
#open #chart .barRow .label a {
	text-decoration: underline;
}
#open #chart .barRow .label ul.genre {
	font-size: 10px;
	line-height: 1.2;
	color: #888;
	display: flex;
	gap: 5px;
	margin: 2px 0 0;
	width: 240px;
}
#open #chart .barRow .label ul.genre li {
}
#open #chart .barRow .bar {
	flex-grow: 1;
	height: 20px;
	background: #eee;
	position: relative;
	overflow: hidden;
}
#open #chart .barRow .bar .barFill {
	position: absolute;
	height: 100%;
	background: #666;
}
#open #chart .areaSection.area1 .barRow .bar .barFill { background: #688C9D;}
#open #chart .areaSection.area2 .barRow .bar .barFill { background: #C8A20D;}
#open #chart .areaSection.area3 .barRow .bar .barFill { background: #71AA80;}
#open #chart .areaSection.area4 .barRow .bar .barFill { background: #7883BB;}
#open #chart .areaSection.area5 .barRow .bar .barFill { background: #949DCC;}
#open #chart .areaSection.area6 .barRow .bar .barFill { background: #997396;}
#open #chart .areaSection.area7 .barRow .bar .barFill { background: #a89696;}

#open #chart .areaSection.area5 .barRow .bar .barFill { background: #997396;}
#open #chart .areaSection.area6 .barRow .bar .barFill { background: #a89696;}





@media screen and (max-width: 480px) {
  
	#open article {
    padding: 40px 0;
  }
	
	#open ul.day {
		gap: 10px;
	}
	#open ul.day li a {
		width: 100px;
	}
	#open #chart .areaSection .areaTitle {
		position: sticky;
		top: 50px;
		padding-top: 40px;
	}
	#open #chart .barRow .label {
		width: 100px;
	}
	#open #chart .barRow .label ul.genre {
		font-size: 8px;
	}
	#open #chart .barRow .bar {
		margin: 2px 0 0;
	}
	#open #chart .timeScale {
		font-size: 10px;
		margin-left: 100px;
	}
	#open #chart .timeScale .timeNowLine::before {
		border-width: 0 6px 8px;
	}
	
	
	
	
}
