@charset "utf-8";
@import url('https://fonts.googleapis.com/earlyaccess/sawarabimincho.css');

html,body{
	background: #3B8E9E;
	background-image: url("./logo.png");
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position :  99% 98%;
	font-family: "Sawarabi Mincho";
}
a{
	color: #FFF;
	text-decoration: none;
}
a:hover{
	color: #FF0;
	cursor: pointer;
}
::-webkit-scrollbar{
	width: 6px;
}
::-webkit-scrollbar-track{
	background: #562D47;
	padding: 2px;
}
::-webkit-scrollbar-thumb{
	background-color: #9A7384;
	border: 1px outset #666;
	border-radius: 3px;
}

#top{
	position: fixed;
	top: 2px;
	right: 2px;

	background: #000;
	font-size: 12px;
	margin: 0;
	padding: 0;
	padding-top: 5px;
	letter-spacing: .2em;
	width: 250px;
	border-bottom: 1px dashed #F66;
	z-index: 15;
}
#top a{
	color: #888;
	width: 100%;
	padding-left: 3px;
}
#top a:hover{
	color: #FF0;
}
header{
	display: none;
}
#ifr, #player{
	position: fixed;
	/*基準を画面の左上に*/
	top: 13px;
	right: 2px;
	padding: 0;
	margin: 0;
	border: 1px solid #ccc;

	width: 250px;
	height: 105px;
	opacity: 0.7;
	border: 0;
	z-index: 10;
}

#desc_area{
	position: fixed;
	width: 250px;
	top: 103px;
	right: 2px;
	padding: 0;
	margin: 0;
	background: #23191F;
	overflow: hidden;  /* 必須 */
	border-top: 1px dashed #F66;
	z-index: 15;
}
#desc{
	/*word-break: break-all;*/

	display : inline-block;  /* 必須 */
	padding-left: 100%;    /* 右端から文字をスタートさせるため */
	white-space : nowrap; /* 改行が起こらないように対策 */
	line-height : .2em;         /* 行間（高さ）を1文字分にする */
	animation : scroll 33s linear infinite; /* 下のアニメーションを10秒かけて行い、それをくりかえす */

	color: #ccc;
	letter-spacing: .3em;
	text-shadow: 1px 2px 2px #333;
	font-size: .7em;
}
#desc:hover{
	animation-play-state: paused;
}
/* アニメーション（右から左に移動） */
@keyframes scroll{
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}
#atention{
	color: #fcc;
	font-size: 10px;
	padding: 0 3px;
	margin: 0;
	margin-top: 10px;
	letter-spacing: 2px;
	line-height: 1.1em;
	text-align: right;
}

h4{
	color: #ffc;
	margin: 5px 3px;
	padding: 5px 2px;
	border-bottom: 1px dashed #ccc;
	font-size: .8em;
	letter-spacing: .2em;
	border-radius: 5px;
	cursor: pointer;
}
h4:before
{
	content: "+";
}
h4:hover{
	color: #FFC;
}
#prog{
	position: fixed;
	/*基準を画面の左上に*/
	top: 23px;
	right: 5px;

	color: #333;
	font-size: .8em;
	z-index: 15;
}
.strong{
	text-decoration: line-through;	//打消し線
}
main{
	margin: 0;
	padding: 0;
	width: calc(100% - 260px);
	padding-bottom: 100px;
}
footer{
	position: fixed;
	bottom: 0;
	left: 0;

	color: #eee;
	background: #333;
	font-size: .3em;
	text-align: center;
	letter-spacing: .1em;
	margin: 0;
	padding: 0;
	padding-top: calc(70px - 50px);
	width: calc(100% - 160px);
	height: 70px;
	border-top: 3px groove #f7c425;
	opacity: .8;
}
footer a{
	color: #ccc;
}

label, input[type=checkbox]{
	color: #FFC;
	background: #2D3456;
	font-size: 12px;
	margin: 0;
	margin-bottom: 15px;
	padding: 2px;
	letter-spacing: 2px;
	border-radius: 2px;
}

dl{
	margin: 0;
	padding: 0;
	padding-right: 10px;
	overflow: auto;
	height: 140px;
}
dd{
	color: #FFF;
	cursor: pointer;
	letter-spacing: .2em;
	border-bottom: 1px dotted #ccc;
	border-radius: 3px;
	font-size: .5em;
	display: block;
	position: relative;
	margin: 0;
	margin-left: 15px;
	padding: 8px 2px;
}
dd:hover, #station:hover{
	color: #ff0;
}
.even{
	background: #33587E;
}
.open{
	color: #FF6;
}
.selected{
	background: #660;
}