@charset "utf-8";
/* CSS Document */


/*　プレイヤー（再生バー）　*/
.audiojs {
    width: 36px;
    height: 36px;
    background: none;
    overflow: hidden;
    font-size: 20px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    color: #000;
    display: table-cell;
    padding: 0;
    vertical-align: middle;
}

.pagebg .audiojs  {
    display: table;
    position: absolute;
    top: 50%;
    left: 20px;
    margin: -18px 0 0 0;
}



/*　再生・停止ボタン　*/
.audiojs .play-pause {
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    float: left;
    overflow: hidden;
    border: none;
    font-size: 20px;
    padding: 0;
}

/*　再生・停止ボタンなどの p 要素　*/
.audiojs p {
    width: 36px;
    height: 36px;
    margin: 0px;
    padding: 0;
    cursor: pointer;
    font-size: 20px;
    color: #000;
    text-align: left;
}

.audiojs .play {
    display: block;
}

/*　進行状態・ロードの状態を表示する部分(グレー)　*/
.audiojs .scrubber {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0;
    width: 100%;
    height: 5px;
    background: #e6e6e6;
    border: none;
}


.pagebg .audiojs .scrubber {
    display: none;
}


/*　進行状態を表示するバーの部分(薄いグレー)　*/
.audiojs .progress {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 5px;
    width: 0px;
    background: #c1c1c1;
    z-index: 1;

}

.pagebg .audiojs .progress {
    display: none;
}


/* ロード状態を表示するバーの部分（黒） */
.audiojs .loaded {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 0px;
    width: 0px;
    background: none;
}


/*　現在の再生時間/総再生時間　フォント　*/
.audiojs .time {
    float: left;
    height: 28px;
    line-height: 28px;
    margin: 0px 0px 0px 8px;
    padding: 0px 0px 0px 0px;
    border-left: none;
    color: #ccc;
    text-shadow: none;
    display: none;
}

/*　現在の再生時間　フォント　*/
.audiojs .time em {
    padding: 0px 2px 0px 0px;
    color: #666;
    font-style: normal;
    display: none;
}

/*　時間　/の部分　*/
.audiojs .time strong {
    padding: 0px 0px 0px 2px;
    font-weight: normal;
    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 .play {
    background: url(../img/play-btn.png) center center no-repeat;
    background-size: 36px;
    ←playボタン margin-left: 1.45px;
}



/*　読み込み中ボタン　*/
.audiojs .loading {
    display: none;
}

/*　エラーボタン　*/
.audiojs .error {
    display: none;
}

/*　停止ボタン　*/
.audiojs .pause {
    background: url(../img/pause-btn.png) center center no-repeat;
    background-size: 36px;
}


.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: none;
}

.error .play-pause p {
    cursor: auto;
}

.error .error-message {
    display: none;
}

/*　再生している曲の情報　*/
.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: ';
}
