@charset "utf-8";

.date-tab li {
  width: calc((100% - 11px) / 3);
}
.weather-cont {
  padding: 50px 66px 97px 70px;
}
.weather-detail {
  display: flex;
  justify-content: space-between;
}


/*=== 経過時間 ===*/
.timetable {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: -72px;
  left: 0;
  border: 1px solid #d2dce6;
  background-color: #fff;
}
.timetable-play {
  display: block;
  position: relative;
  width: 70px;
  padding: 30px 25px;
  border: none;
  font-size: 0;
  background-color: #fff;
}
.timetable-play::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 17px;
  border-color: transparent transparent transparent #60697a;
  transform: translateY(-50%);
}
.timetable-stop {
  display: block;
  position: relative;
  width: 70px;
  padding: 30px 25px;
  border: none;
  font-size: 0;
  background-color: #fff;
}
.timetable-stop::before,
.timetable-stop::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 24px;
  width: 5px;
  height: 23px;
  background-color: #60697a;
  transform: translateY(-50%);
}
.timetable-stop::after {
  left: auto;
  right: 29px;
}
.btn-hide {
  display: none;
}
.timetable-mod {
  position: relative;
  width: 580px;
  margin: 15px 25px 0 5px;
}
.timetable-bar {
  appearance: none;
  cursor: pointer;
  outline: none;
  position: absolute;
  top: 0;
  width: 580px;
  height: 15px;
  margin: 0;
  background-color: transparent;
  z-index: 1;
}
.timetable-bace {
  position: absolute;
  top: 0;
  width: 570px;
  height: 15px;
  margin: 0 5px;
  border: 1px solid #d2dce6;
  border-radius: 10px;
}
.timetable-active {
  position: absolute;
  top: 0;
  width: 580px;
  height: 15px;
  margin: 0 5px;
  background-color: #d2dce6;
  border-radius: 10px;
}
/* WebKit向けのつまみ */
.timetable-bar::-webkit-slider-thumb {
  -webkit-appearance: none;
  position: relative;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #60697a;
  border-radius: 50%;
  z-index: 20;
}
/* Moz向けのつまみ */
.timetable-bar::-moz-range-thumb {
  position: relative;
  width: 20px;
  height: 20px;
  border: none;
  background-color: #60697a;
  border-radius: 50%;
  z-index: 20;
}
/* Firefoxで点線が周りに表示されてしまう問題の解消 */
.timetable-bar::-moz-focus-outer {
  border: 0;
}
.timetable-bar:focus,
.timetable-bar:focus::-webkit-slider-thumb,
.timetable-bar:active,
.timetable-bar:active::-webkit-slider-thumb {
  outline: none;
}
.timetable-list {
  display: flex;
  justify-content: space-between;
  margin: 20px -11.5px 0;
}
.timetable-list li {
  position: relative;
  width: auto;
  height: auto;
  color: #60697a;
  font-size: 12px;
  line-height: 1.4;
  background-color: transparent;
}
.timetable-list li::before {
  content: "";
  display: block;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 15px;
  height: 15px;
  border: 1px solid #60697a;
  background-color: #fff;
  border-radius: 50%;
  transform: translateX(-50%);
}
.timetable-list li span {
  display: block;
  width: 45px;
}


@media screen and (max-width: 768px) {
  .date-tab {
    border-bottom: 1px solid #d2dce6;
  }
  .date-tab li {
    width: calc((100% - 3px) / 3);
  }
  .date-tab span {
    font-size: 13px;
  }
  .weather-cont {
    padding: 0;
    border: none;
  }
  .weather-detail {
    display: block;
    width: 100%;
  }
  .weather-map {
    text-align: center;
  }
  /*=== 経過時間 ===*/
  .timetable {
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    position: static;
    padding: 0px 8px;
    overflow: scroll;
  }
  .timetable-play {
    padding: 20px 35px;
  }
  .timetable-play::before {
    position: absolute;
    top: 50%;
    left: 50%;
    border-width: 8.5px 0 8.5px 13px;
    transform: translateY(-50%) translateX(-50%);
  }
  .timetable-stop {
    width: 70px;
    padding: 20px 35px;
  }
  .timetable-stop::before {
    left: 28px;
    width: 4px;
    height: 17px;
  }
  .timetable-stop::after {
    right: 28px;
    width: 4px;
    height: 17px;
  }
  .timetable-mod {
    width: 325px;
    margin: 10px 0 0;
  }
  .timetable-bar {
    width: 325px;
    height: 10px;
  }
  .timetable-bace {
    width: 315px;
    height: 10px;
  }
  .timetable-active {
    width: 325px;
    height: 10px;
  }
  /* WebKit向けのつまみ */
  .timetable-bar::-webkit-slider-thumb {
    width: 16px;
    height: 16px;
  }
  /* Moz向けのつまみ */
  .timetable-bar::-moz-range-thumb {
    width: 16px;
    height: 16px;
  }
  .timetable-list {
    margin: 20px -8px 0;
  }
  .timetable-list li {
    font-size: 9px;
  }
  .timetable-list li::before {
    width: 10px;
    height: 10px;
  }
  .timetable-list li span {
    width: 38px;
  }
}