@charset "UTF-8";
* {
  margin: 0;
  padding: 0; }

img {
  vertical-align: bottom; }

/* input[type="range"]リセット */
input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  width: 100%;
  overflow: visible !important;
  cursor: pointer; }

input[type="range"]:focus,
input[type="range"]:active {
  outline: none; }

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: block; }

/* Firefox向け 溝のスタイル */
input[type=range]::-moz-range-track {
  width: 100%;
  cursor: pointer;
  animate: 0.2s; }

/* Firefox向け つまみのスタイル */
input[type=range]::-moz-range-thumb {
  cursor: pointer; }

/* 何故か上の margin-top 指定が Edge に効いてしまうので、Edge向けに設定をリセット */
@supports (-ms-ime-align: auto) {
  input[type=range]::-webkit-slider-thumb {
    margin-top: 0 !important; } }

/* Edge・IE向け 溝のスタイル */
input[type=range]::-ms-track {
  border: solid 0 transparent;
  width: 100%;
  cursor: pointer;
  color: transparent; }

/* Edge・IE向け 溝の色（つまみより左側） */
input[type=range]::-ms-fill-lower {
  background: transparent;
  border: none;
  border-radius: 0; }

/* Edge・IE向け 溝の色（つまみより右側） */
input[type=range]::-ms-fill-upper {
  background: transparent;
  border: none;
  border-radius: 0; }

/* Edge・IE向け 溝の色（つまみより右側） */
/* Edge・IE向け つまみのスタイル */
input[type=range]::-ms-thumb {
  box-sizing: border-box;
  cursor: pointer; }

/* Edge・IE向け ポップアップを非表示に */
input[type=range]::-ms-tooltip {
  display: none; }

.is-hide {
  display: none; }

.player {
  background: white;
  padding: 10px;
  border: solid 1px #eeeeee; }

.player__video {
  margin: auto; }

.is-ie9 .player__seek {
  display: none; }

.player__sound,
.player__bar {
  position: relative; }

.player__volume,
.player__seek,
.player__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 16px;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s; }

.player__volume,
.player__seek {
  z-index: 1; }

.player__progress {
  z-index: 0; }

.player__tooltip {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -120%);
  -ms-transform: translate(-50%, -120%);
  transform: translate(-50%, -120%);
  z-index: 1;
  background: white;
  padding: .2em .5em;
  border-radius: 4px;
  display: none;
  border: solid 1px black;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.4); }

/*i {
  background: white;
  display: block;
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: transparent black black transparent;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(-50%, -110%) rotate(45deg);
  -ms-transform: translate(-50%, -110%) rotate(45deg);
  transform: translate(-50%, -110%) rotate(45deg);
  z-index: 2;
  display: none; }*/

.player__bar:hover .player__tooltip,
.player__bar:hover i {
  display: block; }

progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #eee;
  overflow: hidden; }

progress::-webkit-progress-bar {
  background: transparent;
  border-radius: 10px; }

progress::-webkit-progress-value {
  border-radius: 8px 0 0 8px;
  background: #63cbce; }

progress::-moz-progress-bar {
  background: transparent;
  border-radius: 8px; }

progress::-moz-progress-bar {
  border-radius: 8px 0 0 8px;
  background: #63cbce; }

.is-max {
  border-radius: 10px !important; }

.progress {
  opacity: 0 !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 16px;
  border-radius: 8px;
  overflow: hidden; }

.progress__bar {
  position: relative;
  z-index: 0;
  width: 0;
  height: 100%;
  padding-right: 10px;
  border-radius: 8px 0 0 8px;
  background: #63cbce; }

.progress__bar[style*="100%"] {
  border-radius: 0 8px 8px 0; }

label {
  opacity: 0; }

.label {
  display: none; }

.player__button,
.player__mute {
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  .player__button:focus,
  .player__mute:focus {
    outline: none; }

.player__button.is-play *[class*="--play"] {
  display: none; }

.player__button.is-pause *[class*="--pause"] {
  display: none; }

.player__mute.is-unmute *[class*="--mute"] {
  display: none; }

.player__mute.is-mute *[class*="--unmute"] {
  display: none; }

.range {
  height: 16px;
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 0 3px white, inset 0 0 0 3px white;
  box-shadow: inset 0 0 0 3px white, inset 0 0 0 3px white; }

.range__thumb {
  border: 1px solid #a4a4a4;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%; }

.range__track {
  height: 16px;
  border-radius: 7px;
  -webkit-box-shadow: inset 0 0 0 3px white;
  box-shadow: inset 0 0 0 3px white;
  background: transparent; }

input[type="range"].player__volume,
input[type="range"].player__seek {
  height: 16px;
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 0 3px white, inset 0 0 0 3px white;
  box-shadow: inset 0 0 0 3px white, inset 0 0 0 3px white;
  background: transparent; }

input[type="range"].player__volume::-webkit-slider-thumb,
input[type="range"].player__seek::-webkit-slider-thumb {
  border: 1px solid #a4a4a4;
  width: 16px;
  height: 16px;
  background-color: white;
  border-radius: 50%; }

/* Firefox向け 溝のスタイル */
input[type="range"].player__volume::-moz-range-track,
input[type="range"].player__seek::-moz-range-track {
  height: 16px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 3px white, inset 0 0 0 3px white;
  background: transparent; }

/* Firefox向け つまみのスタイル */
input[type="range"].player__volume::-moz-range-thumb,
input[type="range"].player__seek::-moz-range-thumb {
  border: 1px solid #a4a4a4;
  height: 16px;
  width: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  background: white; }

/* Edge・IE向け 溝のスタイル */
input[type="range"].player__volume::-ms-track,
input[type="range"].player__seek::-ms-track {
  height: 16px;
  border-radius: 10px;
  box-shadow: inset 0 0 0 3px white, inset 0 0 0 3px white, inset 0 0 0 3px white, inset 0 0 0 3px white;
  background: #eeeeee; }

/* Edge・IE向け 溝の色（つまみより左側） */
input[type="range"].player__volume::-ms-fill-lower,
input[type="range"].player__seek::-ms-fill-lower {
  background: transparent;
  border: none;
  border-radius: 10px;
  box-shadow: inset 0 0 0 3px white, inset 0 0 0 3px white, 0 0 0 3px white, 0 0 0 3px white;
  background: #63cace; }

/* Edge・IE向け つまみのスタイル */
input[type="range"].player__volume::-ms-thumb,
input[type="range"].player__seek::-ms-thumb {
  border: 1px solid #a4a4a4;
  height: 16px;
  width: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  background: white; }

.player__control:after {
  content: "";
  display: block;
  clear: both; }

.player__control__row:first-child {
  width: 60%;
  float: left; }
  .player__control__row:first-child .player__control__col:nth-child(2) {
    width: 70%; }

.player__control__row:last-child {
  width: 40%;
  float: left; }
  .player__control__row:last-child .player__control__col:nth-child(2) {
    width: 80%; }

.player__control__col {
  display: inline-block;
  vertical-align: middle; }

.player__control__col:nth-child(2) {
  width: 60%; }

.player__bar,
.player__sound,
button {
  line-height: 1; }

.player__time {
  font-weight: bold;
  font-size: 14px; }
