/* 
================================================
realtime
================================================
*/
.txt-dum {
  text-align: center;
  font-weight: 600;
  font-size: 21px;
}

#digital-clock {
  font-size: 17px;
  gap: 10px;
  border: 2px solid #000;
  display: inline-flex;
  padding: 8px 20px;
  z-index: 1;
  font-weight: 500;
}
@media (min-width: 768px) {
  #digital-clock {
    position: absolute;
    right: 0;
    top: 50px;
  }
}

.p-realtime {
  padding: 40px 0;
  --color-purple: #9a308d;
  --color-pink: #e9528e;
  --color-green: #45b035;
  --color-blue-2: #2d608f;
  --color-blue-3: #00a0e9;
  --color-pink-2: #d70051;
  --color-orange: #f08300;
  --color-green-2: #009886;
}
@media (min-width: 768px) {
  .p-realtime {
    padding: 68px 0 80px;
  }
}
.p-realtime .inactive {
  position: relative;
  pointer-events: none;
  margin-bottom: 0 !important;
}
.p-realtime .inactive:before {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.p-realtime .inactive-ttl {
  position: absolute;
  color: #fff;
  z-index: 3;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.6;
  width: 100%;
}
.p-realtime .inactive .icon-zoom.realtime:after {
  bottom: 0;
}
.p-realtime__note {
  font-size: 13px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-realtime__note {
    font-size: 14px;
  }
}
.p-realtime__note img {
  width: 85px;
  margin: 10px 10px 10px 0;
}
@media (min-width: 768px) {
  .p-realtime__note img {
    width: auto;
    margin: 5px 10px 5px 0;
  }
}
@media (min-width: 768px) {
  .p-realtime__note.mrg-bot {
    margin-bottom: 65px;
  }
}
.p-realtime .p-special__ttl {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-realtime .p-special__ttl {
    margin-bottom: 48px;
  }
}
.p-realtime .rt_m_example {
  margin-top: 80px;
  width: 100%;
}
.p-realtime .rt_m_example.mrg-top {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .p-realtime .rt_m_example.mrg-top {
    margin-top: 60px;
  }
}
.p-realtime .rt_m_example ul {
  --rtColor: #fff46a;
  gap: max(4.267vw, 16px) max(2.667vw, 10px);
  font-size: max(2.133vw, 8px);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .p-realtime .rt_m_example ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    font-size: 12px;
  }
}
@media (min-width: 1024px) {
  .p-realtime .rt_m_example ul {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .p-realtime .rt_m_example ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-realtime .rt_m_example ul li {
  display: flex;
  align-items: center;
  width: auto;
  margin-top: 0;
}
@media (min-width: 1024px) {
  .p-realtime .rt_m_example ul li {
    font-size: 16px;
    width: auto;
  }
}
.p-realtime .rt_m_example ul li::before {
  content: "";
  background: var(--rtColor);
  flex-shrink: 0;
  height: max(3.2vw, 12px);
  width: max(3.2vw, 12px);
  margin-right: max(2.13vw, 8px);
  top: 0;
}
@media (min-width: 768px) {
  .p-realtime .rt_m_example ul li::before {
    margin-right: 8px;
    height: 24px;
    width: 24px;
  }
}
.p-realtime .rt_m_example ul li.over2 {
  --rtColor: #ff9797;
}
.p-realtime .rt_m_example ul li.over3 {
  --rtColor: #ff2696;
}
.p-realtime .rt_m_example ul li.closed {
  --rtColor: url("../img/realtime/icon_closed.png") no-repeat center / contain;
}
.p-realtime .rt_m_example ul li.closed::before {
  width: max(3.2vw, 12px);
}
@media (min-width: 768px) {
  .p-realtime .rt_m_example ul li.closed::before {
    width: 19px;
  }
}
.p-realtime-tab {
  position: relative;
  z-index: 2;
}
.p-realtime-tab .tab-realtime {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .p-realtime-tab .tab-realtime {
    gap: 24px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 768px) {
  .p-realtime-tab .tab-realtime li:before {
    position: absolute;
    content: "";
    bottom: 0;
    border-bottom: 4px solid transparent;
    left: -100%;
    width: 500%;
  }
}
.p-realtime-tab .tab-realtime li.active .tab-realtime__item {
  background: #036eb8;
  color: #fff;
}
.p-realtime-tab .tab-realtime li.active .tab-realtime__item:after {
  border-top: 16px solid #036eb8;
}
.p-realtime-tab .tab-realtime li.active .tab-realtime__item .ic-down {
  background-image: url(../img/realtime/ic_down_w.png);
}
.p-realtime-tab .tab-realtime li.active:before {
  border-bottom: 4px solid #036eb8;
}
.p-realtime-tab .tab-realtime li.active.first-item .tab-realtime__item {
  background: var(--keycolor);
  color: #fff;
}
.p-realtime-tab .tab-realtime li.active.first-item .tab-realtime__item:after {
  border-top: 16px solid var(--keycolor);
}
.p-realtime-tab .tab-realtime li.active.first-item:before {
  border-bottom: 4px solid var(--keycolor);
  z-index: 1;
  display: block;
}
.p-realtime-tab .tab-realtime li.active .tab-realtime__item:after {
  display: block;
}
.p-realtime-tab .tab-realtime__item {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2307692308;
  border: 2px solid #036eb8;
  border-radius: 8px;
  height: 64px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  position: relative;
  transition: auto;
}
@media (min-width: 768px) {
  .p-realtime-tab .tab-realtime__item {
    font-size: 16px;
    line-height: 1.5;
    border: 4px solid #036eb8;
    border-bottom: none !important;
    height: 84px;
    border-radius: 8px 8px 0 0;
    justify-content: center;
    padding-left: 0;
  }
}
.p-realtime-tab .tab-realtime__item:after {
  position: absolute;
  content: "";
}
@media (min-width: 768px) {
  .p-realtime-tab .tab-realtime__item:after {
    right: 0;
    margin: auto;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 16px solid transparent;
    bottom: -15px;
  }
}
.p-realtime-tab .tab-realtime__item .ic-down {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/realtime/ic_down_b.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
}
@media (min-width: 768px) {
  .p-realtime-tab .tab-realtime__item .ic-down {
    display: none;
  }
}
.p-realtime-tab .tab-realtime__item.--kousoku {
  border: 2px solid var(--keycolor);
}
@media (min-width: 768px) {
  .p-realtime-tab .tab-realtime__item.--kousoku {
    border: 4px solid var(--keycolor);
  }
}
.p-realtime-tab .tab-realtime__item.--kousoku .ic-down {
  background-image: url(../img/realtime/ic_down_p.png);
}
.p-realtime .tab-content {
  padding: 28px 0 0;
  display: none;
}
@media (min-width: 768px) {
  .p-realtime .tab-content {
    padding: 50px 0 0;
  }
}
.p-realtime .tab-content.active {
  display: block;
}
.p-realtime__btn {
  position: relative;
  max-width: 320px;
  margin: 40px auto 0;
  border-radius: 5px;
  background-color: #ee7800;
  border: solid 2px #ee7800;
  color: #fff;
  padding: 18px 50px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .p-realtime__btn {
    margin: 40px 0 0 auto;
    padding: 28px 50px;
  }
  .p-realtime__btn.--mrg-top {
    margin-top: -45px;
  }
}
.p-realtime__btn.inactive {
  background: #efefef;
  border: solid 2px #efefef;
  color: #fff;
  pointer-events: none;
}
.p-realtime__btn.inactive .ic_right {
  background: url(../img/realtime/ic_down_w.png) no-repeat top center;
  background-size: contain;
  transform: translateY(-50%) rotate(-90deg);
}
.p-realtime__btn.inactive:before {
  display: none;
}
.p-realtime__btn .ic_right {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  background: url(../img/realtime/ic_down_w.png) no-repeat top center;
  background-size: contain;
  transform: translateY(-50%) rotate(-90deg);
  display: block;
}
.p-realtime__btn:hover {
  color: #2e2e2e;
  background: #fff;
}
.p-realtime__btn:hover i {
  color: #fff;
}
.p-realtime__btn:hover .ic_right {
  background: url(../img/realtime/ic_right.png) no-repeat top center;
  background-size: contain;
  transform: translateY(-50%) rotate(0deg);
}
@media (min-width: 768px) {
  .p-realtime__btn.--cuz {
    margin-top: -37px;
  }
}
.p-realtime .realtime-img {
  text-align: center;
  width: 100%;
}
.p-realtime .realtime-img img {
  margin: auto;
}
@media (min-width: 768px) {
  .p-realtime .realtime-img img {
    width: auto;
  }
}
@media (min-width: 768px) {
  .p-realtime .realtime-img {
    pointer-events: none;
  }
  .p-realtime .realtime-img:after {
    display: none;
  }
}
.p-realtime .realtime-box {
  border-width: 2px;
  border-style: solid;
  border-color: var(--color-purple);
  padding: 27px 0;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box {
    border-width: 4px;
    padding: 60px 0;
  }
}
.p-realtime .realtime-box.box02 {
  border-color: var(--color-pink);
}
.p-realtime .realtime-box.box03 {
  border-color: var(--color-blue-2);
}
.p-realtime .realtime-box.box04 {
  border-color: var(--color-blue-3);
}
.p-realtime .realtime-box.box05 {
  border-color: var(--color-green);
}
.p-realtime .realtime-box.box06 {
  border-color: var(--color-pink-2);
}
.p-realtime .realtime-box.box07 {
  border-color: var(--color-orange);
}
.p-realtime .realtime-box.box08 {
  border-color: var(--color-green-2);
}
.p-realtime .realtime-box:not(:last-child) {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box:not(:last-child) {
    margin-bottom: 40px;
  }
}
.p-realtime .realtime-box__top {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__top {
    margin-bottom: 24px;
    gap: 200px;
  }
}
.p-realtime .realtime-box__top .status {
  font-size: 8px;
  background: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 16px;
  border-radius: 16px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__top .status {
    font-size: 16px;
    width: 152px;
    height: 32px;
  }
}
.p-realtime .realtime-box__meta {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-realtime .realtime-box__meta {
    margin-top: 53px;
  }
}
@media (min-width: 1024px) {
  .p-realtime .realtime-box__meta {
    gap: 80px;
  }
}
.p-realtime .realtime-box__center {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__center {
    gap: 25px;
  }
}
.p-realtime .realtime-box__info {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .p-realtime .realtime-box__info {
    gap: 10px;
  }
}
.p-realtime .realtime-box__info .time-section.left .time-real {
  padding-left: 19px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__info .time-section.left .time-real {
    padding-left: 24px;
  }
}
.p-realtime .realtime-box__info .time-section.right .time-real {
  padding-right: 15px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__info .time-section.right .time-real {
    padding-right: 24px;
  }
}
.p-realtime .realtime-box__info .time-section.right .time-real:before {
  transform: rotate(180deg);
}
.p-realtime .realtime-box__info .time-section.right .time-real.stop:after {
  right: 27px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__info .time-section.right .time-real.stop:after {
    right: 39px;
  }
}
.p-realtime .realtime-box__info .time-section .time-real {
  height: 28px;
  width: 76px;
  font-size: 20px;
  padding: 3px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: bold;
  line-height: 1;
  position: relative;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__info .time-section .time-real {
    padding: 5px;
    font-size: 40px;
    width: 152px;
    height: 56px;
  }
}
.p-realtime .realtime-box__info .time-section .time-real::before {
  content: "";
  mask: url("../img/realtime/bg_left_2.png") no-repeat center;
  mask-size: 100%;
  background: url("../img/realtime/bg_left_2.png") no-repeat center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: contain;
}
.p-realtime .realtime-box__info .time-section .time-real.over3 {
  --trafficColor: #ff2696;
  color: #fff;
}
.p-realtime .realtime-box__info .time-section .time-real.over3::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.p-realtime .realtime-box__info .time-section .time-real.over2 {
  --trafficColor: #ff9797;
}
.p-realtime .realtime-box__info .time-section .time-real.over2::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.p-realtime .realtime-box__info .time-section .time-real.over1 {
  --trafficColor: #fff46a;
}
.p-realtime .realtime-box__info .time-section .time-real.over1::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.p-realtime .realtime-box__info .time-section .time-real.stop::after {
  content: "";
  background: url("../img/realtime/icon_closed_2.png") no-repeat center/contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  top: 5px;
  width: 16px;
  height: 14px;
  margin: auto;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__info .time-section .time-real.stop::after {
    width: 41px;
    height: 35px;
  }
}
.p-realtime .realtime-box__info .time-section .time-real.stop .control_time,
.p-realtime .realtime-box__info .time-section .time-real.stop .control_time2 {
  display: none;
  opacity: 0;
}
.p-realtime .realtime-box__info .time-section .time-real.stop small {
  padding-top: 7px;
  margin-left: 17px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__info .time-section .time-real.stop small {
    padding-top: 21px;
    margin-left: 46px;
  }
}
.p-realtime .realtime-box__info .time-section .time-real .control_time,
.p-realtime .realtime-box__info .time-section .time-real .control_time2 {
  position: relative;
  z-index: 1;
}
.p-realtime .realtime-box__info .time-section .time-real small {
  margin-top: 2px;
  font-size: 9px;
  position: relative;
  z-index: 1;
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__info .time-section .time-real small {
    font-size: 16px;
  }
}
.p-realtime .realtime-box__sub {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-realtime .realtime-box__sub {
    position: absolute;
    top: -36px;
  }
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__sub {
    min-width: 200px;
    font-size: 24px;
  }
}
.p-realtime .realtime-box__sub .small {
  display: block;
  font-size: 8px;
  margin-top: 3px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__sub .small {
    font-size: 16px;
    margin-top: 5px;
  }
}
.p-realtime .realtime-box__sub .small.c-white {
  color: #fff;
}
.p-realtime .realtime-box__sub .small.bg {
  width: 50px;
  height: 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px auto 0;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__sub .small.bg {
    border-radius: 3px;
    width: 105px;
    height: 24px;
  }
}
.p-realtime .realtime-box__sub .small.bg.--01 {
  background: var(--color-purple);
}
.p-realtime .realtime-box__sub .small.bg.--02 {
  background: var(--color-pink);
}
.p-realtime .realtime-box__sub .small.bg.--03 {
  background: var(--color-blue-2);
}
.p-realtime .realtime-box__sub .small.bg.--04 {
  background: var(--color-blue-3);
}
.p-realtime .realtime-box__sub .small.bg.--05 {
  background: var(--color-green);
}
.p-realtime .realtime-box__sub .small.bg.--06 {
  background: var(--color-pink-2);
}
.p-realtime .realtime-box__sub .small.bg.--07 {
  background: var(--color-orange);
}
.p-realtime .realtime-box__sub .small.bg.--08 {
  background: var(--color-green-2);
}
.p-realtime .realtime-box__sub.purple {
  color: var(--color-purple);
}
.p-realtime .realtime-box__sub.pink {
  color: var(--color-pink);
}
.p-realtime .realtime-box__sub.blue2 {
  color: var(--color-blue-2);
}
.p-realtime .realtime-box__sub.blue3 {
  color: var(--color-blue-3);
}
.p-realtime .realtime-box__sub.green {
  color: var(--color-green);
}
.p-realtime .realtime-box__sub.pink02 {
  color: var(--color-pink-2);
}
.p-realtime .realtime-box__sub.orange {
  color: var(--color-orange);
}
.p-realtime .realtime-box__sub.green2 {
  color: var(--color-green-2);
}
.p-realtime .realtime-box__ttl {
  font-size: 20px;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
  min-width: 100px;
}
@media (min-width: 768px) {
  .p-realtime .realtime-box__ttl {
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-realtime .realtime-box__ttl {
    font-size: 27px;
  }
}
@media (min-width: 1024px) {
  .p-realtime .realtime-box__ttl {
    font-size: 32px;
  }
}

.c-row {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .c-row {
    margin-bottom: 56px;
  }
}

.align-center {
  text-align: center;
}

.img-time {
  position: relative;
  margin: 0 auto;
}
.img-time.--mrg-top {
  margin-top: -12.5333333333vw;
}
@media (min-width: 768px) {
  .img-time.--mrg-top {
    margin-top: -125px;
  }
}
.img-time .img-map {
  margin-top: 12.5333333333vw;
}
@media (min-width: 768px) {
  .img-time .img-map {
    margin-top: 125px;
  }
}

.timeBox {
  position: absolute;
}
.timeBox.yellow {
  --timeColor: #ff9797;
}
.timeBox.red {
  --timeColor: #e70012;
}
.timeBox.pink {
  --timeColor: #ff2696;
}
.timeBox.green {
  --timeColor: #fff46a;
}
@media (max-width: 767px) {
  .timeBox.--padleft .control_time,
  .timeBox.--padleft .control_time2 {
    padding-left: 1.6vw;
  }
}
@media (max-width: 767px) {
  .timeBox.--padright small {
    padding-right: 1.6vw;
  }
}
.timeBox.--pos01 {
  top: 27.7442702051%;
  left: 30.2%;
}
@media (min-width: 1024px) {
  .timeBox.--pos01 {
    top: 29.5536791315%;
    left: 32%;
  }
}
.timeBox.--pos02 {
  top: 27.7442702051%;
  left: 42.3%;
}
@media (min-width: 1024px) {
  .timeBox.--pos02 {
    top: 29.5536791315%;
    left: 44%;
  }
}
.timeBox.--pos03 {
  top: 44.0289505428%;
  left: 30.2%;
}
@media (min-width: 1024px) {
  .timeBox.--pos03 {
    top: 45.8383594692%;
    left: 32%;
  }
}
.timeBox.--pos04 {
  top: 44.0289505428%;
  left: 42.3%;
}
@media (min-width: 1024px) {
  .timeBox.--pos04 {
    top: 45.8383594692%;
    left: 44%;
  }
}
.timeBox.--pos05 {
  top: 75.5%;
  left: 8%;
}
@media (min-width: 1024px) {
  .timeBox.--pos05 {
    top: 491px;
    left: 89px;
  }
}
.timeBox.--pos06 {
  top: 75%;
  left: 11%;
}
@media (min-width: 1024px) {
  .timeBox.--pos06 {
    top: 76%;
  }
}
.timeBox.--pos07 {
  top: 75%;
  left: 28%;
}
@media (min-width: 1024px) {
  .timeBox.--pos07 {
    top: 76%;
  }
}
.timeBox.--pos08 {
  top: 75%;
  left: 46.6%;
}
@media (min-width: 1024px) {
  .timeBox.--pos08 {
    top: 76%;
  }
}
.timeBox.--pos09 {
  top: 75%;
  left: 63.7%;
}
@media (min-width: 1024px) {
  .timeBox.--pos09 {
    top: 76%;
  }
}
.timeBox.--pos10 {
  top: 75%;
  left: 80.8705612829%;
}
@media (min-width: 1024px) {
  .timeBox.--pos10 {
    top: 76%;
  }
}
.timeBox.--pos11 {
  top: 87%;
  left: 7%;
}
@media (min-width: 1024px) {
  .timeBox.--pos11 {
    top: 570px;
    left: 89px;
  }
}
.timeBox.--pos12 {
  top: 86.2484921592%;
  left: 11%;
}
@media (min-width: 1024px) {
  .timeBox.--pos12 {
    top: 87.0928829916%;
  }
}
.timeBox.--pos13 {
  top: 86.2484921592%;
  left: 28%;
}
@media (min-width: 1024px) {
  .timeBox.--pos13 {
    top: 87.0928829916%;
  }
}
.timeBox.--pos14 {
  top: 86.2484921592%;
  left: 46.6%;
}
@media (min-width: 1024px) {
  .timeBox.--pos14 {
    top: 87.0928829916%;
  }
}
.timeBox.--pos15 {
  top: 86.2484921592%;
  left: 63.7%;
}
@media (min-width: 1024px) {
  .timeBox.--pos15 {
    top: 87.0928829916%;
  }
}
.timeBox.--pos16 {
  top: 86.2484921592%;
  left: 80.8705612829%;
}
@media (min-width: 1024px) {
  .timeBox.--pos16 {
    top: 87.0928829916%;
  }
}
.timeBox.--pos17 {
  top: 62.123039807%;
  left: 30.2%;
}
@media (min-width: 1024px) {
  .timeBox.--pos17 {
    left: 32%;
  }
}
.timeBox.--pos18 {
  top: 62.123039807%;
  left: 42.3%;
}
@media (min-width: 1024px) {
  .timeBox.--pos18 {
    left: 44%;
  }
}
.timeBox__box {
  position: relative;
}
.timeBox__box.left .time_wrap {
  padding-right: 11px;
}
@media (min-width: 376px) {
  .timeBox__box.left .time_wrap {
    padding-right: 10px;
  }
}
.timeBox__box.left .time_wrap.stop:after {
  right: 11px;
}
.timeBox__box.left .time_wrap:before {
  transform: rotate(180deg);
}
.timeBox__box.up .time_wrap {
  flex-direction: column;
  padding-top: 1.8666666667vw;
}
@media (min-width: 768px) {
  .timeBox__box.up .time_wrap {
    padding-top: 18px;
  }
}
.timeBox__box.up .time_wrap:before {
  transform: rotate(90deg);
}
.timeBox__box.down .time_wrap {
  flex-direction: column;
}
.timeBox__box.down .time_wrap:before {
  transform: rotate(-90deg);
}
.timeBox__box.right .time_wrap {
  padding-left: 13px;
}
@media (min-width: 376px) {
  .timeBox__box.right .time_wrap {
    padding-left: 14px;
  }
}
.timeBox__box.right .time_wrap.stop:after {
  left: 6px;
}
.timeBox__box .direction {
  display: block;
}
.timeBox__box .direction span {
  background-color: #efefef;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: max(1.73vw, 6.5px);
  margin: 0 auto;
  height: max(3.2vw, 12px);
  width: max(11.7vw, 44px);
}
@media (min-width: 768px) {
  .timeBox__box .direction span {
    font-size: 13px;
    height: 24px;
    width: 88px;
  }
}
.timeBox__box .time_wrap {
  height: 3.4666666667vw;
  width: 9.3333333333vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3333333333vw;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .timeBox__box .time_wrap {
    font-size: 1.5625vw;
    height: 3.125vw;
    width: 7.421875vw;
  }
}
@media (min-width: 1024px) {
  .timeBox__box .time_wrap {
    height: 28px;
    width: 68px;
    font-size: 16px;
  }
}
.timeBox__box .time_wrap::before {
  content: "";
  mask: url("../img/realtime/bg_left.png") no-repeat center;
  mask-size: 100%;
  background: url("../img/realtime/bg_left.png") no-repeat center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: contain;
}
@media (max-width: 375px) {
  .timeBox__box .time_wrap::before {
    background-size: 70% 80%;
    mask-size: 81%;
  }
}
.timeBox__box .time_wrap.over3 {
  --trafficColor: #ff2696;
  color: #fff;
}
.timeBox__box .time_wrap.over3::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.timeBox__box .time_wrap.over2 {
  --trafficColor: #ff9797;
}
.timeBox__box .time_wrap.over2::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.timeBox__box .time_wrap.over1 {
  --trafficColor: #fff46a;
}
.timeBox__box .time_wrap.over1::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.timeBox__box .time_wrap.stop::after {
  content: "";
  background: url("../img/realtime/icon_closed.png") no-repeat center/contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  top: 5px;
  width: 17px;
  height: 15px;
  margin: auto;
}
@media (max-width: 767px) {
  .timeBox__box .time_wrap.stop::after {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.timeBox__box .time_wrap.stop * {
  display: none;
  opacity: 0;
}
.timeBox__box .time_wrap .control_time,
.timeBox__box .time_wrap .control_time2 {
  position: relative;
  z-index: 1;
}
.timeBox__box .time_wrap small {
  font-size: 1.3333333333vw;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .timeBox__box .time_wrap small {
    font-size: 1.171875vw;
  }
}
@media (min-width: 1024px) {
  .timeBox__box .time_wrap small {
    margin-top: 5px;
    font-size: 12px;
  }
}

.c-modal-time {
  position: relative;
}
.c-modal-time.--map {
  margin-top: -20vw;
}
@media (min-width: 768px) {
  .c-modal-time.--map {
    margin-top: -125px;
  }
}
.c-modal-time.--map .img-map {
  margin-top: 20vw;
}
@media (min-width: 768px) {
  .c-modal-time.--map .img-map {
    margin-top: 125px;
  }
}
.c-modal-time .timeBox {
  position: absolute;
}
.c-modal-time .timeBox__box .time_wrap {
  height: 27px;
  width: 50px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
@media (min-width: 768px) {
  .c-modal-time .timeBox__box .time_wrap {
    font-size: 16px;
    width: 76px;
  }
}
.c-modal-time .timeBox__box .time_wrap::before {
  content: "";
  mask: url("../img/realtime/bg_left.png") no-repeat center;
  mask-size: 100%;
  background: url("../img/realtime/bg_left.png") no-repeat center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: contain;
}
.c-modal-time .timeBox__box .time_wrap.over3 {
  --trafficColor: #ff2696;
  color: #fff;
}
.c-modal-time .timeBox__box .time_wrap.over3::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.c-modal-time .timeBox__box .time_wrap.over2 {
  --trafficColor: #ff9797;
}
.c-modal-time .timeBox__box .time_wrap.over2::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.c-modal-time .timeBox__box .time_wrap.over1 {
  --trafficColor: #fff46a;
}
.c-modal-time .timeBox__box .time_wrap.over1::before {
  background: none;
  background-color: var(--trafficColor, #fff);
}
.c-modal-time .timeBox__box .time_wrap.stop::after {
  content: "";
  background: url("../img/realtime/icon_closed.png") no-repeat center/contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  top: 5px;
  width: 14px;
  height: 14px;
  margin: auto;
}
@media (min-width: 768px) {
  .c-modal-time .timeBox__box .time_wrap.stop::after {
    width: 22px;
    height: 20px;
  }
}
.c-modal-time .timeBox__box .time_wrap.stop * {
  display: none;
  opacity: 0;
}
.c-modal-time .timeBox__box .time_wrap .control_time,
.c-modal-time .timeBox__box .time_wrap .control_time2 {
  position: relative;
  z-index: 1;
}
.c-modal-time .timeBox__box .time_wrap small {
  margin-top: 2px;
  font-size: 9px;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-modal-time .timeBox__box .time_wrap small {
    font-size: 12px;
  }
}

.p-modal.scroll.realtime img {
  max-height: none;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal {
  height: 8px;
  background: #efefef;
}

.mCSB_scrollTools.mCSB_scrollTools_horizontal .mCSB_dragger .mCSB_dragger_bar {
  height: 8px;
  background: var(--keycolor);
  margin: 0px auto;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
  margin-bottom: 20px;
}

.modal-home.modal-datetime .c-modal__wrap {
  max-width: none;
  width: 100%;
  height: 100vh;
  border-radius: 0;
  bottom: auto;
  left: auto;
  transform: none !important;
  overflow: auto;
}
.modal-home.modal-datetime .rain_inner {
  max-height: none;
  height: 100vh;
  overflow: auto;
}
.modal-home.modal-datetime .modal-img-box .img img {
  max-width: 694px;
}
@media (min-width: 768px) {
  .modal-home.modal-datetime .modal-img-box .img img {
    max-width: none;
  }
}/*# sourceMappingURL=realtime.css.map */