@charset "utf-8";

#music { 
	width: 350px; 
	margin: 10px auto 25px; 
	line-height: 1.4;
	font-size: 17px;
}
#music a { 
	color: #000; 
	text-decoration: none; 
	font-weight: 500;
}
ol { 
	padding: 0; 
	margin: 0; 
	list-style: decimal-leading-zero inside; 
	color: #777; 
	width: 350px; 
	border-top: 1px solid #ccc; 
	font-size: 0.9em; 
}
ol li { 
	position: relative; 
	margin: 0px; 
	padding: 5px 2px; 
	border-bottom: 1px solid #ccc; 
	cursor: pointer; 
}
ol li a { 
	display: block; 
	text-indent: -3.3ex; 
	padding: 0 0 0 27px; 
}
li.playing { 
	color: #aaa; 
	text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.3); 
}
li.playing a { 
	color: #000; 
}
li.playing:before { 
	content: url("images/playing.png"); 
	width: 16px; 
	height: 16px; 
	padding: 2px; 
	line-height: 10px; 
	margin: 0; 
	position: absolute; 
	left: -24px; 
	top: 6px; 
	color: #000; 
	font-size: 13px; 
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2); 
}

 /*　プレイヤー（再生バー）　*/
.audiojs {
	margin-bottom: 10px;
	width: 300px;
	height: 28px;
	background: none;
	overflow: hidden;
	font-family: monospace;
	font-size: 12px;  
	-webkit-box-shadow: none;
	-moz-box-shadow: none;  
	-o-box-shadow: none;
	box-shadow: none;
}
/*　再生・停止ボタン　*/
.audiojs .play-pause {
	width: 24px;
	height: 24px;
	padding: 0;
	margin: 0;
	float: left;
	overflow: hidden;
	border: 1px solid #3a3a3a;
	border-radius: 14px;
}
/*　再生・停止ボタンなどの p 要素　*/
.audiojs p {
	display: none;
	width: 24px;
	height: 24px;
	margin: 0;
	cursor: pointer;
}
.audiojs .play {
	display: block;
}
/*　進行状態・ロードの状態を表示する部分(グレー)　*/
.audiojs .scrubber {
	position: relative;
	float: left;
	width: 270px;
	background: #5a5a5a;
	height: 4px;
	margin: 10px 0 0 0;
	border-top: 0;
	border-left: 0;
	border-bottom: 0;
	overflow: hidden;
}
/*　進行状態を表示するバーの部分(薄いグレー)　*/
.audiojs .progress {
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	width: 0;
	background: #3a3a3a;
	z-index: 1;  
/* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ccc),
  color-stop(0.5, #ddd), color-stop(0.51, #ccc), color-stop(1, #ccc));  
  background-image: -moz-linear-gradient(center top, #ccc 0%, #ddd 50%, #ccc 51%, #ccc 
  100%); */
}
/* ロード状態を表示するバーの部分（黒） */
.audiojs .loaded {
	position: absolute;
	top: 0;
	left: 0;
	height: 4px;
	width: 0;
	background: #ddd;  
/* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #222),
  color-stop(0.5, #333), color-stop(0.51, #222), color-stop(1, #222));
  background-image: -moz-linear-gradient(center top, #222 0%, #333 50%, #222 51%, #222
  100%); */
}
/*　現在の再生時間/総再生時間　フォント　*/
.audiojs .time {
	float: left;
	height: 28px;
	line-height: 28px;
	margin: 0 0 0 8px;
	padding: 0;
	border-left: none;
	color: #666;
	text-shadow: none;
	display: none;
}
/*　現在の再生時間　フォント　*/
.audiojs .time em {
	padding: 0 2px 0 0;
	color: #666;
	font-style: normal;
	display: none;
}
/*　時間　/の部分　*/
.audiojs .time strong {
	padding: 0 0 0 2px;
	font-weight: normal;
	display: none;
}
.audiojs .error-message {
	float: left;
	display: none;
	margin: 0 10px;
	height: 26px;
	width: 200px;
	overflow: hidden;
	line-height: 26px;
	white-space: nowrap;
	color: #fff;  
	text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	-icab-text-overflow: ellipsis;
	-khtml-text-overflow: ellipsis;
	-moz-text-overflow: ellipsis;
	-webkit-text-overflow: ellipsis;
}
.audiojs .error-message a {
	color: #eee;
	text-decoration: none;
	padding-bottom: 1px;
	border-bottom: 1px solid #999;
	white-space: wrap;
}
/*　再生ボタン　*/
.audiojs .play {
	background: url(images/play.png) center center no-repeat;　←playボタン
	margin-left: 1.45px;
}
/*　読み込み中ボタン　*/
.audiojs .loading {
  /*background: url("$1") center center no-repeat;*/
	display: none;
}
/*　エラーボタン　*/
.audiojs .error {
  /*background: url("$1") center center no-repeat;*/
	display: none;
}
/*　停止ボタン　*/
.audiojs .pause {
	background: url(images/pause.png) center center no-repeat;　←pauseボタン
}
.playing .play, .playing .loading, .playing .error {
	display: none;
}
.playing .pause {
	display: block;
}
.loading .play, .loading .pause, .loading .error {
	display: none;
}
.loading .loading {
	display: block;
}
.error .time, .error .play, .error .pause, .error .scrubber, .error .loading {
	display: none;
}
.error .error {
	display: block;
}
.error .play-pause p {
	cursor: auto;
}
.error .error-message {
	display: block;
}

@media screen and (max-device-width: 480px) {
}