@charset "UTF-8";
.long_bar {
  --color-primary: #c87ee6;
  border-radius: 4em;
  border: 1px solid #808080;
  margin-top: 1em;
  font-family: "M PLUS 2", sans-serif;
}
.long_bar img {
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
}
.long_bar .button-player {
  background: #47263b;
  border-radius: 100px;
  padding: 0.5em 0.5em;
  width: 5em;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 100%;
  transition: 0.3s;
  cursor: pointer;
  margin: 0 !important;
}
.long_bar .button-player:first-child {
  margin-right: 1.2em;
}
.long_bar .button-player:hover {
  background-color: #c87ee6;
}
.long_bar .seekBarWrap {
  min-height: 10px;
  display: flex;
  align-items: center;
}
.long_bar #seekBar {
  width: 71%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: linear-gradient(to right, #ff82ad 0%, #a4728b 0%);
  /* 初期状態 */
  height: 0.8em;
  border-radius: 5em;
  margin: 0 1em;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
  /* 背景変更 */
  transition: 0.2s;
}
.long_bar #seekBar:hover {
  height: 1.2em;
  box-shadow: #e2e2e2 0px 0px 5px;
}
.long_bar #seekBar::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 0px;
  height: 0px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
}
.long_bar #seekBar::-moz-range-thumb {
  width: 0px;
  height: 0px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
}
.long_bar #timeDisplay {
  font-size: 70%;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5em;
}/*# sourceMappingURL=playerStyle.css.map */