
.music-toggle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  appearance: none;
}

.music-toggle-button:hover {
  opacity: 0.8;
}

.music-toggle-button:focus {
  outline: none;
}

/* キーボード操作時だけフォーカス位置を表示 */
.music-toggle-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(35, 120, 212, 0.5);
}

.music-toggle-button.is-playing {
  opacity: 1;
}

.music-toggle-icon {
  display: block;
  width: 100%;
  object-fit: contain;
}

.youtube-player-wrapper {
  position: fixed;
  top: 0;
  left: -10000px;
  width: 200px;
  height: 200px;
  overflow: hidden;
  pointer-events: none;
}


.music-player .g-Column__cols--lg-w90p{
width: 93%;
}
.music-player .g-Column__cols--lg-w10p {
width: 7%;
}




@media screen and (max-width: 1024px){
  .music-player{
    display: none;
  }
}
