.js-audioPlayer {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 10px;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	tap-highlight-color: rgba(0, 0, 0, 0);
	width: 370px;
	min-width: 370px;
	height: 35px;
	position: relative;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.js-audioPlayer + .js-audioPlayer {
	margin-top: 10px;
}
.js-audioPlayer * {
	background-repeat: no-repeat;
}
.js-audioPlayer .js-controls {
	color: #ffffff;
	height: 100%;
	padding-left: 5px;
	padding-right: 5px;
	background-color: #2e2e2e;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.js-audioPlayer .js-controls .js-button {
	text-align: center;
	width: 35px;
	height: 100%;
	background-position: center center;
	cursor: pointer;
}
@media (any-hover: hover) {
	.js-audioPlayer .js-controls .js-button:hover {
		opacity: 0.8;
	}
}
.js-audioPlayer .js-controls .js-button + .js-button {
	margin-left: 5px;
}
.js-audioPlayer .js-controls .js-play-button {
	background-size: auto 17px;
}
.js-audioPlayer .js-controls .js-play-button {
	background-image: url("../images/parts_play.png");
}
.js-audioPlayer .js-controls[data-status="play"] .js-play-button {
	background-image: url("../images/parts_pause.png");
}
.js-audioPlayer .js-controls .js-volume-button {
	background-size: auto 17px;
}
.js-audioPlayer .js-controls .js-volume-button,
.js-audioPlayer .js-controls[data-volume="0"] .js-volume-button {
	background-image: url("../images/parts_vol_mute.png");
}
.js-audioPlayer .js-controls[data-volume="1"] .js-volume-button {
	background-image: url("../images/parts_vol_01.png");
}
.js-audioPlayer .js-controls[data-volume="2"] .js-volume-button {
	background-image: url("../images/parts_vol_02.png");
}
.js-audioPlayer .js-controls[data-volume="3"] .js-volume-button {
	background-image: url("../images/parts_vol_03.png");
}
.js-audioPlayer .js-controls .js-seekbar {
	position: relative;
	margin-left: 10px;
	height: 17px;
	cursor: pointer;
	flex-grow: 1;
}
.js-audioPlayer .js-controls .js-seekbar-progress,
.js-audioPlayer .js-controls .js-seekbar-play {
	height: 5px;
	margin-top: auto;
	margin-bottom: auto;
	position: absolute;
	top: 50%;
	bottom: 50%;
	left: 0;
	border-radius: 15px;
}
.js-audioPlayer .js-controls .js-seekbar-progress {
	background-color: #6d6d6d;
	width: 100%;
}
.js-audioPlayer .js-controls .js-seekbar-play {
	background-color: #fff;
	width: 0%;
}
.js-audioPlayer .js-controls .js-seekbar-thumb {
	width: 17px;
	height: 17px;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: -8px;
	position: absolute;
	top: 50%;
	bottom: 50%;
	left: 0;
	background-color: #fff;
	border-radius: 50%;
}
.js-audioPlayer .js-controls .js-time {
	margin-left: 10px;
}
.js-audioPlayer .js-controls .js-speed-button {
	height: 21px;
	padding-left: 5px;
	padding-right: 5px;
	margin-left: 10px;
	margin-bottom: 3px;
	border-radius: 5px;
	background-color: #fff;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}
.js-audioPlayer .js-controls .js-speed-button::before {
	content: "x";
	display: inline;
	margin-right: 0.5em;
}
.js-audioPlayer video {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}

/* data-type="button" */
.js-audioPlayer[data-type="button"] {
	width: 40px;
	height: 40px;
	min-width: 0;
}
.js-audioPlayer[data-type="button"] .js-controls {
	padding: 0;
	border-radius: 50%;
}
.js-audioPlayer[data-type="button"] .js-controls .js-button {
	width: 100%;
}

/*
.js-audioPlayer video::-webkit-media-controls-panel,
.js-audioPlayer video::-webkit-media-controls-start-playback-button,
.js-audioPlayer video::-webkit-media-controls-rewind-button {
	display: none!important;
	-webkit-appearance: none;
}
*/

/* --------------------------------------------------
	loading
-------------------------------------------------- */
.js-audioPlayer .js-controls[data-ready="not"] {
	position: relative;
	opacity: 0.7;
	pointer-events: none;
}
.js-audioPlayer .js-controls[data-ready="not"]:after {
	content: "";
	display: block;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	border-top: 3px solid #e4e4e4;
	border-right: 3px solid #e4e4e4;
	border-bottom: 3px solid #e4e4e4;
	border-left: 3px solid #2e2e2e;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.1s infinite linear;
}
@-webkit-keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load8 {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
