@charset "utf-8";

.loading {
    position: fixed;
    width: 100%;
}
.loading #loader {
    opacity: 1;
    visibility: visible;
}
#loader {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	display: flex;
	opacity: 0;
	visibility: hidden;
	justify-content: center;
	align-items: center;
	transition: .8s;
}
#loader img {
    z-index: 0;
    position: relative;
    max-width: 174px;
    width: 55%;
    margin-top: 50px;
}
#loader:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0.6;
	transform: translate3d(0, 0, 0);
	background-color: #ff973a;
	background-image : linear-gradient(-45deg,
		rgba(255, 255, 255, 0.2) 25%,
		transparent 25%, transparent 50%,
		rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%,
		transparent 75%, transparent);
	background-size: 20px 20px;
	padding: 10px 20px;
	-webkit-animation: stripe 2s infinite linear 0s;
}
@-webkit-keyframes stripe {
	from {
		transform: translate(0, 0);
	}
	to {
		transform: translate(-20px, 0);
	}
}


#timeNav {
    position: relative;
	opacity: 0;
	visibility: hidden;
	transition: .8s;
}
.loaded #timeNav {
	opacity: 1;
	visibility: visible;
}
@media screen and (max-height: 500px){
#timeNav {
    display: none;
}
}
#timeNav .inner {
    position: fixed;
    top: 60%;
    right: 3px;
    transition: all .3s;
    width: 40px;
    z-index: 5;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#timeNav .date {
    margin-bottom: 4px;
    font-weight: 700;
    text-align: center;
}
#timeNav li > div {
	cursor: pointer;
	margin-bottom: 12px;
	width: 30px;
	height: 30px;
	border-radius: 5px;
	font-size: 16px;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
}
#timeNav .isMorning {
    background-color: #ffd2ae;
    color: #f16908;
}
#timeNav .isNoon {
    background-color: #FFE9A9;
    color: #ea9700;
}
#timeNav .isEvening {
    background-color: #b4c8e6;
    color: #617098;
}
#timeNav .isNight {
    background-color: #c0b9da;
    color: #7572a7;
}

.program_detail{
	opacity: 0;
	transition: opacity .3s linear;
}
.program_detail.slick-initialized{
	opacity: 1;
}






#timetable > .container{
	min-height: 100vh;
	transition: .8s;
	opacity: .8;
	-ms-filter: blur(1px);
    filter: blur(1px);
}
.loaded #timetable > .container{
	opacity: 1;
	-ms-filter: none;
    filter: none;
}
#timetable h1.ttl {
    background: #fff;
    background: linear-gradient(-45deg,
    #fff4ea 25%,
    #fff 25%, #fff 50%,
    #fff4ea 50%, #fff4ea 75%,
    #fff 75%, #fff);
    background-size: 15px 15px;
    background-attachment: fixed;
    padding: 8px 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #777;
    text-align: center;
}
#main_cont * {
    box-sizing: border-box;
}
#main_colum {
  background: #fff;
  margin-bottom: 50px;
}
.program_dates {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
}
.program_dates {
	opacity: 0;
	transition: opacity .3s linear;
}
.program_dates.initialized {
	opacity: 1;
}
.program_dates ul {
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}
.program_dates li {
    width: 100%;
    margin-right: 1vw;
}
.program_dates li:last-child {
	margin-right: 0;
}
.program_dates li .txt {
	text-align: center;
	padding: 2vh 0;
	min-height: 50px;
	background: #fffcf8;
	border: 1px solid #FFBD7A;
	border-bottom: none;
	border-radius: 5px 5px 0 0;
	transform: translateY(2px);
	color: #666;
	font-size: 3.4vw;
	font-weight: bold;
	line-height: 1.3;
	transition: .3s;
	position: relative;
	opacity: .8;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 320px){
.program_dates li .txt {
	font-size: 3.8vw;
}
}
.program_dates li.current .txt {
    color: #F15A24;
    background: #fff;
    transform: translateY(0);
    opacity: 1;
    z-index: 1;
}
.program_dates li.w0 .txt,
.program_date.w0 {
    background: #fff6f6;
}
.program_dates li.w6 .txt,
.program_date.w6 {
    background: #f9fdff;
}
.program_dates  .current:before {
	 content: "";
	 display: block;
	 width: 100%;
	 height: 1px;
	 position: absolute;
	 bottom: 0;
	 left: 0;
	 background: #FFBD7A;
	 z-index: 1;
}
.program_times {
	display: none;
	width: 0;
	height: 0;
}
.program_times li {
    display: block;
}
.program_times li .txt {
	color: #fff;
	text-align: center;
	border-bottom: solid 1px #ffffff;
	height: 160px;
	padding: 7px 0px 0px;
}
.program_date li.head {
    display: block;
    width: 100%;
    height: 0px;
}
.program_date li.programs {
  display: block;
  border-bottom: dotted 1px #CDCECE;
  overflow: hidden;
  padding: 10px 45px 10px 10px;
}
.program_date li.programs:first-child {
  border-top: none;
}
.program_date li.programs .title {
	font-size:15px;
}
.program_date li.programs .title a{
  color: #63baed;
}
.program_date li.programs .title a[href="#"]{
  color: #333333;
  text-decoration:none;
  cursor:default;
}
/* IPG */
#rakuraku_epg section.main_body {
  padding-bottom: 50px;
}