.player-container {
	display: inline-block;
	width:32%;
	margin: 0.5%;
	background: var(--black);
	border: solid 1px var(--gold);
	outline: solid 5px var(--black);
}

.player-box {
	padding: 2em 2em 1em;
}

/* 各段の配置 */
.player-row {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
	
.player-row.top{
	position: relative;
}
	
.song-title {
	font-size: 130%;
	text-align: left;
	padding-right: 1.5em;
}

.player-buttons button {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.4em;
	cursor: pointer;
	position: absolute;
	right: 0;
	bottom: 0;
}

.jp-pause {
	display: none;
}

/* シークバー */
.player-row.middle{
	margin-top: 2em;
}
	
.jp-progress {
	width: 100%;
	height: 6px;
	background: #444;
	border-radius: 3px;
	overflow: hidden;
}

.jp-seek-bar {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.jp-play-bar {
	background:var(--gold);
	height: 100%;
	width: 0%;
}

/* 音量 */
.volume-controls {
	display: inline-block;
	width: 30%;
	margin-left: 70%;
}

.jp-mute, .jp-unmute {
	background: none;
	border: none;
	color: #fff;
	font-size: 1.2em;
	cursor: pointer;
}

.jp-unmute {
	display: none;
}

.jp-volume-bar {
	width: 100%;
	height: 4px;
	background: #333;
	border-radius: 3px;
	overflow: hidden;
	cursor: pointer;
}

.jp-volume-bar-value {
	height: 100%;
	width: 50%;
	background: var(--white);
}
	
.player-buttons button,
.volume-controls button {
	background: none;
	border: none;
	color: var(--gold);
	font-size: 1.5em;
	cursor: pointer;
}

.jp-pause, .jp-unmute {
	display: none;
}

.jp-progress {
	width: 100%;
	height: 4px;
	background: #666;
	border-radius: 3px;
	overflow: hidden;
	margin-top: 0.5em;
}

.jp-seek-bar {
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.jp-play-bar {
	background: var(--gold);
	height: 100%;
	width: 0%;
}

.volume-controls {
	display: flex;
	align-items: center;
	margin-top: 1em;
}


/* レスポンシブ対応 */
@media (max-width: 800px) {
.player-container {
	width: 100%;
	margin: 0 auto 2em;
	display: block;
}
	
.player-box {
	padding: 2em;
}
	
.volume-controls {
	display: none;
}
	

}
