@charset "utf-8";

html {
  height: 100%;
}

body {
  font: 20px sans-serif;
  height: 100%;
}

/*地図*/
#face_map {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 95%;
  background: #bbddff;
  display:hidden;
  user-select: none;
}

/*map表示のためのラッパー*/
#mapwrapper {
  position: relative;
}

#overmap {
  position: relative;
  top: 10px;
  left: 10px;
  z-index: 998;
}

#searchBox {
  position: fixed;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border:2px solid #4BACCB;
  background: #FFFFFF;
  top: 20px;
  height: 40px;
  width: 305px;
  padding: 0px 40px 0px 50px;
}

/*検索ウィンドウ*/
#miebusSearch {
  width: 100%;
  height: 100%;
  font-family:Arial, sans-serif;
  border: 0;
  color:#aaa;
}

#miebusSearch:focus {
  outline: 0;
}

/*設定ボタン*/
#configBtn {
  position: absolute;
  top: 0;
  left: 0;
  width:  38px;
  height: 38px;
}
.configSampleBtn {
  vertical-align: middle;
  top: 0;
  left: 0;
  width:  38px;
  height: 38px;
}

/*検索ボタン*/
#searchBtn {
  position: absolute;
  top: 0;
  right: 0;
  width:  38px;
  height: 38px;
}

/*左下のロゴとロゴ画像*/
#logoIcon {
  height: 30px;
  border : 2px solid white;
}

#logo {
  height: 30px;
}

/*現在地ボタン*/
#nowPosition {
  position: fixed;
  bottom: 80px;
  /*margin-left: calc(100% - 150px);*/
  right:10px;
}

/*バス停表示/非表示ボタン*/
#visibleBtn {
  position: fixed;
  bottom: 80px;
 /*margin-left: calc(100% - 210px);*/
  right:70px;
  border-radius: 50%;
  border: 2px solid #4BACCB;
}

#zoomIn {
  position: fixed;
  right:10px;
  bottom:175px;
}

#zoomOut {
  position: fixed;
  right:10px;
  bottom:130px;
}

/*map上に透過させる要素*/
#transportmap {
  position: fixed;
  top: 0;
	right: 0;
	bottom: 0;
	left: 0;
  width: 100%;
  height: 95%;
  pointer-events : none;
  /*text-align:center;*/
}

/*map上に十字*/
#centerCross {
  position: absolute;
  top: 0;
	right: 0;
	bottom: 0;
	left: 0;
  width: 5vh;
  height: 5vh;
  pointer-events : none;
	margin: auto;
  z-index: 998;
}

/*下のRSS*/
#footer{
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 5%;
  background: #555555;
  color: #ffffff;
  font-size: 3.5vh;
}

/* ページ起動時のRSS文言は青くしたい  */
.blueRssArea {
  padding-left: 10px;
  color: #4BACCB;
}

.rssArea {
  padding-left: 10px;
  color: #ffffff;
}

#rssText {
  width: 100%;
  height: 100%;
  background: #555555;
  color: #ffffff;
}

/*tutorial*/
#tutorial {
  visibility:hidden;
}
#tutorialModal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0.6;
  background-color: gray;
}
#tutorialArea {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  text-align:center;
  z-index: 9999;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 5px;
  border: solid 3px #4BACCB;

  background-color: white;
  opacity: 0.95;
}
.tutorialPane {
  position: relative;
  width: 95%;
  margin: 10px auto;
}
.tutorialNaviPane {
  height: 50%;
  height: -webkit-calc((100% - 38px)*0.55);
  height: calc((100% - 38px)*0.55);
}
.tutorialClosePane {
  height: 30%;
  height: -webkit-calc((100% - 38px)*0.35);
  height: calc((100% - 38px)*0.35);
}
.tutorialBtnArea {
  position: absolute;
  width: 100%;
  height: 100%;

  -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 5px;
  border: solid 3px #FFFFFF;
  box-shadow: 2px 2px 3px #000;
}
.tutorialBtnAreaActive {
  box-shadow: 0px 0px 0px #000;
  top: 2px;
  left:2px;
  opacity: 0.7;
}
.tutorialExecBtnArea {
  background-color: #4BACCB;
}
.tutorialCloseBtnArea {
  background-color: gray;
}
.tutorialBtnText {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  color: #FFFFFF;
  text-shadow: 1px 1px 3px #000;
  font-weight: bold;
  font-size: 3.5vh;
}
.tutorialCommentPane {
  position: absolute;
  bottom: 0px;
  right: 10px;
  height: 38px;
  text-align: right;
  vertical-align: bottom;
}
.tutorialCommentText {
  font-weight: bold;
  font-size: 2.0vh;
}

#tutorial img {
  max-width: 95%;
  max-height: 90%;
  margin: 3% auto;
}

/*モーダル関係(別ファイルに分ける)*/
#busModal,#configModal {
  display:none;
  height: 100%;
  background-color: #4BACCB;
}

#busModalInfo,#configModalInfo {
  position: relative;
  color: #333333;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px;
  height: calc(100% - 50px);
  background-color: #FFFFFF;
}

#busInfoHeader{
  padding: 5px 5px 5px 5px;
  width: 100%;
}

#busInfoHeader img.modalBusIcon {
  margin-top: 10px;
  width: 12%;
  display: inline-block;
  vertical-align: top;
}
#busInfoHeader img.modalBusStopIcon {
  width: 12%;
  display: inline-block;
  vertical-align: middle;
}

#busInfoHeaderText{
  margin: 5px 0px 0px 0px;
  display: inline-block;
  width: 88%;
  vertical-align: middle;
}

#busInfo {
  position: absolute;
  top: 0;
  height: calc(100% - 90px);
}
#busInfo h2{
  margin: 6px 5px 0px 5px;
  font-size: 18px;
  font-weight: bold;
  color: #666666;
}
#busInfo h4{
  margin: 4px 5px -4px 5px;
  font-size: 14px;
  color: #666666;
}
#busInfo h3{
  margin: 5px 5px 0px 5px;
  font-size: 15px;
  color: #666666;
}

#busInfoContents {
  height: 0;
}
#busInfoContents .currentBusIcon {
  position: absolute;
  right: 0px;
  margin: 30px 10px 0px 0px;
  width: 24px;
  height: 24px;
}

.busScheduleTab {
  overflow-x: auto;
  overflow-y: hidden; /* float 解除*/
  padding: 0px 10px;
  margin: 5px 0px -5px 0px;
}
.busScheduleTab li {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  background: #FFFFFF;
  border: 2px solid #4BACCB;
  color: #4BACCB;
  font-size: 16px;
  list-style: none;
  cursor: pointer;
  padding: 5px 10px;
  float: left;
}
.busScheduleTab li.select {
  background:#4BACCB;
  border: 2px solid #4BACCB;
  color: #FFFFFF;
}
.busScheduleTabContents  {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius:  5px;
  border: 3px solid #4BACCB;
  background-color: #4BACCB;
  padding: 0px;
}
.busScheduleTabContents li {
  font-size: 14px;
}

#busInfoScroll {
  overflow-y: auto;
  height: inherit;
}


/* adloco */
#adloco {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 90px;
  overflow-y: scroll;
}
#adlocoImage {
  margin-left:10px;
  width: 90%;
}
#adlocoP,#adlocoText {
  width:90%;
  font-size: 14px;
  color: #666666;
  margin: 1px 20px;
  word-wrap: break-word;
}

/* javascriptで使用 */
.relative   {
    position: relative;
}

.compRoute {
  margin-left: 5px;
}

.compSchedueul {
  margin-left: 0px;
}

.compNews {
  font-size: .75em;
  background: #FF9F80;
  color: #fff;
  padding: 5px 5px 3px;
  margin-left: 5px;
  border-radius: 3px;
  margin-left: 0px;
}

.descriptTimeSchedeule {
  font-size: .75em;
  padding: 5px 5px 3px;
  margin-left: 5px;
  border-radius: 3px;
  margin-left: 0px;
}

#routeList {
  padding: 10px;
}

#scheduleList {
}

.selecter {
  border-collapse: collapse;
  font-size: 16px;
  color: #444444;
  border: 3px solid #4BACCB;
  background: #FFFFFF;
  cursor: pointer;
  width: calc(100% - 20px);
  margin-left: 10px;
  margin-top: -3px;
  padding: 5px;
  min-height: 60px;
  align-items: center;
}

.selecter:hover {
  color: #FFFFFF;
  background: #4BACCB;
}

.modalArriveInfo {
  color: red;
}

/*時刻表表示用*/
#totalDelay {
  height: 21px;
  font-size: 14px;
  color: #FF0000;
}

.arrivalTime {
  padding-left: 10px;
  text-align: left;
}
.distance {
  padding-left: 10px;
  text-align: left;
  font-size: 14px;
  color: #3bafda;
}
.delayTime {
  padding-left: 10px;
  text-align: left;
  font-size: 14px;
  color: #FF0000;
}

.busHours {
  width: 40px;
  text-align: center;
  border-right: #CCC solid 1px;
}

table {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-collapse: collapse;
}

table tr {
  display: block;
  width: 100%;
  min-height: 30px; /*2行に渡る場合*/
  color: #000000;
  background-color: #FFFFFF;
}

table tr:nth-child(even) {
  color: #000000;
  background-color: #F8F8FF;
}

.busInfoView tr:nth-child(even) { /*ここでable tr:nth-child(even)をキャンセル*/
  color: #000000;
  background-color: #FFFFFF;
}
.busInfoView tr:nth-child(4n+1) {
  color: #000000;
  background-color: #F8F8FF;
}
.busInfoView tr:nth-child(4n+2) {
  color: #000000;
  background-color: #F8F8FF;
}

table td {
  min-height: 30px;
  font-size: 18px;
  line-height: 30px;
  border-color: #CCD1D9;
}

.busStopName {
  display:block;
}

.busMinutes {
  width: 180px;
  padding-left: 10px;
  text-align: left;
}

.busMinutesSelected{
  background: #4BACCB;
}

.busInfoView {
  height: 50%;
}

.funcModal {
  width: 100%;
  height: 50px;
  padding: 2px 2px 2px 2px;
}

.closeModal {
  -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 5px;
  border: solid 3px #FFFFFF;
  background-color: #4BACCB;
  color: #FFFFFF;
  position: absolute;
  right: 10px;
  height: 40px;
  width: 70px;
  padding: 2px 2px 2px 2px;
}

.undoButton {
  -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 5px;
  border: solid 3px #FFFFFF;
  background-color: #4BACCB;
  color: #FFFFFF;
  position: absolute;
  left: 10px;
  height: 40px;
  width: 70px;
  padding: 2px 2px 2px 2px;
}

.favButton {
  -webkit-border-radius: 5px;    /* Safari,Google Chrome用 */
  -moz-border-radius: 5px;
  border: solid 3px #FFFFFF;
  background-color: #4BACCB;
  color: #FFFFFF;
  text-align: center;
  font-size: 12px;
  width: 140px;
  height: 30px;
  margin: 0px 10px 0px 10px;
}

#pageslide {
  background-color: #4BACCB;
  box-shadow: none;
  padding: 3px;
  width: 260px;
  height:100%;
  z-index:9999999;
}

.ui-autocomplete {
  z-index: 999;
}


/*config modal アコーディオンよう */

#inputArea label {
  display: inline-block;
  width: 150px;
  margin: 5px 0px 5px 10px;
  font-size: 16px;
  color: #666666;
}

#inputArea input {
  margin-right: 10px;
}

#saveBusSize {
  vertical-align: middle;
  font-size:10pt;
}

#submitBtn {
  border: solid 3px #FFFFFF;
  background-color: #4BACCB;
  color: #FFFFFF;
  width: 70px;
  height: 40px;
}
.dtArea {
  margin-bottom: 8px;
}
.config-accordion-dl {
  margin: 5px;
  height: 100%;
  overflow: auto;
}

.config-accordion-dl dt {
  margin: 5px;
  margin-bottom: 2px;
  padding: 4px 0;
}

.config-accordion-dl dd {
  margin-bottom: 3px;
}

.config-accordion-dl dt:hover {
  cursor: pointer;
  color: #777;
}

.config-accordion-dl dt {
}

.config-accordion-dl dd {
  display: none;
  padding: 2px 0px 5px 10px;
}

.config-accordion:checked img.rotate {
  transform: rotate(90deg);
}

.popupText {
  /*width: 120px;*/
  text-align: center;
  overflow: auto;
}


.popupText p {
  /*width: 120px;*/
  font-size: 14px;
  margin: 0px;
  overflow: hidden;
}


.busEnd {
  color: #ff0000;
}

svg line {
  stroke: #4bacc6;
  stroke-width: 10;
}
svg circle {
  stroke: #4bacc6;
  stroke-width: 10;
  fill: none;
}
svg rect {
  stroke: #4bacc6;
  stroke-width: 10;
  fill: none;
}
