@charset "UTF-8";
/* -------------------------------------------------------------------------*/
/* MIXIN / ARGUMENT / COMMON CLASS
/* -------------------------------------------------------------------------*/
.default_ftz {
  font-size: 18px;
  font-size: 1.125rem;
}

@media only screen and (max-width: 640px) {
  .default_ftz {
    font-size: 16px;
    font-size: 1rem;
  }
}

.text_out {
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.fixed_area {
  max-width: 1200px;
  margin: 0 auto;
}

.tbl_scroll {
  overflow-x: auto;
}

.tbl_scroll table {
  min-width: 600px;
}

:root {
  --color_text: #333;
  --color_hd: #2d6eb3;
  --color_btn: #d5e2f0;
  --color_btn_in: #1ab800;
  --color_btn_2: #1ab800;
  --color_btn_text: #0062b2;
  --color_btn_text_in: #fff;
  --color_train_1: #3d3d3d;
  --color_train_1_text: #ffaa24;
  --color_train_2: #0042d7;
  --color_train_2_text: #fff;
  --color_train_3: #f00;
  --color_train_3_text: #fff;
  --color_station: #007ae2;
  --color_station_shadow: #82b9e8;
  --color_pg_backColor: #f5f8f8;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* FONT
/* -------------------------------------------------------------------------*/
.lang_ja {
  font-family: -apple-system, BlinkMacSystemFont, YuGothic, '游ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
}

.lang_en {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Tahoma, Geneva, Arial, sans-serifYuGothic, "游ゴシック", "Yu Gothic";
}

.mincho {
  font-family: '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Hiragino Mincho Pro', 'ＭＳ 明朝', serif;
}

#language.lang_ja .en {
  display: none !important;
}

#language.lang_en .ja {
  display: none !important;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* COMMON / BASE
/* -------------------------------------------------------------------------*/
html {
  font-size: 100%;
  line-height: 1.5em;
}

@media only screen and (max-width: 980px) {
  html {
    font-size: 90%;
  }
}

@media only screen and (max-width: 640px) {
  html {
    font-size: 90%;
  }
}

@media print {
  html {
    width: 1000px !important;
  }
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color_text);
}

a {
  cursor: pointer;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* HEADER
/* -------------------------------------------------------------------------*/
#HD .hd__wrp {
  display: flex;
}

#HD #HD_name {
  display: flex;
  align-items: center;
  width: 200px;
  margin: 0;
  padding: 6px 0;
  background-color: #00a7e3;
}

#HD #HD_name img {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1200px) {
  #HD #HD_name {
    width: 160px;
  }
}

@media only screen and (max-width: 980px) {
  #HD #HD_name {
    width: 140px;
    padding: 3px;
  }
}

@media only screen and (max-width: 430px) {
  #HD #HD_name {
    width: 120px;
  }
}

#HD .hd__inner {
  display: flex;
  align-items: center;
  flex: 1;
  position: relative;
  color: #fff;
  background-color: var(--color_hd);
}

#HD .hd__inner::before {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 70px 108px 0;
  border-color: transparent #ffffff transparent transparent;
}

#HD .hd__inner h2 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0;
  padding: 0 20px;
  line-height: 1.2;
}

#HD .hd__inner h2 span {
  display: inline-block;
  white-space: nowrap;
}

@media only screen and (max-width: 1300px) {
  #HD .hd__inner h2 {
    font-size: 18px;
    font-size: 1.125rem;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 1200px) {
  #HD .hd__inner h2 {
    font-size: 17px;
    font-size: 1.0625rem;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 980px) {
  #HD .hd__inner h2 {
    font-size: 16px;
    font-size: 1rem;
    width: 80px;
  }
  #HD .hd__inner h2.h2_2 {
    width: auto;
  }
  #HD .hd__inner::before {
    display: none;
  }
}

@media only screen and (max-width: 640px) {
  #HD .hd__inner h2 {
    width: auto;
  }
}

#HD .reload_btn, #HD .language_btn, #HD .help_btn {
  position: relative;
  padding: 0 20px;
}

#HD .reload_btn::before, #HD .reload_btn::after, #HD .language_btn::before, #HD .language_btn::after, #HD .help_btn::before, #HD .help_btn::after {
  content: '';
  display: block;
  width: 1px;
  height: 35px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#HD .reload_btn::before, #HD .language_btn::before, #HD .help_btn::before {
  background-color: rgba(0, 0, 0, 0.2);
  left: 0;
}

#HD .reload_btn::after, #HD .language_btn::after, #HD .help_btn::after {
  background-color: rgba(255, 255, 255, 0.15);
  left: 1px;
}

@media only screen and (max-width: 1300px) {
  #HD .reload_btn, #HD .language_btn, #HD .help_btn {
    flex: auto;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 730px) {
  #HD .reload_btn, #HD .language_btn, #HD .help_btn {
    padding: 0 5px;
  }
}

#HD .reload_btn, #HD .language_btn {
  display: flex;
  align-items: center;
  width: 270px;
}

#HD .reload_btn figure, #HD .language_btn figure {
  margin: 0 10px 0 0;
  padding: 0;
  text-align: center;
}

#HD .reload_btn figcaption, #HD .language_btn figcaption {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 2px;
}

#HD .reload_btn ul, #HD .language_btn ul {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  display: flex;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

#HD .reload_btn li, #HD .language_btn li {
  flex: 1;
  margin: 0 3px;
  padding: 0;
}

#HD .reload_btn li a, #HD .language_btn li a {
  display: block;
  padding: 10px 5px;
  text-align: center;
  background-color: var(--color_btn);
  color: var(--color_btn_text);
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
}

#HD .reload_btn li.in a, #HD .language_btn li.in a {
  background-color: var(--color_btn_in);
  color: var(--color_btn_text_in);
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 1300px) {
  #HD .reload_btn, #HD .language_btn {
    width: 210px;
  }
}

@media only screen and (max-width: 1200px) {
  #HD .reload_btn, #HD .language_btn {
    width: 180px;
  }
  #HD .reload_btn ul, #HD .language_btn ul {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

@media only screen and (max-width: 730px) {
  #HD .reload_btn, #HD .language_btn {
    width: auto;
  }
}

#language.lang_ja #HD .language_btn .lang_ja,
#language.lang_en #HD .language_btn .lang_en {
  background-color: var(--color_btn_in);
  color: var(--color_btn_text_in);
  box-shadow: inset 0 2px 0 rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 850px) {
  #HD .language_btn {
    width: 150px;
  }
  #HD .language_btn figure {
    display: none;
  }
}

@media only screen and (max-width: 730px) {
  #HD .language_btn {
    width: auto;
  }
}

#HD .help_btn a {
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #fff;
}

#HD .help_btn figure {
  margin: 0 10px 0 0;
  padding: 0;
  text-align: center;
}

#HD .help_btn p {
  margin: 0;
}

@media only screen and (max-width: 850px) {
  #HD .help_btn figure {
    margin: 0;
  }
  #HD .help_btn p {
    display: none;
  }
}

#HD #HD_logo {
  display: flex;
  align-items: center;
}

#HD #HD_logo p {
  margin: 0;
  padding: 0;
}

#HD #HD_logo a {
  display: block;
  padding: 5px 10px 5px 0;
  background-color: #fff;
}

#HD #HD_logo img {
  width: 125px;
  height: auto;
}

@media only screen and (max-width: 980px) {
  #HD #HD_logo a {
    padding: 5px;
  }
  #HD #HD_logo img {
    width: 100px;
  }
}

#HD .hd__sp {
  display: none;
  align-items: center;
  justify-content: flex-end;
  padding: 4px 10px;
  background-color: #568bc4;
  color: #fff;
  line-height: 1;
  min-height: 38px;
}

#HD .hd__sp > * {
  flex: none;
}

#HD .hd__sp .reload_btn::after, #HD .hd__sp .reload_btn::before {
  display: none;
}

#HD .hd__sp .reload_btn img {
  width: 15px;
  margin-bottom: 5px;
}

#HD .hd__sp .reload_btn a {
  min-width: 50px;
}

#HD .hd__sp .reload_btn a, #HD .hd__sp .language_btn a {
  padding: 8px 5px;
}

#HD .hd__sp .help_btn a {
  margin-left: 5px;
}

@media only screen and (max-width: 640px) {
  #HD .hd__inner .reload_btn, #HD .hd__inner .language_btn, #HD .hd__inner .help_btn {
    display: none;
  }
  #HD .hd__sp {
    display: flex;
  }
  #HD .hd__sp .help_btn img {
    width: 20px;
    height: auto;
  }
  #HD .help_btn {
    padding-right: 0;
  }
}

@media only screen and (max-width: 430px) {
  #HD .hd__inner::before {
    border-width: 0 30px 108px 0;
  }
}

/* ----- INFO 1 ----- */
#INFO_1 {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  color: #fff;
  background-color: #474747;
}

#INFO_1 .info__inner {
  display: flex;
  flex: 1;
  min-width: 0;
}

#INFO_1 .info_hd {
  display: flex;
  align-items: center;
}

#INFO_1 .info_hd h3 {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 4px 10px 0 0;
  padding: 0;
  font-weight: normal;
  white-space: nowrap;
}

#INFO_1 .info_hd h3 img {
  margin-right: 10px;
  vertical-align: middle;
}

#INFO_1 .info_hd ul {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  flex: 1;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

#INFO_1 .info_hd ul li {
  position: relative;
  margin: 0;
  padding: 0;
}

#INFO_1 .info_hd ul li + li::before {
  content: '';
  width: 1px;
  height: 15px;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

#INFO_1 .info_hd ul a {
  display: block;
  padding: 0 10px;
  color: #fff;
  text-decoration: underline;
}

#INFO_1 .info_hd ul img {
  width: 15px;
  height: auto;
  vertical-align: middle;
  margin-right: 5px;
}

.lang_en #INFO_1 .info_hd ul li:nth-child(2) {
  display: none;
}

#INFO_1 .info__block {
  flex: 1;
  display: flex;
  min-width: 0;
}

#INFO_1 .info__text {
  font-size: 15px;
  font-size: 0.9375rem;
  flex: 1;
  position: relative;
  padding: 8px 12px 6px 10px;
  overflow: hidden;
  background-color: #fff;
  color: var(--color_text);
}

#INFO_1 .info__text p {
  display: block;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.5;
  position: absolute;
  left: 10px;
  top: 7px;
}

#INFO_1 .info__text p:hover.ticker {
  animation-play-state: paused;
}

#INFO_1 .info__btn {
  display: flex;
  background-color: #00a7e3;
  white-space: nowrap;
  border-radius: 0 3px 3px 0;
}

#INFO_1 .info__btn a {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 5px 20px 5px 10px;
  text-decoration: none;
}

#INFO_1 .info__btn a::before {
  content: '';
  display: inline-block;
  margin-right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 0 4.5px 7.8px;
  border-color: transparent transparent transparent #ffffff;
}

#INFO_1 .info__link {
  margin-left: 50px;
}

#INFO_1 .info__link p {
  margin: 7px 0 0;
}

#INFO_1 .info__link a {
  display: block;
  color: #fff;
}

#INFO_1 .info__link a img {
  vertical-align: middle;
  margin-right: 10px;
}

@media only screen and (max-width: 980px) {
  #INFO_1 .info__link {
    margin-left: 20px;
  }
  #INFO_1 .info__btn a {
    padding: 5px 5px 5px 5px;
  }
  #INFO_1 .info__btn a::before {
    display: none;
  }
  #INFO_1 .info__btn a .en {
    padding: 0 10px;
  }
}

@media only screen and (max-width: 640px) {
  #INFO_1 {
    display: block;
    padding: 7px 10px;
  }
  #INFO_1 .info__inner {
    display: block;
  }
  #INFO_1 .info__inner h3 {
    margin-bottom: 5px;
  }
  #INFO_1 .info__inner h3 img {
    width: 15px;
  }
  #INFO_1 .info_hd {
    margin-bottom: 5px;
  }
  #INFO_1 .info_hd h3 {
    font-size: 16px;
    font-size: 1rem;
    margin: 0;
  }
  #INFO_1 .info_hd h3 img {
    width: 12px;
    height: auto;
    margin-right: 5px;
  }
  #INFO_1 .info_hd ul {
    display: flex;
  }
  #INFO_1 .info__btn, #INFO_1 .info__link {
    display: none;
  }
  #INFO_1 .info__text {
    font-size: 14px;
    font-size: 0.875rem;
    height: 30px;
  }
}

/* ----- INFO 2 ----- */
#INFO_2 {
  display: flex;
  align-items: center;
  padding: 10px 0;
  background-color: #eaf1fb;
}

#INFO_2 .info__time {
  font-size: 15px;
  font-size: 0.9375rem;
  flex: 1;
  font-weight: bold;
  padding-left: 15px;
}

#INFO_2 .info__time p {
  margin: 0;
  padding: 0;
}

#INFO_2 .info__time img {
  margin-right: 10px;
}

#INFO_2 .info__trains {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}

#INFO_2 .info__trains ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

#INFO_2 .info__trains li {
  padding: 0 15px;
  margin: 0;
}

#INFO_2 .info__trains li + li {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

#INFO_2 .info__trains li > span {
  display: inline-block;
  padding: 5px 10px;
  margin-right: 10px;
  width: 90px;
  text-align: center;
  border-radius: 4px;
}

#INFO_2 .info__trains li i {
  font-style: normal;
}

#INFO_2 .info__trains li.train_1 span {
  color: var(--color_train_1_text);
  background-color: var(--color_train_1);
}

#INFO_2 .info__trains li.train_2 span {
  color: var(--color_train_2_text);
  background-color: var(--color_train_2);
}

#INFO_2 .info__trains li.train_3 span {
  color: var(--color_train_3_text);
  background-color: var(--color_train_3);
}

@media only screen and (max-width: 980px) {
  #INFO_2 {
    display: block;
    padding: 10px 0;
  }
  #INFO_2 .info__time {
    margin-bottom: 8px;
  }
  #INFO_2 .info__trains ul {
    justify-content: flex-end;
  }
  #INFO_2 .info__trains li {
    padding: 0 8px;
  }
}

@media only screen and (max-width: 640px) {
  #INFO_2 {
    padding: 5px 0;
  }
  #INFO_2 .info__time {
    font-size: 13px;
    font-size: 0.8125rem;
    padding-left: 10px;
    margin-bottom: 0;
  }
  #INFO_2 .info__time img {
    width: 15px;
    height: auto;
    vertical-align: middle;
    margin-right: 5px;
  }
  #INFO_2 .info__trains ul {
    display: block;
    font-size: 0;
  }
  #INFO_2 .info__trains li {
    font-size: 13px;
    font-size: 0.8125rem;
    display: inline-block;
    margin: 5px 0 0 8px;
    padding: 0;
    border: none !important;
  }
  #INFO_2 .info__trains li > span {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0;
    padding: 5px 3px;
    width: auto;
  }
  #INFO_2 .info__trains li i {
    display: inline;
    margin-left: 3px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* CONTENT
/* -------------------------------------------------------------------------*/
#CNT {
  background-color: var(--color_pg_backColor);
  border-top: 1px solid #d6e3e7;
}

#ROUTE_MAP {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 20px 160px;
  transition: opacity 0.3s ease;
  /*
    > div{
        border: 1px solid #f1f1f1;
    }
    */
  /* MAIN STATION */
  /* WIDTH */
  /*
    @media only screen and (max-width:640px){
        padding: 30px 15px 0 35px;

        .station{
            width: 35%;

        }

        .line, .line_info{
            width: 15%;
        }

        .train{
            &::after{
                width: (38%/140*100);
                padding-top: (20%/140*100);
            }
        }


        #ST_NANAO{
            .line_nanao{
                width: 7vw;
            }

            .station_nanao{
                span{
                    width: 32vw;
                }
            }
        }
    }
    */
}

#ROUTE_MAP .station {
  line-height: 1;
  position: relative;
  background: url(../img/line.png) left center repeat-x;
  /* TRAIN */
}

#ROUTE_MAP .station::after {
  content: '';
  display: block;
  width: 19px;
  height: 8px;
  background: url(../img/line.png) 0 0 no-repeat;
  position: absolute;
  right: -20px;
  top: calc(50% - 4px);
}

#ROUTE_MAP .station:last-child::after {
  display: none;
}

#ROUTE_MAP .station a.st {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #aaa;
  border-bottom: none;
  background-color: #fff;
  color: var(--color_text);
  text-decoration: none;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#ROUTE_MAP .station dl {
  margin: 0;
  padding: 0;
}

#ROUTE_MAP .station dt {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  padding: 10px 5px 7px;
  font-weight: bold;
  white-space: nowrap;
}

#ROUTE_MAP .station dt::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 5px;
  background-image: url(../img/station_logo.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  margin-left: -15px;
}

#ROUTE_MAP .station dd {
  font-size: 11px;
  font-size: 0.6875rem;
  position: relative;
  margin: 0;
  padding: 5px;
  color: #fff;
  background-color: var(--color_station);
  white-space: nowrap;
}

#ROUTE_MAP .station dd::before, #ROUTE_MAP .station dd::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
}

#ROUTE_MAP .station dd::before {
  background-image: url(../img/station_arw_1.png);
  left: 3px;
}

#ROUTE_MAP .station dd::after {
  background-image: url(../img/station_arw_2.png);
  right: 3px;
}

#ROUTE_MAP .station a.other_st {
  font-size: 14px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  margin: 0;
  padding: 1px 5px;
  text-align: center;
  background-color: #ebebeb;
  font-weight: bold;
  text-decoration: none;
  color: var(--color_text);
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid #9a9a9a;
}

#ROUTE_MAP .station a.other_st i {
  display: inline-block;
  font-style: normal;
  white-space: nowrap;
  margin: 2px 0;
}

#ROUTE_MAP .station .train {
  z-index: 1;
}

#ROUTE_MAP .station .train .name {
  background-color: var(--color_pg_backColor);
}

#ROUTE_MAP .station .train::after {
  animation: none !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

#ROUTE_MAP #ST_2 a.st, #ROUTE_MAP #ST_5 a.st, #ROUTE_MAP #ST_12 a.st, #ROUTE_MAP #ST_15 a.st, #ROUTE_MAP #ST_18 a.st {
  background-color: #fffccb;
}

#ROUTE_MAP .line {
  position: relative;
  z-index: 0;
  background: url(../img/line.png) left center repeat-x;
}

#ROUTE_MAP .line_info {
  display: flex;
  align-items: center;
  justify-content: right;
  text-align: center;
}

#ROUTE_MAP .line_info img {
  width: 100%;
  height: auto;
  max-width: 61px;
  margin-right: 5px;
  min-width: 50px;
}

#ROUTE_MAP .train {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 103px;
  height: 82px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  cursor: pointer;
}

#ROUTE_MAP .train::before {
  content: '';
  display: block;
  width: 13px;
  height: 17px;
  background-position: 0 0;
  background-size: 100% auto;
  position: absolute;
}

#ROUTE_MAP .train::after {
  content: '';
  display: block;
  width: 38px;
  height: 20px;
  background-position: 0 0;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  backface-visibility: hidden;
}

#ROUTE_MAP .train.multiple p.number::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: -2px;
}

#ROUTE_MAP .train.down {
  top: 4px;
}

#ROUTE_MAP .train.down.multiple p.number::after {
  background-image: url(../img/ic_mlt_down.png);
  right: -18px;
}

#ROUTE_MAP .train.down::after {
  top: 38px;
  background-image: url(../img/tbox_1_train.png);
  animation: train_anm_1 3s infinite linear;
}

#ROUTE_MAP .train.down::before {
  top: 35px;
  right: 5px;
  background-image: url(../img/tbox_1_arrw.png);
}

#ROUTE_MAP .train.up {
  bottom: 4px;
}

#ROUTE_MAP .train.up.multiple p.number::after {
  background-image: url(../img/ic_mlt_up.png);
  left: -18px;
}

#ROUTE_MAP .train.up::after {
  top: 61px;
  background-image: url(../img/tbox_2_train.png);
  animation: train_anm_2 3s infinite linear;
}

#ROUTE_MAP .train.up::before {
  top: 55px;
  left: 5px;
  background-image: url(../img/tbox_2_arrw.png);
}

#ROUTE_MAP .train.up .number {
  margin-top: 27px;
}

#ROUTE_MAP .train .number {
  font-size: 11px;
  font-size: 0.6875rem;
  position: relative;
  max-width: 70px;
  font-weight: bold;
  margin: 0 auto 3px;
  padding: 3px 2px 2px;
  line-height: 1;
  text-align: center;
  border-radius: 3px;
}

#ROUTE_MAP .train .name {
  font-size: 13px;
  font-size: 0.8125rem;
  margin: 0;
  text-align: center;
  color: #0099d1;
  line-height: 1.3;
}

#ROUTE_MAP .train .name .en {
  font-size: 11px;
  font-size: 0.6875rem;
}

#ROUTE_MAP .train .late {
  line-height: 1;
  font-size: 12px;
  font-size: 0.75rem;
  position: absolute;
  display: block;
  margin: 0;
  padding: 8px 2px;
  font-weight: bold;
  text-align: center;
  color: var(--color_train_3_text);
  background-color: var(--color_train_3);
  border-radius: 3px 0 0 3px;
}

#ROUTE_MAP .train .late span {
  display: block;
  margin-top: 5px;
}

#ROUTE_MAP .train .late i {
  display: block;
  font-style: normal;
  min-width: 10px;
  text-align: center;
}

#ROUTE_MAP .train .late i.ja {
  margin-top: 5px;
}

#ROUTE_MAP .train .late i.en {
  font-size: 13px;
  font-size: 0.8125rem;
}

#ROUTE_MAP .train.down .late {
  top: 0;
  left: 3px;
}

#ROUTE_MAP .train.up .late {
  top: 27px;
  right: 3px;
  border-radius: 0 3px 3px 0;
}

#ROUTE_MAP .train.local .number {
  color: #ffaa24;
  background-color: #3d3d3d;
}

#ROUTE_MAP .train.liner .number {
  color: #fff;
  background-color: #0042d7;
}

#ROUTE_MAP .train.delay .number {
  color: #fff;
  background-color: #ff0000;
}

#ROUTE_MAP #ST_NANAO {
  display: flex;
  position: absolute;
  z-index: -1;
  top: 93px;
  left: -90%;
}

#ROUTE_MAP #ST_NANAO .line_nanao {
  height: 205px;
  width: 3vw;
  background: url(../img/line_2.png) left bottom no-repeat;
}

#ROUTE_MAP #ST_NANAO .station_nanao {
  font-size: 14px;
  font-size: 0.875rem;
  flex: 1;
}

#ROUTE_MAP #ST_NANAO .station_nanao .st_nanao {
  position: relative;
  top: 175px;
}

#ROUTE_MAP #ST_NANAO .station_nanao span {
  display: flex;
  width: 13.3vw;
  align-items: center;
  justify-content: center;
  height: 55px;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #ebebeb;
  font-weight: bold;
  border: 1px solid #9a9a9a;
  max-width: 150px;
}

#ROUTE_MAP #ST_NANAO .station_nanao p {
  margin: 5px 0 0;
  text-align: center;
}

#ROUTE_MAP #ST_NANAO .train {
  left: 0;
  right: auto;
  bottom: auto;
  transform: none;
  top: 100px;
  max-width: 70px;
  height: 42px;
}

#ROUTE_MAP #ST_NANAO .train::after {
  animation: none;
  top: 40px;
}

#ROUTE_MAP #ST_NANAO .train .name {
  max-width: 70px;
  margin-left: 4px;
}

#ROUTE_MAP #ST_NANAO .train .late {
  top: 0;
  border-radius: 0;
}

#ROUTE_MAP #ST_NANAO .train::before {
  width: 17px;
  height: 13px;
  background-size: 100% auto;
}

#ROUTE_MAP #ST_NANAO .train.up {
  top: 105px;
  left: -75px;
}

#ROUTE_MAP #ST_NANAO .train.up .number {
  margin: 4px 0 2px;
}

#ROUTE_MAP #ST_NANAO .train.up .late {
  right: auto;
  left: 5px;
  top: 4px;
  transform: translateX(-100%);
  border-radius: 3px 0 0 3px;
}

#ROUTE_MAP #ST_NANAO .train.up::after {
  left: 40px;
  animation: train_anm_2 3s infinite linear;
}

#ROUTE_MAP #ST_NANAO .train.up::before {
  background-image: url(../img/tbox_2_arrw_nanao.png);
  top: -13px;
  left: 25px;
}

#ROUTE_MAP #ST_NANAO .train.up.multiple p.number::after {
  left: auto;
  right: -8px;
}

#ROUTE_MAP #ST_NANAO .train.down {
  left: 18px;
  top: 90px;
}

#ROUTE_MAP #ST_NANAO .train.down .number {
  margin: 0 0 4px;
}

#ROUTE_MAP #ST_NANAO .train.down .name {
  margin-left: 0;
}

#ROUTE_MAP #ST_NANAO .train.down .late {
  right: 1px;
  left: auto;
  transform: translateX(100%);
  border-radius: 0 3px 3px 0;
}

#ROUTE_MAP #ST_NANAO .train.down::before {
  background-image: url(../img/tbox_1_arrw_nanao.png);
  bottom: auto;
  top: 68px;
  left: 25px;
}

#ROUTE_MAP #ST_NANAO .train.down::after {
  left: 35px;
  animation: train_anm_1 3s infinite linear;
}

#ROUTE_MAP #ST_NANAO .train.down.multiple p.number::after {
  right: auto;
  left: -8px;
}

#ROUTE_MAP .station {
  width: 9%;
  height: 180px;
}

#ROUTE_MAP .line, #ROUTE_MAP .line_info {
  width: 5.285%;
  height: 180px;
}

@media only screen and (max-width: 1300px) {
  #ROUTE_MAP {
    padding-bottom: 0;
  }
  #ROUTE_MAP .station {
    width: 13%;
  }
  #ROUTE_MAP .line, #ROUTE_MAP .line_info {
    width: 7%;
  }
}

@media only screen and (max-width: 980px) {
  #ROUTE_MAP {
    padding: 50px 15px 0 30px;
  }
  #ROUTE_MAP .station {
    width: 18%;
  }
  #ROUTE_MAP .station::after {
    width: 15px;
    right: -15px;
  }
  #ROUTE_MAP .line, #ROUTE_MAP .line_info {
    width: 7%;
  }
  #ROUTE_MAP #ST_NANAO {
    left: -120%;
  }
  #ROUTE_MAP #ST_NANAO .line_nanao {
    width: 4vw;
  }
  #ROUTE_MAP #ST_NANAO .station_nanao span {
    width: 16vw;
  }
}

@media only screen and (max-width: 850px) {
  #ROUTE_MAP {
    padding-bottom: 150px;
  }
  #ROUTE_MAP .station {
    width: 23.33333%;
  }
  #ROUTE_MAP .line, #ROUTE_MAP .line_info {
    width: 10%;
  }
  #ROUTE_MAP #ST_NANAO .line_nanao {
    width: 5vw;
  }
  #ROUTE_MAP #ST_NANAO .station_nanao span {
    width: 22vw;
  }
  #ROUTE_MAP #ST_NANAO .train.up {
    top: 110px;
    left: -80px;
  }
}

@media only screen and (max-width: 640px) {
  #ROUTE_MAP {
    padding: 20px 10px 140px 20px;
    overflow-x: hidden;
    /* BACKGROUND COLOR */
    /* LEFT LINE */
    /*
        #LN_3, #LN_6, #LN_9, #LN_12, #LN_15, #LN_18{
            &::before{
                content: '';
                display: block;
                position: absolute;
                top: 0;
                bottom: 0;
                width: 20px;
                left: -20px;
                background: url(../img/line.png) left center repeat-x;
            }
        }
        */
    /* WIDTH - HEIGHT */
  }
  #ROUTE_MAP .station a.st {
    border: 1px solid #888888;
  }
  #ROUTE_MAP .station a.other_st {
    height: 43px;
  }
  #ROUTE_MAP .station dt {
    padding: 6px 2px 4px;
  }
  #ROUTE_MAP .station dt::before {
    display: none;
  }
  #ROUTE_MAP .station dd {
    padding: 3px 2px;
  }
  #ROUTE_MAP .station dd::before, #ROUTE_MAP .station dd::after {
    display: none;
  }
  #ROUTE_MAP .station::after {
    width: 16px;
  }
  #ROUTE_MAP .train::after {
    width: 25px;
    padding-top: 15px;
  }
  #ROUTE_MAP .train::before {
    width: 10px;
    height: 13px;
  }
  #ROUTE_MAP .train.down::before {
    top: 30px;
    right: -5px;
  }
  #ROUTE_MAP .train.up .number {
    margin-top: 0;
  }
  #ROUTE_MAP .train.up::before {
    top: 30px;
    left: -5px;
  }
  #ROUTE_MAP .train.up::after {
    top: 35px;
  }
  #ROUTE_MAP .train .late {
    position: absolute;
    display: block;
    margin: 0;
    font-weight: bold;
    font-size: 11px;
    font-size: 0.6875rem;
    padding: 4px 1px;
    border-radius: 2px 0 0 2px;
    font-weight: normal;
  }
  #ROUTE_MAP .train .late span {
    display: block;
    margin-top: 5px;
  }
  #ROUTE_MAP .train .late span i {
    font-style: normal;
  }
  #ROUTE_MAP .train.down .late {
    top: 0;
    left: -5px;
  }
  #ROUTE_MAP .train.up .late {
    top: 0;
    right: -5px;
    border-radius: 0 3px 3px 0;
  }
  #ROUTE_MAP #ST_NANAO {
    top: 98px;
  }
  #ROUTE_MAP #ST_NANAO .line_nanao {
    height: 145px;
  }
  #ROUTE_MAP #ST_NANAO .station_nanao .st_nanao {
    top: 125px;
  }
  #ROUTE_MAP #ST_NANAO .station_nanao span {
    width: 90px;
    height: 40px;
  }
  #ROUTE_MAP #ST_NANAO .train {
    width: 60px;
    height: 40px;
    top: 78px;
  }
  #ROUTE_MAP #ST_NANAO .train .name {
    width: 60px;
    margin: 3px 0 0;
  }
  #ROUTE_MAP #ST_NANAO .train .late {
    top: 0;
    border-radius: 0;
  }
  #ROUTE_MAP #ST_NANAO .train::before {
    width: 13px;
    height: 10px;
  }
  #ROUTE_MAP #ST_NANAO .train.up {
    top: 80px;
    left: -70px;
  }
  #ROUTE_MAP #ST_NANAO .train.up .number {
    margin: 4px 0 0;
  }
  #ROUTE_MAP #ST_NANAO .train.up::after {
    left: 25px;
  }
  #ROUTE_MAP #ST_NANAO .train.up::before {
    top: -10px;
    left: 25px;
  }
  #ROUTE_MAP #ST_NANAO .train.down {
    left: 20px;
    top: 60px;
  }
  #ROUTE_MAP #ST_NANAO .train.down .name {
    margin: 3px 0 0;
  }
  #ROUTE_MAP #ST_NANAO .train.down .number {
    margin: 0;
  }
  #ROUTE_MAP #ST_NANAO .train.down::after {
    top: 35px;
    left: 35px;
  }
  #ROUTE_MAP #ST_NANAO .train.down::before {
    top: 52px;
    left: 22px;
  }
  #ROUTE_MAP > * {
    border-bottom: 1px solid #c4d9df;
  }
  #ROUTE_MAP #LN_18, #ROUTE_MAP #LN_19, #ROUTE_MAP #LN_20,
  #ROUTE_MAP #ST_18, #ROUTE_MAP #ST_19, #ROUTE_MAP #ST_20 {
    border: none;
  }
  #ROUTE_MAP .train {
    width: 14vw;
    height: 50px;
  }
  #ROUTE_MAP .line, #ROUTE_MAP .line_info, #ROUTE_MAP .station {
    height: 155px;
  }
}

@media only screen and (max-width: 500px) {
  #ROUTE_MAP .station dt {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #ROUTE_MAP .station a.other_st {
    font-size: 13px;
    font-size: 0.8125rem;
    font-weight: normal;
  }
  #ROUTE_MAP .station a.other_st span.en {
    font-size: 11px;
    line-height: 1.2;
  }
  #ROUTE_MAP #ST_NANAO {
    left: -80%;
  }
  #ROUTE_MAP #ST_NANAO .station_nanao {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #ROUTE_MAP #ST_NANAO .station_nanao span {
    font-weight: normal;
  }
  #ROUTE_MAP #ST_NANAO .station_nanao .en {
    font-size: 11px;
  }
}

@keyframes train_anm_1 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-10%);
  }
}

@keyframes train_anm_2 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(-90%);
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* NEWS
/* -------------------------------------------------------------------------*/
#NEWS {
  border-top: 5px solid var(--color_hd);
  padding: 30px 50px;
  background-color: #eaf1fb;
}

#NEWS h4 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 20px;
  padding: 0;
}

#NEWS h4 img {
  margin-right: 10px;
}

#NEWS .news__text {
  padding: 20px;
  background-color: #fff;
}

#NEWS .news__text p {
  margin: 0;
}

#NEWS .news__text p + p {
  margin-top: 1rem;
}

@media only screen and (max-width: 980px) {
  #NEWS {
    padding: 25px 20px;
  }
  #NEWS .news__text {
    padding: 15px;
  }
}

@media only screen and (max-width: 640px) {
  #NEWS {
    padding: 15px 10px;
  }
  #NEWS .news__text {
    padding: 10px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* OTHERS
/* -------------------------------------------------------------------------*/
#OTHERS {
  padding: 30px 50px 40px;
  background-color: #3b6593;
}

#OTHERS h4 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 20px;
  padding: 0;
  color: #fff;
}

#OTHERS h4 img {
  margin-right: 10px;
}

#OTHERS ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

#OTHERS li {
  width: 25%;
  margin: 0;
  padding: 0;
}

#OTHERS li a {
  display: block;
  margin: 7px;
  padding: 15px 10px 13px;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 3px 3px 0 #82b9e8;
  text-decoration: none;
  color: #2d6eb3;
  font-weight: bold;
  text-align: center;
  transition: box-shadow 0.2s ease;
}

#OTHERS li a:hover {
  box-shadow: none;
}

#OTHERS ul.en {
  font-size: 14px;
  font-size: 0.875rem;
}

@media only screen and (max-width: 980px) {
  #OTHERS {
    padding: 25px 20px 35px;
  }
}

@media only screen and (max-width: 850px) {
  #OTHERS li {
    width: 33.33333%;
  }
}

@media only screen and (max-width: 640px) {
  #OTHERS {
    padding: 20px 10px 25px;
  }
  #OTHERS li {
    width: 50%;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* FOOTER
/* -------------------------------------------------------------------------*/
#FT {
  padding: 20px 50px;
  background-color: #474747;
  color: #a3a3a3;
}

#FT a {
  color: #a3a3a3;
}

#FT address {
  font-size: 13px;
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
  font-style: normal;
}

#FT address .logo {
  margin: 0 10px 0 0;
}

#FT address .logo a {
  display: block;
}

#FT address .logo a img {
  width: 195px;
  height: auto;
}

#FT address .adrs, #FT address .tel {
  margin: 0;
}

#FT .copyright {
  margin: 0;
  text-align: right;
}

#FT .copyright small {
  font-size: 12px;
  font-size: 0.75rem;
}

#FT .copyright a {
  text-decoration: none;
}

@media only screen and (max-width: 980px) {
  #FT address {
    display: block;
    text-align: center;
  }
  #FT .copyright {
    text-align: center;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* TIME TABLE
/* -------------------------------------------------------------------------*/
.time_table {
  padding: 0 20px;
}

.time_table__inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
}

.time_table__block {
  width: 50%;
}

.time_table__block table {
  border-collapse: collapse;
}

.time_table__block th, .time_table__block td {
  padding: 5px;
  border-bottom: 2px solid var(--color_pg_backColor);
}

.time_table__block th {
  background-color: #333;
  color: #fff;
}

.time_table__block ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* MODAL
/* -------------------------------------------------------------------------*/
/*
html.modal_opened{
    &, body{
        overflow: hidden;
    }

    .modal{
        display: flex;
    }
}

html.modal_opened_2{
    &, body{
        overflow: hidden;
    }

    .modal_2{
        display: flex;
    }
}

.modal, .modal_2{
    display: none;
    overflow: hidden;
    
    position: fixed;
    align-items: center;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    background-color: rgba(0,0,0,0.6);

    .close {
        position: absolute;
        top: -30px;
        right: 0px;
        cursor: pointer;

        img{
            width: 25px;
            height: 25px;
        }
    }

    &__header{
        background-color: var(--color_hd);
        color: #fff;
        padding: 25px;

        &__inner{
            display: flex;
        }

        .title{
            @include ftz(20);
            font-weight: bold;
            margin: 0;
        }

        .info{
            flex: 1;
            margin: 0;
            text-align: right;
        }
    }
}

.modal_cnt{
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    background-color: #fff;
    margin: 0 auto;
}

.tp_timeTable{
    padding: 15px;


    &_trainName{
        display: flex;
        border-bottom: 1px solid #000;
        padding-bottom: 10px;

        .num, .type{
            margin: 0 30px 0 0;
            font-weight: bold;

            span{
                display: inline-block;
                margin-right: 10px;
                padding: 5px 10px;
                line-height: 1;
                color: #fff;
                border-radius: 2px;
                background-color: #444444;
            }
        }
    }

    &_info{
        display: flex;
        margin: 10px 0;

        .station{
            flex: 1;
            margin: 0;
            font-weight: bold;
        }

        .info{
            @include ftz(14);
            margin: 0;
        }

        .arw{
            padding: 0 5px;
            img{
                width: 25px;
                height: auto;
                vertical-align: middle;
            }
        }
    }
}

.tp_timeTable_cnt{
    &__header{
        display: flex;
        background-color: var(--color_hd);
        color: #fff;
        margin-left: 5px;
        padding-right: 20px;
        line-height: 1;
        border-radius: 3px 3px 0 0;

        p{
            width: 40%;
            margin: 0;
            padding: 10px 5px 8px;
            text-align: center;

            &:nth-child(3){
                width: 20%;
            }
        }
    }

    &__inner{
        bottom: 0;
        padding-top: 8px;
        overflow-y: auto;
        height: calc(100vh - 350px);

        table{
            line-height: 1;
            width: 100%;
            border-collapse: separate;
            border-spacing: 5px 0;

        }

        th, td{
            width: 40%;
            border: 1px solid #535353;
            padding: 5px;
            text-align: center;
            vertical-align: middle;
            border-radius: 3px;
        }

        th{
            background-color: #e8f2f5;
            
            p{
                margin: 0;
            }

            .name{
                @include ftz(14);
                margin-top: 2px;
            }

            .ruby{
                @include ftz(12);
                margin-top: 3px;
                font-weight: normal;
            }
        }

        .time{
            @include ftz(14);
            font-weight: bold;
        }

        .status{
            position: relative;
            border: none;
            width: 20%;
            background-image: url(../img/rnd_line.png);
            background-repeat: no-repeat;
            background-position: center top;

            &::before{
                content: '';
                display: block;
                width: 27px;
                height: 27px;
                background-image: url(../img/rnd_0.png);
                background-position: 0 0;
                background-repeat: no-repeat;
                background-size: 100% auto;

                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 1;
                
            }
        }

        tr.line{
            th, td{
                border: none;
                padding: 0;
                background-color: transparent;
                height: 8px;
            }

            .status{
                &::before{
                    display: none;
                }
            }
        }

        tr.in{
            .status{
                &::before{
                    display: block;
                    background-image: url(../img/rnd_1.gif);
                }
            }
        }

        tr:first-child{
            .status{
                background-position: center top 15px; 
            }
        }

        tr:last-child{
            .status{
                background-position: center bottom 15px; 
            }
        }

    }



}

.modal__select{
    list-style: none;
    margin: 0;
    padding: 20px;

    li{
        margin: 10px 0;

        a{
            display: block;
            padding: 5px 20px;
            text-decoration: none;
            border: 1px solid #b6b6b6;
            color: var(--color_text);
            border-radius: 5px;
            box-shadow: 3px 3px 0 #c7c7c7;
            transition: all 0.2s ease;

            &:hover{
                box-shadow: none;
                border-color: var(--color_hd);
            }

            p{
                margin: 0;
            }
        }
    }

    .train{
        @include ftz(15);
        margin-bottom: 5px;
    }

    .station{
        .name{
            display: inline-block;
            font-weight: bold;

            i{
                @include ftz(12);
                display: block;
                font-style: normal;
                font-weight: normal;
                line-height: 1;
            }
        }

        .arw{
            img{
                width: 25px;
                height: auto;
                margin-top: -4px;
                vertical-align: middle;
            }
        }

    }

}
*/
html.modal_opened, html.modal_opened body {
  overflow: hidden;
}

.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  align-items: center;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal .close {
  position: absolute;
  top: -30px;
  right: 0px;
  cursor: pointer;
}

.modal .close img {
  width: 25px;
  height: 25px;
}

.modal__header {
  background-color: var(--color_hd);
  color: #fff;
  padding: 25px;
}

.modal__header__inner {
  display: flex;
}

.modal__header .title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.modal__header .info {
  flex: 1;
  margin: 0;
  text-align: right;
}

.modal__body {
  position: relative;
  overflow-y: auto;
  height: 70vh;
  padding: 10px 20px;
}

@media only screen and (max-width: 640px) {
  .modal {
    padding: 5px;
  }
  .modal__header {
    padding: 10px 15px;
  }
  .modal__header .title {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.modal_cnt {
  position: relative;
  width: 100%;
  max-width: 700px;
  background-color: #fff;
  margin: 0 auto;
}

.tp_timeTable {
  padding: 15px;
}

.tp_timeTable_trainName {
  display: flex;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
}

.tp_timeTable_trainName .num, .tp_timeTable_trainName .type {
  margin: 0 30px 0 0;
  font-weight: bold;
}

.tp_timeTable_trainName .num span, .tp_timeTable_trainName .type span {
  display: inline-block;
  margin-right: 10px;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
  border-radius: 2px;
  background-color: #444444;
}

.tp_timeTable_info {
  margin: 10px 0;
}

.tp_timeTable_info .station {
  flex: 1;
  display: inline-block;
  margin: 0;
  font-weight: bold;
}

.tp_timeTable_info .info {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  display: inline-block;
}

.tp_timeTable_info .arw {
  padding: 0 5px;
}

.tp_timeTable_info .arw img {
  width: 25px;
  height: auto;
  vertical-align: middle;
}

@media only screen and (max-width: 640px) {
  .tp_timeTable {
    padding: 15px 8px;
  }
  .tp_timeTable_trainName .num {
    margin: 0;
  }
  .tp_timeTable_trainName .type {
    margin-left: 20px;
  }
  .tp_timeTable_trainName .num span, .tp_timeTable_trainName .type span {
    font-size: 13px;
    font-size: 0.8125rem;
    margin-right: 8px;
    padding: 5px 8px;
  }
}

.tp_timeTable_cnt__header {
  display: flex;
  background-color: var(--color_hd);
  color: #fff;
  margin-left: 5px;
  padding-right: 20px;
  line-height: 1;
  border-radius: 3px 3px 0 0;
}

.tp_timeTable_cnt__header p {
  width: 40%;
  margin: 0;
  padding: 10px 5px 8px;
  text-align: center;
  white-space: nowrap;
}

.tp_timeTable_cnt__header p:nth-child(3) {
  width: 20%;
}

.tp_timeTable_cnt__inner {
  bottom: 0;
  padding-top: 8px;
  overflow-y: auto;
  height: calc(100vh - 350px);
}

.tp_timeTable_cnt__inner table {
  line-height: 1;
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px 0;
}

.tp_timeTable_cnt__inner th, .tp_timeTable_cnt__inner td {
  width: 40%;
  border: 1px solid #535353;
  padding: 5px;
  text-align: center;
  vertical-align: middle;
  border-radius: 3px;
}

.tp_timeTable_cnt__inner th {
  background-color: #e8f2f5;
}

.tp_timeTable_cnt__inner th p {
  margin: 0;
}

.tp_timeTable_cnt__inner th .name {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 2px;
}

.tp_timeTable_cnt__inner th .ruby {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 3px;
  font-weight: normal;
}

.tp_timeTable_cnt__inner .time {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
}

.tp_timeTable_cnt__inner .status {
  position: relative;
  border: none;
  width: 20%;
  background-image: url(../img/rnd_line_1.png);
  background-repeat: no-repeat;
  background-position: center top;
}

.tp_timeTable_cnt__inner .status::before {
  content: '';
  display: block;
  width: 27px;
  height: 27px;
  background-image: url(../img/rnd_1.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.tp_timeTable_cnt__inner .status div {
  font-size: 12px;
  font-size: 0.75rem;
  position: absolute;
  top: 50%;
  left: calc(50% + 20px);
  transform: translateY(-50%);
  padding: 5px 2px;
  background-color: var(--color_train_3);
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
  min-width: 15px;
}

.tp_timeTable_cnt__inner .status div::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 6.9px 4px 0;
  border-color: transparent var(--color_train_3) transparent transparent;
  position: absolute;
  top: 50%;
  left: calc(50% - 14px);
  transform: translateY(-50%);
}

.tp_timeTable_cnt__inner .status div i {
  display: block;
  font-style: normal;
}

.tp_timeTable_cnt__inner .status div i.ja {
  margin-top: 5px;
}

.tp_timeTable_cnt__inner .status div i.en {
  font-size: 12px;
  margin-bottom: 2px;
}

.tp_timeTable_cnt__inner tr.notIR th {
  background-color: #f1f1f1;
}

.tp_timeTable_cnt__inner tr.notIR .status {
  background-image: url(../img/rnd_line_0.png);
}

.tp_timeTable_cnt__inner tr.notIR .status::before {
  background-image: url(../img/rnd_0.png);
}

.tp_timeTable_cnt__inner tr.IR-start .status {
  background-image: url(../img/line_no_ir.png);
  background-position: center center;
}

.tp_timeTable_cnt__inner tr.IR-end .status {
  background-image: url(../img/line_ir_no.png);
  background-position: center center;
}

.tp_timeTable_cnt__inner tr.line th, .tp_timeTable_cnt__inner tr.line td {
  border: none;
  padding: 0;
  background-color: transparent;
  height: 8px;
}

.tp_timeTable_cnt__inner tr.line .status::before {
  display: none;
}

.tp_timeTable_cnt__inner tr.in .status::before {
  display: block;
  background-image: url(../img/rnd_ir.gif);
}

.tp_timeTable_cnt__inner tr.in.notIR .status::before {
  display: block;
  background-image: url(../img/rnd_notir.gif);
}

.tp_timeTable_cnt__inner tr:first-child .status {
  background-position: center top 15px;
}

.tp_timeTable_cnt__inner tr:last-child .status {
  background-position: center bottom 15px;
}

@media only screen and (max-width: 640px) {
  .tp_timeTable_cnt__header {
    font-size: 14px;
    font-size: 0.875rem;
    padding-right: 5px;
  }
}

.modal__select {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.modal__select li {
  margin: 10px 0;
}

.modal__select li a {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  border: 1px solid #b6b6b6;
  color: var(--color_text);
  border-radius: 5px;
  box-shadow: 3px 3px 0 #c7c7c7;
  transition: all 0.2s ease;
}

.modal__select li a:hover {
  box-shadow: none;
  border-color: var(--color_hd);
}

.modal__select li a p {
  margin: 0;
}

.modal__select .train {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 5px;
}

.modal__select .station .name {
  display: inline-block;
  font-weight: bold;
}

.modal__select .station .name i {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
}

.modal__select .station .arw img {
  width: 25px;
  height: auto;
  margin-top: -4px;
  vertical-align: middle;
}

.modal__time {
  font-size: 15px;
  font-size: 0.9375rem;
  flex: 1;
  padding: 10px;
  font-weight: bold;
  background-color: #eaf1fb;
}

.modal__time p {
  margin: 0;
  padding: 0;
}

.modal__time img {
  margin-right: 10px;
}

.modal__infoBox {
  padding: 15px 5px;
  border-bottom: 1px dotted #8d8d8d;
}

.modal__infoBox .date {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 0 5px;
}

.modal__infoBox .text {
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* DELAY
/* -------------------------------------------------------------------------*/
.pg_cnt {
  padding: 20px 20px 50px;
}

@media only screen and (max-width: 980px) {
  .pg_cnt {
    padding: 20px 15px 40px;
  }
}

@media only screen and (max-width: 640px) {
  .pg_cnt {
    padding: 20px 10px 40px;
  }
}

.pg_btn_back {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  text-align: left;
  margin-left: -20px;
}

.pg_btn_back p {
  margin: 0;
}

.pg_btn_back a {
  display: inline-block;
  padding: 10px 20px 10px 10px;
  text-decoration: none;
  background-color: var(--color_btn_2);
  color: #fff;
  border-radius: 0 5rem 5rem 0;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.05);
}

.pg_btn_back a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4.5px 7.8px 4.5px 0;
  border-color: transparent #ffffff transparent transparent;
  vertical-align: middle;
  margin-right: 10px;
}

.delay_list {
  margin-top: 30px;
}

.delay_list h4 {
  font-size: 20px;
  font-size: 1.25rem;
  margin: 0 0 20px;
  padding-left: 10px;
  border-left: 5px solid var(--color_hd);
}

.delay_date {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}

.delay_date p {
  margin: 0 0 10px;
}

.delay_table {
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.3;
}

.delay_table table {
  width: 100%;
  border-collapse: collapse;
}

.delay_table th, .delay_table td {
  padding: 10px 5px;
  border: 1px solid #3b3b3b;
  text-align: center;
}

.delay_table th {
  color: #fff;
  background-color: #747474;
}

.delay_table td {
  background-color: #fff;
}

.delay_table td a {
  font-weight: bold;
}

.delay_table td a img {
  vertical-align: middle;
  margin-right: 5px;
}

.delay_btn, .delay_btn_2 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-top: 2rem;
}

.delay_btn p, .delay_btn_2 p {
  margin: 0;
}

.delay_btn a, .delay_btn_2 a {
  display: inline-block;
  padding: 12px 40px;
  text-decoration: none;
  background-color: #fff;
  color: var(--color_btn_text);
  border: 2px solid var(--color_btn_text);
  border-radius: 5rem;
}

.delay_btn a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 0 5.5px 9.5px;
  border-color: transparent transparent transparent var(--color_btn_text);
  margin-left: 10px;
  vertical-align: middle;
  transform: translateY(-2px);
}

.delay_btn_2 a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5.5px 9.5px 5.5px 0;
  border-color: transparent var(--color_btn_text) transparent transparent;
  margin-right: 10px;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* PRINT
/* -------------------------------------------------------------------------*/
#PRINT_HD, #PRINT_CNT {
  width: 600px;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  #PRINT_HD, #PRINT_CNT {
    width: auto;
    padding: 0 10px;
  }
}

#PRINT_HD {
  display: flex;
  margin-top: 20px;
}

#PRINT_HD h1 {
  margin: 0;
  padding: 0;
}

#PRINT_HD h1 img {
  width: 250px;
  height: auto;
}

#PRINT_HD .hd__btn {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  flex: 1;
}

#PRINT_HD .hd__btn ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

#PRINT_HD .hd__btn li {
  margin: 0 3px;
}

#PRINT_HD .hd__btn a {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  background-color: var(--color_hd);
  color: #fff;
  border-radius: 3px;
}

#PRINT_HD .hd__btn a img {
  width: 27px;
  height: auto;
  margin-right: 5px;
}

@media only screen and (max-width: 640px) {
  #PRINT_HD {
    display: block;
    margin-top: 10px;
  }
  #PRINT_HD h1 img {
    width: 150px;
  }
  #PRINT_HD .hd__btn {
    font-size: 16px;
    font-size: 1rem;
  }
  #PRINT_HD .hd__btn a {
    padding: 3px 10px;
  }
  #PRINT_HD .hd__btn a img {
    width: 15px;
    vertical-align: middle;
  }
}

.print_cnt__inner {
  border: 2px solid #a5a5a5;
  padding: 20px;
  margin-top: 20px;
}

.print_cnt__inner h2 {
  font-size: 26px;
  font-size: 1.625rem;
  text-align: center;
  margin: 20px 0;
}

.print_cnt__inner ul {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 1rem 0;
  padding: 0 0 0 10px;
  list-style: none;
}

.print_cnt__inner ul li {
  position: relative;
  margin: 0;
  padding: 0 0 0 10px;
}

.print_cnt__inner ul li::before {
  content: '';
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 10px;
}

@media only screen and (max-width: 640px) {
  .print_cnt__inner {
    margin-top: 10px;
    padding: 10px;
    border-width: 1px;
  }
  .print_cnt__inner h2 {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.print_delay__text {
  font-size: 18px;
  font-size: 1.125rem;
  margin-top: 2rem;
}

.print_delay__text p {
  margin: 1.5rem 0;
}

.print_delay__info {
  font-weight: bold;
  padding: 20px;
  border: 1px solid #cfcfcf;
}

.print_delay__date {
  font-size: 26px;
  font-size: 1.625rem;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px dotted #575757;
}

.print_delay__date span {
  font-size: 20px;
  font-size: 1.25rem;
  margin-right: 10px;
}

.print_delay__station {
  font-size: 26px;
  font-size: 1.625rem;
  margin: 1rem 0 0;
  padding-bottom: 10px;
  border-bottom: 1px dotted #575757;
}

.print_delay__station span {
  font-size: 22px;
  font-size: 1.375rem;
}

.print_delay__time {
  font-size: 26px;
  font-size: 1.625rem;
  margin: 1rem 0 0;
  color: #e60f0f;
}

.print_delay__cmp {
  font-size: 15px;
  font-size: 0.9375rem;
  text-align: right;
}

.print_delay__cmp p {
  margin: 0;
}

@media only screen and (max-width: 640px) {
  .print_delay__text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 1rem;
  }
  .print_delay__text p {
    margin: 1rem 0;
  }
  .print_delay__info {
    padding: 15px;
  }
  .print_delay__date {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .print_delay__date span {
    font-size: 16px;
    font-size: 1rem;
    margin-right: 10px;
  }
  .print_delay__station {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .print_delay__time {
    font-size: 18px;
    font-size: 1.125rem;
  }
}

#PRINT_FT {
  font-size: 13px;
  font-size: 0.8125rem;
  margin-top: 2rem;
  padding: 5px;
  background-color: #868686;
  color: #fff;
  text-align: center;
}

#PRINT_FT p {
  margin: 0;
}

@media print {
  .no_print {
    display: none;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* TIME TABLE
/* -------------------------------------------------------------------------*/
.timeTable_station {
  display: flex;
  margin: 20px 0;
  padding: 20px;
  color: #fff;
  background-color: #363636;
}

.timeTable_station h2 {
  flex: 1;
  margin: 0;
}

.timeTable_station p {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0;
  text-align: right;
}

.timeTable {
  display: flex;
  /* TIME TABLE LI */
}

.timeTable__cell {
  width: 49.5%;
  background-color: #f3f0e8;
}

.timeTable__cell:nth-child(1) {
  margin-right: 0.5%;
}

.timeTable__cell:nth-child(2) {
  margin-left: 0.5%;
}

.timeTable__tbl {
  border-collapse: collapse;
  width: 100%;
  line-height: 1;
}

.timeTable__tbl tr:nth-child(even) td {
  background-color: #e7e6e6;
}

.timeTable__tbl th, .timeTable__tbl td {
  border-bottom: 1px solid #fff;
}

.timeTable__tbl th {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  width: 40px;
  background-color: #000;
  text-align: center;
  color: #fff;
}

.timeTable__tbl td {
  height: 56px;
  padding-left: 10px;
  background-color: #fff;
}

.timeTable__tbl ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: flex-start;
}

.timeTable__tbl li {
  margin: 0;
  padding: 5px 0;
  min-width: 70px;
  width: 14.28571%;
}

.timeTable__tbl li a {
  display: block;
  text-decoration: none;
  color: var(--color_text);
}

.timeTable__title_1, .timeTable__title_2, .timeTable__title_3 {
  color: #fff;
  text-align: center;
  padding: 15px 10px 12px;
  margin-bottom: 2px;
}

.timeTable__title_1 h3, .timeTable__title_2 h3, .timeTable__title_3 h3 {
  font-size: 23px;
  font-size: 1.4375rem;
  margin: 0;
}

.timeTable__title_1 h3 span, .timeTable__title_2 h3 span, .timeTable__title_3 h3 span {
  font-size: 16px;
  font-size: 1rem;
}

.timeTable__title_1 {
  background-color: #0070c0;
}

.timeTable__title_2 {
  background-color: #b7282e;
}

.timeTable__title_3 {
  background-color: #009900;
}

.timeTable__li_1 {
  display: flex;
  align-items: baseline;
}

.timeTable__trackN {
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 3px;
  transform: translateY(-2px);
}

.timeTable__holiday {
  margin-left: 2px;
  transform: translateY(-2px);
}

.timeTable__time {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 3px;
}

.timeTable__li_2 {
  font-size: 12px;
  font-size: 0.75rem;
}

.timeTable__li_2 p {
  margin: 0;
}

.timeTable__red, .timeTable__red a {
  color: #c00 !important;
}

.timeTable__blue, .timeTable__blue a {
  color: #00b0ee !important;
}

.timeTable__notice {
  padding: 10px;
}

@media only screen and (max-width: 980px) {
  .timeTable {
    display: block;
  }
  .timeTable__cell {
    width: 100%;
  }
  .timeTable__cell:nth-child(1) {
    margin-right: 0;
  }
  .timeTable__cell:nth-child(2) {
    margin-left: 0;
    margin-top: 50px;
  }
}

@media only screen and (max-width: 640px) {
  .timeTable__time {
    font-size: 20px;
    font-size: 1.25rem;
  }
  .timeTable__tbl th {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .timeTable__tbl td {
    height: 45px;
  }
  .timeTable__tbl li {
    min-width: 60px;
  }
}

.clr_red {
  color: #c00;
}

.clr_blue {
  color: #00b0ee;
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* ALERT
/* -------------------------------------------------------------------------*/
#IR_alert {
  position: fixed;
  z-index: 2000;
  right: 0;
  bottom: 5px;
  overflow: hidden;
  pointer-events: none;
}

#IR_alert .ir_alert_inner {
  padding: 20px 20px 20px 40px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 5px 0 0 5px;
  opacity: 0;
  transition: opacity 0.2s;
}

#IR_alert .ir_alert_inner::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/ic_info.png) 0 0 no-repeat;
  background-size: cover;
  position: absolute;
  top: 20px;
  left: 10px;
}

#IR_alert .ir_alert_text p {
  margin: 0;
  font-weight: bold;
}

#IR_alert button {
  position: absolute;
  right: 0;
  top: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 3px;
  appearance: none;
  color: #fff;
  line-height: 1;
  font-weight: bold;
}

body.noData #IR_alert {
  pointer-events: auto;
}

body.noData #IR_alert .ir_alert_inner {
  opacity: 1;
}

@media only screen and (max-width: 640px) {
  #IR_alert .ir_alert_inner {
    padding: 10px 20px 10px 35px;
  }
  #IR_alert .ir_alert_inner::before {
    width: 20px;
    height: 20px;
    top: 11px;
    left: 10px;
  }
}

/* -------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------*/
/* HELP
/* -------------------------------------------------------------------------*/
#MDL_help ul {
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

#MDL_help ul li {
  margin: 0;
  padding: 0 0 0 15px;
  position: relative;
  margin: 10px 0;
}

#MDL_help ul li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: var(--color_btn_text);
  position: absolute;
  left: 0;
  top: 8px;
}

#MDL_help figure {
  margin: 30px 0;
  padding: 0;
  text-align: center;
}

#MDL_help figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  border: 2px solid #e6e6e6;
}

/* -------------------------------------------------------------------------*/
