@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
body {
  background: #EA4E33;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.music_player {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  width: 90%;
  max-width: 600px;
}

.custom-audio-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 50px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.custom-audio-player .play-btn {
  background: #EA4E33;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background 0.2s, -webkit-transform 0.2s;
  transition: background 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, background 0.2s;
  transition: transform 0.2s, background 0.2s, -webkit-transform 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
}
.custom-audio-player .play-btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  background: rgb(212.16, 49.92, 21.84);
}
.custom-audio-player .play-btn:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}
.custom-audio-player .time-display {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  min-width: 45px;
  text-align: center;
}
.custom-audio-player .progress-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}
.custom-audio-player .progress-bar {
  height: 6px;
  background: #ddd;
  border-radius: 3px;
  cursor: pointer;
  overflow: hidden;
}
.custom-audio-player .progress-fill {
  height: 100%;
  background: #EA4E33;
  width: 0%;
  -webkit-transition: width 0.1s linear;
  transition: width 0.1s linear;
}
.custom-audio-player {
  /* -750 */
}
@media all and (max-width: 750px) {
  .custom-audio-player {
    padding: 12px 15px;
    gap: 10px;
  }
  .custom-audio-player .play-btn {
    width: 60px;
    height: 60px;
  }
  .custom-audio-player .time-display {
    font-size: 12px;
    min-width: 40px;
  }
}

.is-layout-flex {
  margin-top: 10px;
}

.wp-block-columns {
  -ms-flex-wrap: unset !important;
      flex-wrap: unset !important;
  color: #fff;
}
.wp-block-columns .wp-block-column:first-child {
  width: 18%;
}
.wp-block-columns .wp-block-column:last-child {
  width: 82%;
}
.wp-block-columns .wp-block-column p:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 781px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    -ms-flex-preferred-size: unset !important;
        flex-basis: unset !important;
  }
}
@media (min-width: 782px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    -ms-flex-preferred-size: unset;
        flex-basis: unset;
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
  }
}
.wp-block-columns {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.is-layout-flex {
  margin: 0;
}

.lyric {
  padding: 20px;
  background: #fff;
  /* 751- */
}
@media all and (min-width: 751px) {
  .lyric {
    padding: 40px;
  }
}
.lyric .wp-block-columns {
  color: #1D2120;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}
.lyric .wp-block-columns:not(:last-child) {
  margin-bottom: 20px;
}
.lyric .wp-block-columns p {
  line-height: 1.8;
}

.links {
  background: #fff;
  padding: 20px;
}
.links p {
  color: #1D2120;
}
.links .wp-block-column:first-child {
  width: 20%;
}

.wp-block-embed iframe {
  width: 100% !important;
  height: auto;
  aspect-ratio: 16/9;
}
/*# sourceMappingURL=music.css.map */