#bgm *:focus{
    outline: none;
}
	
#bgm .music-player {
	text-align: left;
    display:inline-block;
    position: relative;
	width: 32%;
    margin:0.5%;
	padding: 1.5em 2em 0.5em;
	background-color: var(--black);
	border: 1px solid var(--white);
	border-image: linear-gradient(to right, rgba(0, 126, 255, 1) 0%, rgba(95, 40, 219, 1) 50%, rgba(207, 14, 255, 1)) 1;
}
	
#bgm .bgmTitle {
	overflow-wrap: anywhere;
	width: calc(100% - 40px);
	line-height: 1em;
	font-size: 140%;
}
	
#bgm .lecteur {
    display: block;
    position: relative;
}
	
#bgm .mejs__button>button:focus {
    outline: 0px dotted #999;
}
	
#bgm .mejs__container {
    position: relative;
    background-color: transparent;
    min-width: auto !important;
	width: auto  !important;
}
	
#bgm .mejs__controls {
    background: transparent !important;
    display: block;
    position: relative;
	padding:1em 0 ;
}
	
#bgm .mejs__controls div {
    display: block;
    float: left;
    position: relative;
}
	
#bgm .mejs__controls .mejs__playpause-button {
    position: absolute !important;
    right: -1em;
    top: -1.5em;
    width: 40px;
}
	
#bgm .mejs__controls .mejs__playpause-button button {
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    font-family: FontAwesome;
    font-size: 23px;
    color: var(--purple);
    background: transparent;
    margin: 0;
}
	
#bgm .mejs__controls .mejs__play button:before{
    content:"\f04b";
}
	
#bgm .mejs__controls .mejs__pause button:before{
    content:"\f04c";
}
	
#bgm .mejs__controls .mejs__volume-button button {
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    font-family: FontAwesome;
    font-size: 20px;
    color: var(--purple);
    background: transparent;
    margin: 0;
}
	
#bgm .mejs__controls .mejs__mute button:before {
    content: "\f028";
}
	
#bgm .mejs__controls .mejs__unmute button:before {
    content: "\f026";
}
	
#bgm .mejs__controls .mejs__time {
    width: 100%;
    margin-top: 7%;
    margin-bottom: 3%;
    color: #fff;
    height: auto;
    padding: 0;
    overflow: visible;
    min-width: 100%;
}
	
#bgm .mejs__controls .mejs__time span {
    font-size: 15px;
}
	
#bgm .mejs__controls span.mejs__duration {
    float: right;
    text-align: right;
    color: #ccc;
}
	
#bgm .mejs__controls span.mejs__currenttime {
    font-weight: 700;
    float: left;
}
	
#bgm .mejs__controls .mejs__time-rail {
    width: 100%;
    margin: 0;
}
	
#bgm .mejs__controls .mejs__time-rail span {
    position: absolute;
    top: 0;
    width: 100%;
    height: 4px;
    border-radius: 50px;
    cursor: pointer;
}
	
#bgm .mejs__controls .mejs__time-rail .mejs__time-loaded {
    background: rgba(255,255,255,0.2);
}
	
#bgm .mejs__controls .mejs__time-rail .mejs__time-float {
    display: none;
    top: -40px;
    width: 40px;
    height: 25px;
    margin-left: 0px;
    text-align: center;
    font-size: 10px;
    background: #fff;
    border: 0;
}
	
#bgm .mejs__controls .mejs__time-rail .mejs__time-float-current {
    display: block;
    position: relative;
    top: 0;
    margin: 0;
    line-height: 26px;
    color: #100d28;
}
	
#bgm .mejs__controls .mejs__time-rail .mejs__time-float-corner {
    top: auto;
    bottom: -9px;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 6px solid #fff;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}
	
#bgm .mejs__controls .mejs__time-rail .mejs__time-current {
    background: #5BBB95 none repeat scroll 0 0;
}
	
#bgm .mejs__controls .mejs__time-handle {
    display: none;
}
	
#bgm .mejs__controls .mejs__volume-button {
    width: 40px;
    height: 40px;
	margin-top: -1em;
	margin-left: calc(100% - 100px);
}
	
#bgm .mejs__controls .mejs__horizontal-volume-slider {
    display: block;
    width: 60px;
    height: 4px;
    border-radius: 50px;
    line-height: 11px;
	margin-left: calc(100% - 60px);
    float: left;
	margin-top: -2em;
}
	
#bgm .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-total,
#bgm .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-current {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
}
	
#bgm .mejs__controls .mejs__horizontal-volume-slider .mejs__horizontal-volume-current {
    background: #fff;
}

/*######################################################################
メディアクエリ
######################################################################*/
/*//////////////////////////////////////////////////////////////////////*/
@media screen and (max-width: 800px) {
/*//////////////////////////////////////////////////////////////////////*/
#bgm .music-player {
	display: inline-block;
	width: 100%;
	margin:2% auto;
}

	
#bgm .mejs__controls .mejs__horizontal-volume-slider {
	margin-top: -2.5em;
}
	
/*//////////////////////////////////////////////////////////////////////*/
}