/* pc.sp共通css */
/* ui部分 */
#main_board{
    position:fixed;
    width:100%;
    height:100%;
    margin:0;
}

// footer 
#footer{
    background:black;
    color:white;
    position:bottom;

}

/* infomation */
#base_black {
  position: fixed;
  inset: 0;                 /* top/right/bottom/left:0 */
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* 横中央 */
  z-index: 9999;
}

#info_space {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  text-align: center;
}

/* トップページ */
#headline{
    display:flex;
    justify-content: center;   
    overflow:hidden;
}
#headline div{
    color:white;
    border:solid 2px #ed551b;
    border-top:solid 4px #ed551b;
    border-bottom:solid 4px #ed551b;
}

#now_playing{
    background:red;
    width:30vw;
    height:300px;
}

#top_player{
    background:blue;
    width:30vw;
    height:300px;
}

#new_player{
    background:green;
    width:30vw;
    height:300px;
}