@charset "utf-8";
/* CSS Document */

.audiojs audio {}
 /*　プレイヤー（再生バー）　*/
.audiojs {color:#fff;text-decoration: none;position: relative; width:79.5%;}

/*　再生・停止ボタン　*/
.audiojs .play-pause {
  width: 100%;
  height:32px;
  vertical-align:top;
  padding:0;
  position: relative;
  margin: 0;
  float: left;
  overflow: hidden;
}
/*　再生・停止ボタンなどの p 要素　*/
.audiojs p {
  display: none;
  padding:5px 0 4px;
  width: 100%;
  height: 32px;
  box-sizing: border-box;
  margin: 0px;
  cursor: pointer;
  font-size:1.6rem;
  font-weight:bold;
  letter-spacing:1px;
  text-align:center;
}
.audiojs .play {
  display: block;
}
/*　再生ボタン　*/
.audiojs .play {
  background:#ff588b;
  width:100%;
  border-bottom:3px solid #b52a54;
  border-radius:3px;
  position: relative;
}
.audiojs .play:before{content: url(../img/track_icon.png);position:absolute; left:20%; top:6px;}
.audiojs .play:after{content: '試聴する';position:relative; left:13px; bottom:1px}
.audiojs .play:hover,.audiojs .play:active{background:#ffa200;border-bottom:3px solid #e17400;position: relative;transition:all 0.1s ease;-webkit-transform: all 0.1s ease;}

@media screen and (max-width:1024px){
	.audiojs .play:before{left:6%}
	.audiojs .play:after{left:6%;bottom:0}
}

/*　停止ボタン　*/
.audiojs .pause {
  background:#ffa200;
  width:100%;
  border-bottom:1px solid #e17400;
  border-radius:3px;
  height:30px;
  top:2px;
  position: relative;
}

.audiojs .pause:before{
	content: url(../img/track_icon-on.png);
	position:absolute;
	left:33%;
	top:7px;
}
.audiojs .pause:after{
	content: '停止';
	position:relative;
	left:13px;
	bottom:0
}
@media screen and (max-width:1024px){
	.audiojs .pause:before{left:6%}
	.audiojs .pause:after{left:6%;bottom:0}
}

/*　現在の再生時間　フォント　*/
.audiojs .time em {display: none;}
/*　時間　/の部分　*/
.audiojs .time strong {display: none;}
.audiojs .error-message {
  float: left;
  display: none;
  margin: 0px 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 .loading {
  /*background: url("$1") center center no-repeat;*/
  display: none;
}
/*　エラーボタン　*/
.audiojs .error {
  /*background: url("$1") center center no-repeat;*/
  display: none;
}
.playing .play, .playing .loading, .playing .error {
  display: none;
}
.playing .pause {
  display: block;
}
.loading .play, .loading .pause, .loading .error {
  display: none;
}
.loading .loading {
  display: block;
  background:#ffa200;
  width:100%;
  border-bottom:1px solid #e17400;
  border-radius:3px;
  height:30px;
  top:2px;
  position: relative;
}
.loading .loading:before{
	content: url(../img/track_icon-on.png);
	position:absolute;
	left:33%;
	top:7px;
}
.loading .loading:after{
	content: '停止';
	position:relative;
	left:13px;
	bottom:0px
}

@media screen and (max-width:1024px){
	.loading .loading:before{left:6%}
	.loading .loading:after{left:6%;bottom:0}
}


.error .time, .error .play, .error .pause, .error .scrubber, .error .loading {display: none;}
.error .error {
  display: block;
  background:#ccc;
  width:100%;
  border-bottom:1px solid #a1a1a1;
  border-radius:3px;
  height:30px;
  top:2px;
  position: relative;
}
.error .error:after{content: 'エラーが発生しました';position:relative; left:0; right:0;top:-2px; font-size:1.1rem; font-weight:normal;letter-spacing: 0;}

.error .play-pause p {
  cursor: auto;
}
.error .error-message {
  display: block;
}
/*　再生している曲の情報　*/
.track-details {
  clear: both;
  height: 26px;
  width: 200px;
  padding: 0px 6px;
  background: #FFF;
  color: #3A3A3A;
  font-size: 10px;
  line-height: 26px;
}
.track-details:before {
  content: '♬ Now Playing: ';
}
