@charset "UTF-8";

.columnBox {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr);
}
.columnBox.column_sp02 {
  grid-template-columns: repeat(2, 1fr);
}
.columnBox.column_sp03 {
  grid-template-columns: repeat(3, 1fr);
}
.columnBox.column_sp04 {
  grid-template-columns: repeat(4, 1fr);
}

.columnImgBox img {
  margin: auto;
}

.borderContainer {
  border: 1px solid #333333;
  width: fit-content;
  padding: 0.25em 0.5em;
}

.backButtonWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.backButton {
  background-color: #3fa9f5;
  color: #fff;
  display: block;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: none;
  max-width: 200px;
  width: 100%;
  margin: auto;
  padding: 10px;
}
.backButtonWrap > .backButton {
  margin: inherit;
}

.mapScrollOuter {
  margin-left: auto;
  margin-right: auto;
  overflow-x: scroll;
  white-space: nowrap;
}
.mapScrollOuter:before {
  content: "※スクロールしてご覧ください。";
  font-size: 1.4rem;
  display: block;
  margin-bottom: 5px;
}

.imageMap.imgBorder {
  border: 1px solid #ccc;
}
.imageMap img {
  margin: auto;
}

.map {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.wideMap {
  width: 1700px;
}

.mapTop, .mapMiddle, .mapBottom {
  display: grid;
  gap: 5px;
}
.mapTop.mapColumn_02, .mapMiddle.mapColumn_02, .mapBottom.mapColumn_02 {
  grid-template-columns: repeat(2, 1fr);
  padding-left: 10%;
  padding-right: 10%;
}
.mapTop.centerColumn_03, .mapMiddle.centerColumn_03, .mapBottom.centerColumn_03 {
  grid-template-columns: repeat(3, 1fr);
  padding-left: 10%;
  padding-right: 10%;
}
.mapTop.leftColumn_02, .mapMiddle.leftColumn_02, .mapBottom.leftColumn_02 {
  grid-template-columns: repeat(2, 1fr);
  padding-right: 15%;
}
.mapTop.rightColumn_02, .mapMiddle.rightColumn_02, .mapBottom.rightColumn_02 {
  grid-template-columns: repeat(2, 1fr);
  padding-left: 15%;
}
.mapTop.mapCenterColumn_02, .mapMiddle.mapCenterColumn_02, .mapBottom.mapCenterColumn_02 {
  grid-template-columns: 1fr 76% 1fr;
}
.mapTop.wideMapCenterColumn, .mapMiddle.wideMapCenterColumn, .mapBottom.wideMapCenterColumn {
  grid-template-columns: 1fr 1600px 1fr;
}
.mapTop.wideMapLeftColumn, .mapMiddle.wideMapLeftColumn, .mapBottom.wideMapLeftColumn {
  grid-template-columns: 1600px 1fr;
}
.mapTop.mapLeftColumn_02, .mapMiddle.mapLeftColumn_02, .mapBottom.mapLeftColumn_02 {
  grid-template-columns: 85% 1fr;
}
.mapTop.mapRightColumn_02, .mapMiddle.mapRightColumn_02, .mapBottom.mapRightColumn_02 {
  grid-template-columns: 1fr 85%;
}

.mapTop + .mapMiddle {
  margin-top: 5px;
}

.mapMiddle + .mapBottom {
  margin-top: 5px;
}

.mapItem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mapItemTop {
  align-items: flex-start;
}

.mapItemRight {
  justify-content: right;
  text-align: right;
}

.mapItemBottom {
  align-items: flex-end;
}

.mapItemLeft {
  justify-content: left;
  text-align: left;
}

.mapNextLink {
  display: grid;
  gap: 5px;
  align-items: center;
  line-height: 1.2;
  font-size: 1.2rem;
}

.arrowPositionTop {
  grid-template-rows: 16px 1fr;
}
.arrowPositionTop:before {
  content: "";
  display: block;
  background-color: red;
  width: 16px;
  height: 13.8564064606px;
}

.arrowPositionRight {
  grid-template-columns: 1fr 16px;
}
.arrowPositionRight:after {
  content: "";
  display: block;
  background-color: red;
  width: 16px;
  height: 13.8564064606px;
}

.arrowPositionBottom {
  grid-template-rows: 1fr 16px;
}
.arrowPositionBottom:after {
  content: "";
  display: block;
  background-color: red;
  width: 16px;
  height: 13.8564064606px;
}

.arrowPositionLeft {
  grid-template-columns: 16px 1fr;
}
.arrowPositionLeft:before {
  content: "";
  display: block;
  background-color: red;
  width: 16px;
  height: 13.8564064606px;
}

.arrowTop:before, .arrowTop:after {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.arrowRight:before, .arrowRight:after {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.arrowBottom:before, .arrowBottom:after {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.arrowLeft:before, .arrowLeft:after {
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  margin: 0 0 0 auto;
}

.arrowUpRight:before, .arrowUpRight:after {
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.arrowUpLeft:before, .arrowUpLeft:after {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  margin: 0 0 0 auto;
}

.arrowLowerRight:before, .arrowLowerRight:after {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.arrowLowerLeft:before, .arrowLowerLeft:after {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  margin: 0 0 0 auto;
}

.find_label {
  background-color: #083E8E;
  color: #fff;
  padding: 5px 18px;
  text-align: left;
}
.find_label + h2 {
  border: 1px solid #083E8E;
  font-size: 2rem;
  padding: 10px 20px;
  margin: 0 0 40px;
}

.find_control {
  height: 57px;
  border: 1px solid #C8C8C8;
  padding: 10px 22px;
  display: inline-block;
  width: 100%;
}

.box_button_action {
  display: inline-block;
  margin-top: 10px;
}
.box_button_action input {
  background-color: #F5F5F5;
  border: 1px solid #C8C8C8;
  border-radius: 5px;
  text-align: center;
  min-width: 150px;
  height: 57px;
  cursor: pointer;
}

.toggle_lang {
  text-align: left;
  margin: 40px 0 0;
}
.toggle_lang > strong:nth-of-type(1) {
  font-weight: bold;
  margin: 0 10px 0 0;
}
.toggle_lang span strong {
  background-color: #3FA9F5;
  color: #fff;
  font-size: 1.4rem;
  display: inline-block;
  padding: 4px 20px;
}
.toggle_lang span a {
  background-color: #D9D9D9;
  font-size: 1.4rem;
  display: inline-block;
  padding: 4px 20px;
  text-decoration: none;
  color: inherit;
}

.error {
  margin-top: 20px;
}
.error li {
  color: #D71E1E;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0 5px;
}
.error li:before {
  background-image: url(../images/err.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  width: 16px;
  height: 20px;
}

.city_name {
  background-color: #DCF0FF;
  padding: 7px 18px;
  font-size: 2rem;
  line-height: 1.5;
  margin: 50px 0 20px;
}

.busstopTable {
  width: 100%;
}
.busstopTable tr {
  width: 100%;
  vertical-align: top;
}
.busstopTable td {
  display: block;
}

.from_busstop {
  width: 100%;
}

.icon_from {
  width: 100px;
  padding: 30px 10px;
  transform: rotate(90deg);
}
.icon_from img {
  margin: auto;
}

.from_busstop_label {
  border: 1px solid #083E8E;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: left;
  padding: 10px 20px;
  margin: 0 0 40px;
}
.from_busstop .from_busstop_label {
  margin: 0;
}

.busstopInfoText {
  text-align: right;
  margin-bottom: 15px;
}

.busstopInfoLink {
  color: #D71E1E;
}

.wrap_button_toggle {
  display: inline-flex;
  gap: 15px 30px;
  margin-top: 10px;
  margin-bottom: 40px;
}

.button_toggle {
  display: block;
  width: fit-content;
  background-color: #F5F5F5;
  border: 1px solid #C8C8C8;
  border-radius: 5px;
  text-align: center;
  padding: 13px 20px;
  text-decoration: none;
  color: inherit;
}
.button_toggle.switching {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0 10px;
  align-items: center;
}
.button_toggle.switching:before {
  background-image: url(../images/icon-switch-01.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  width: 18px;
  height: 18px;
}

#container_f_fromto_weekday, #container_f_fromto_holiday, #container_t_timetalbe_weekday, #container_t_timetalbe_holiday {
  margin-top: 30px;
}

.week_label {
  font-size: 2.3rem;
  border-bottom: 3px solid #EBEBEB;
  line-height: 1.3043;
  padding: 0 0 11px;
  margin: 0 0 23px;
  position: relative;
}
.week_label::after {
  content: "";
  height: 3px;
  width: 98px;
  background-color: #3FA9F5;
  position: absolute;
  left: 0;
  bottom: -3px;
}

.tableScrollOuter.-active {
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  white-space: nowrap;
}
.tableScrollOuter.-active:before {
  content: "※スクロールしてご覧ください。";
  font-size: 1.4rem;
  display: block;
  margin-bottom: 5px;
}

.timeTable {
  border: 1px solid #C8C8C8;
}
.timeTable tr:nth-child(odd) td {
  background-color: #F5F5F5;
}
.timeTable th {
  border: 1px solid #C8C8C8;
  word-break: break-word;
  line-height: 1.4;
  text-align: center;
  padding: 10px;
}
#container_f_fromto_weekday .timeTable th, #container_t_timetalbe_weekday .timeTable th {
  background-color: #DCF0FF;
}
#container_f_fromto_holiday .timeTable th, #container_t_timetalbe_holiday .timeTable th {
  background-color: #FFDFDF;
}
#container_f_fromto_weekday .timeTable th:nth-child(4), #container_f_fromto_holiday .timeTable th:nth-child(4) {
  border-right: none;
}
#container_f_fromto_weekday .timeTable th:nth-child(5), #container_f_fromto_holiday .timeTable th:nth-child(5) {
  border-right: none;
  border-left: none;
  padding: 10px 0;
}
#container_f_fromto_weekday .timeTable th:nth-child(6), #container_f_fromto_holiday .timeTable th:nth-child(6) {
  border-left: none;
}
.timeTable td {
  border: 1px solid #C8C8C8;
  word-break: break-word;
  line-height: 1.4;
  padding: 5px;
}
#container_t_timetalbe_weekday .timeTable td, #container_t_timetalbe_holiday .timeTable td {
  text-align: center;
}
#container_f_fromto_weekday .timeTable td:nth-child(4), #container_f_fromto_holiday .timeTable td:nth-child(4) {
  border-right: none;
}
#container_f_fromto_weekday .timeTable td:nth-child(5), #container_f_fromto_holiday .timeTable td:nth-child(5) {
  border-right: none;
  border-left: none;
  padding: 10px 0;
}
#container_f_fromto_weekday .timeTable td:nth-child(6), #container_f_fromto_holiday .timeTable td:nth-child(6) {
  border-left: none;
}
.timeTable .ta_center {
  text-align: center;
}
.timeTable .ta_right {
  text-align: right;
}
.timeTable .wrap_min, .timeTable .min_marks {
  margin: 0 5px;
}

.mark_text {
  background-color: #FFF9E9;
  margin-top: 30px;
  padding: 25px;
}

.marks {
  margin-top: 5px;
}

#container_fare {
  margin-top: 30px;
}

strong.fare {
  font-size: 1.8rem;
}

#container_fare_season {
  margin-top: 30px;
}

.fareTable {
  border: 1px solid #C8C8C8;
}
.fareTable th {
  background-color: #F5F5F5;
  border: 1px solid #C8C8C8;
  word-break: break-word;
  line-height: 1.4;
  text-align: center;
  padding: 10px;
}
.fareTable td {
  border: 1px solid #C8C8C8;
  word-break: break-word;
  line-height: 1.4;
  padding: 10px;
}
.fareTable .ta_center {
  text-align: center;
}
.fareTable .ta_right {
  text-align: right;
}
.fareTable strong.fare {
  font-size: 1.4rem;
}
.fareTable .fare_unit {
  display: inline-block;
}

#map {
  position: relative;
  max-width: 100%;
}
.busget + #map {
  margin-top: 40px;
}
#map img {
  width: 100%;
}

.slidePanelButton {
  border: none;
  background: none;
  width: 100%;
}
.slidePanelButton .borderTitle {
  text-align: left;
  padding-right: 45px;
  position: relative;
}

.subBtnIcon {
  content: "";
  aspect-ratio: 1/1;
  background-color: #3fa9f5;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}
.subBtnIcon::before {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.subBtnIcon::after {
  content: "";
  width: 12px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.5s ease-in-out;
}
.slidePanelButton[aria-expanded=true] .subBtnIcon::after {
  transform: translate(-50%, -50%) rotate(360deg);
}

.slidePanel {
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease-in-out;
}
.slidePanelButton + .slidePanel {
  margin-top: 15px;
}

.helpList {
  display: grid;
  gap: 20px;
}

.helpListItem {
  background-color: #f5f5f5;
  padding: 15px;
  position: relative;
}

.helpListNumber {
  position: absolute;
  left: 11px;
  top: 11px;
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #3fa9f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: bold;
  border-radius: 50%;
}

.helpListPic {
  background-color: #fff;
  padding: 10px;
}

.helpListCaptionTitle {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

.helpListCaption {
  display: block;
}
.helpListCaption img {
  display: inline;
}
* + .helpListCaption {
  margin: 7px 0 0;
}
.helpListCaption.attention {
  color: #d50000;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0 8px;
}
.helpListCaption.attention:before {
  background-image: url(../images/icon_point.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  width: 16px;
  height: 20px;
}

#container_pole {
  display: grid;
  gap: 50px 20px;
  grid-template-columns: repeat(1, 1fr);
  margin-top: 50px;
}
#container_pole a {
  display: block;
  font-size: 1.6rem;
  width: fit-content;
}
#container_pole ul {
  margin-top: 20px;
  margin-left: 1em;
  list-style: disc;
}
#container_pole ul li {
  list-style-type: disc;
}
#container_pole .pole {
  border: 1px solid #C8C8C8;
  padding: 0 30px 30px;
  position: relative;
  z-index: 0;
}
#container_pole .wrap_pole_no {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  width: fit-content;
  margin-top: -22px;
  margin-left: -14px;
  margin-bottom: 10px;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}
#container_pole .pole_no {
  font-size: 1.8rem;
  font-weight: bold;
}
#container_pole .pole_map_button {
  border: 1px solid #C8C8C8;
  border-radius: 5px;
  color: inherit;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 6px;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 5px 10px;
}
#container_pole .pole_map_button:before {
  background-image: url(../images/pole.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  width: 14px;
  height: 23px;
}
#container_pole .pole_map_button:hover {
  background-color: #3fa9f5;
  color: #fff;
}

.pole_number {
  background-color: #fff;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  width: fit-content;
  margin-top: 30px;
}
.pole_number .pole_no {
  font-size: 1.8rem;
  font-weight: bold;
}
.pole_number .pole_map_button {
  border: 1px solid #C8C8C8;
  border-radius: 5px;
  color: inherit;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 6px;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 5px 10px;
}
.pole_number .pole_map_button:before {
  background-image: url(../images/pole.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  width: 14px;
  height: 23px;
}
.pole_number .pole_map_button:hover {
  background-color: #3fa9f5;
  color: #fff;
}

.print_timetable {
  display: flex;
  margin-top: 15px;
}
.print_timetable a {
  border: 1px solid #C8C8C8;
  border-radius: 5px;
  color: inherit;
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 6px;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 5px 10px;
}
.print_timetable a:before {
  background-image: url(../images/print.gif);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: flex;
  align-items: center;
  width: 14px;
  height: 23px;
}
.print_timetable a:hover {
  background-color: #3fa9f5;
  color: #fff;
}

.caution {
  font-weight: bold;
  margin-top: 30px;
}

@media (min-width: 768px){
  .columnBox {
    gap: 30px;
  }
  .columnBox.column_pc02 {
    grid-template-columns: repeat(2, 1fr);
  }
  .columnBox.column_pc03 {
    grid-template-columns: repeat(3, 1fr);
  }
  .columnBox.column_pc04 {
    grid-template-columns: repeat(4, 1fr);
  }
  .columnBox.column_pc05 {
    grid-template-columns: repeat(5, 1fr);
  }
  .columnBox.column_pc06 {
    grid-template-columns: repeat(6, 1fr);
  }
  .backButtonWrap {
    flex-direction: row;
  }
  .mapTop, .mapMiddle, .mapBottom {
    gap: 10px;
  }
  .mapTop.mapColumn_02, .mapMiddle.mapColumn_02, .mapBottom.mapColumn_02 {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 50px;
    padding-right: 50px;
  }
  .mapTop.centerColumn_03, .mapMiddle.centerColumn_03, .mapBottom.centerColumn_03 {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 50px;
    padding-right: 50px;
  }
  .mapTop.leftColumn_02, .mapMiddle.leftColumn_02, .mapBottom.leftColumn_02 {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 50px;
  }
  .mapTop.rightColumn_02, .mapMiddle.rightColumn_02, .mapBottom.rightColumn_02 {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 50px;
  }
  .mapTop.mapCenterColumn_02, .mapMiddle.mapCenterColumn_02, .mapBottom.mapCenterColumn_02 {
    grid-template-columns: 50px 1fr 50px;
  }
  .mapTop.mapLeftColumn_02, .mapMiddle.mapLeftColumn_02, .mapBottom.mapLeftColumn_02 {
    grid-template-columns: 1fr 50px;
  }
  .mapTop.mapRightColumn_02, .mapMiddle.mapRightColumn_02, .mapBottom.mapRightColumn_02 {
    grid-template-columns: 50px 1fr;
  }
  .mapTop + .mapMiddle {
    margin-top: 10px;
  }
  .mapMiddle + .mapBottom {
    margin-top: 10px;
  }
  .mapNextLink {
    gap: 10px;
    font-size: 1.4rem;
  }
  .arrowPositionTop {
    grid-template-rows: 30px 1fr;
  }
  .arrowPositionTop:before {
    width: 30px;
    height: 25.9807621135px;
  }
  .arrowPositionRight {
    grid-template-columns: 1fr 30px;
  }
  .arrowPositionRight:after {
    width: 30px;
    height: 25.9807621135px;
  }
  .arrowPositionBottom {
    grid-template-rows: 1fr 30px;
  }
  .arrowPositionBottom:after {
    width: 30px;
    height: 25.9807621135px;
  }
  .arrowPositionLeft {
    grid-template-columns: 30px 1fr;
  }
  .arrowPositionLeft:before {
    width: 30px;
    height: 25.9807621135px;
  }
  .find_label {
    width: fit-content;
    padding: 5px 30px;
  }
  .find_control {
    width: 360px !important;
  }
  .box_button_action {
    margin-top: 0;
  }
  .toggle_lang > strong:nth-of-type(1) {
    margin: 0 30px 0 0;
  }
  .error li:before {
    height: 27px;
  }
  .busstopTable td {
    display: table-cell;
  }
  .from_busstop {
    width: calc(45% - 50px);
  }
  .icon_from {
    transform: rotate(0deg);
    padding: 30px 10px 0;
  }
  .to_busstop {
    width: 50%;
  }
  .from_busstop_label {
    font-size: 2rem;
  }
  .from_busstop .from_busstop_label {
    margin: 0 0 40px;
  }
  .wrap_button_toggle {
    margin-top: 0;
  }
  .button_toggle {
    padding: 13px 25px;
  }
  .mark_text {
    margin-top: 50px;
  }
  .fareTable th {
    padding: 10px 20px;
  }
  .fareTable td {
    padding: 10px 20px;
  }
  .fareTable strong.fare {
    font-size: 1.8rem;
  }
  .fareTable .fare_unit {
    display: inline;
    font-size: 1.6rem;
    margin-left: 5px;
  }
  .busget + #map {
    margin-top: 60px;
  }
  .helpListCaption.attention:before {
    height: 27px;
  }
  #container_pole {
    grid-template-columns: repeat(2, 1fr);
  }
  #container_pole a {
    font-size: 2rem;
  }
  #container_pole .pole_no {
    font-size: 2rem;
  }
  .pole_number .pole_no {
    font-size: 2rem;
  }
  .print_timetable {
    justify-content: flex-end;
  }
}

@media (min-width: 960px){
  #busget {
    margin-top: -50px;
    padding-top: 50px;
  }
  .mapNextLink {
    font-size: 1.6rem;
  }
  .from_busstop {
    width: calc(45% - 60px);
  }
  .icon_from {
    width: 120px;
  }
  #container_f_fromto_weekday, #container_f_fromto_holiday, #container_t_timetalbe_weekday, #container_t_timetalbe_holiday {
    margin-top: 50px;
  }
  #container_fare {
    margin-top: 60px;
  }
  strong.fare {
    font-size: 2rem;
  }
  #container_fare_season {
    margin-top: 60px;
  }
  .fareTable strong.fare {
    font-size: 2rem;
  }
  .slidePanelButton + .slidePanel {
    margin-top: 30px;
  }
  .helpList {
    gap: 60px 20px;
  }
  .helpListItem {
    padding: 30px 30px 24px;
  }
  .helpListNumber {
    width: 74px;
    font-size: 3.2rem;
  }
  .helpListCaptionTitle {
    font-size: 2rem;
  }
}

/*# sourceMappingURL=busget_re.css.map*/