@charset "UTF-8";
/* CSS Document */


.audiojs audio {
}

 /*　プレイヤー（再生バー）　*/
.audiojs {
	background: pink;
	width: 300px;
	height: 83px;
	overflow: hidden;
	font-family: monospace;
	font-size: 12px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
/*	background-image: url(../img/playerBK@2x.png);*/
	background-repeat: no-repeat;
	background-color: transparent;
	background-size: cover;
	margin-top:20px;
}
#data .audiojs {
	width: 100%;
	height: 102px;
	overflow: hidden;
	font-family: monospace;
	font-size: 12px;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
	background-image:none;
	background-repeat: no-repeat;
	background-color: #F4F4F4;
	background-size: cover;
	margin-top:20px;
}

/*　再生・停止ボタン　*/
.audiojs .play-pause {
	width: 45px;
	height: 45px;
	margin-top: 12px;
	padding-right: 0px;
    padding-left: 0px;
	margin-left: 0px;
	margin-right: 5px;
	float: left;
	overflow: hidden;
	background: none;
	border: none;
}
#data .audiojs .play-pause {
	width: 30px;
	height: 30px;
	margin-top: 12px;
	padding-right: 0px;
	margin-left: 0px;
	margin-right: 5px;
	float: left;
	overflow: hidden;
	background: none;
	border: none;
}
/*　再生・停止ボタンなどの p 要素　*/
.audiojs p {
  display: none;
width: 40px;
  height: 40px;
  margin: 0px;
  cursor: pointer;
}
#data .audiojs p {
  display: none;
width: 30px;
  height: 30px;
  margin: 0px;
  cursor: pointer;
}
.audiojs .play {
  display: block;
}
.audiojs .pause {
  display: block;
}
/*　進行状態・ロードの状態を表示する部分(グレー)　*/
.audiojs .scrubber {
	position: relative;
	float: left;
	width: 96px;
	background: none;
	border: none;
	height: 42px;
margin-top: 15px; 
	margin-right: 0;
	margin-left: 0px;
	margin-bottom: 0;
	overflow: hidden;
}
/*　進行状態を表示するバーの部分(白)　*/
.audiojs .progress {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 42px;
	width: 0px;
	background-color: #255DAE;
	z-index: 1;
/*
	background-image: -webkit-linear-gradient(270deg,rgba(252,252,252,1.00) 0%,rgba(243,243,243,1.00) 47.15%,rgba(225,225,225,1.00) 100%);
	background-image: -moz-linear-gradient(270deg,rgba(252,252,252,1.00) 0%,rgba(243,243,243,1.00) 47.15%,rgba(225,225,225,1.00) 100%);
	background-image: -o-linear-gradient(270deg,rgba(252,252,252,1.00) 0%,rgba(243,243,243,1.00) 47.15%,rgba(225,225,225,1.00) 100%);
	background-image: linear-gradient(180deg,rgba(252,252,252,1.00) 0%,rgba(243,243,243,1.00) 47.15%,rgba(225,225,225,1.00) 100%);
*/
}
/* ロード状態を表示するバーの部分（赤色） */
.audiojs .loaded {
	position: absolute;
	top: 0px;
	left: 0px;
	height: 42px;
	width: 0px;
	background-color: #fff !important;
}
/*　現在の再生時間/総再生時間　フォント　*/
.audiojs .time {
  float: left;
  height: 28px;
  font-size:1.5em;
    line-height: 10px;
  margin: 30px 0px 0px 8px;
  padding: 0px 0px 0px 0px;
  border-left: none;
  color: #000;
  text-shadow: none;
    font-style: normal;
/*  display: none;*/
}
/*　現在の再生時間　フォント　*/
.audiojs .time em {
  padding: 0px 2px 0px 0px;
  color: #ffcc00;
  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: #fff;
  text-decoration: none;
  padding-bottom: 1px;
  white-space: wrap;
}
/*　再生ボタン　*/
.audiojs .play {
  background: url(../img/play-btn1.png) center center no-repeat;
    margin-left: 1.4px;
}
/*　読み込み中ボタン　*/
.audiojs .loading {
	background-image: url(../img/loader.gif);
	background-repeat: no-repeat;
	background-position: center center;/*  display: none;*/
}
/*　エラーボタン　*/
.audiojs .error {
  /*background: url("$1") center center no-repeat;*/
  display: none;
}
/*　停止ボタン　*/
.audiojs .pause {
  background: url(../img/pause-btn1.png) center center no-repeat;
}
.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;
}
