* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  width: 100vw;
  height: 100dvh;
}

#map {
  width: 100vw;
  height: 100dvh;
}
#map .firstSearch {
  position: absolute;
  top: 20%;
  left: 50%;
  width: calc(100vw - 80px);
  max-width: 20em;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: white;
  padding: 0.5em;
  font-size: 20px;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.icon {
  position: absolute;
  top: -100%;
  left: -1000%;
}

.selfIcon, .fireIcon, .hydrantIcon, .tankIcon {
  width: 30px;
  height: 30px;
}
.selfIcon.hidden, .fireIcon.hidden, .hydrantIcon.hidden, .tankIcon.hidden {
  opacity: 0;
  pointer-events: none;
}
.selfIcon img, .fireIcon img, .hydrantIcon img, .tankIcon img {
  width: 30px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
}

.fireIcon {
  width: 100%;
}
.fireIcon img {
  width: 60px;
  -webkit-animation: fireIconPopped 0.4s ease 0s 1 normal;
          animation: fireIconPopped 0.4s ease 0s 1 normal;
}

@-webkit-keyframes fireIconPopped {
  0% {
    width: 0;
  }
  50% {
    width: 70px;
  }
  100% {
    width: 60px;
  }
}

@keyframes fireIconPopped {
  0% {
    width: 0;
  }
  50% {
    width: 70px;
  }
  100% {
    width: 60px;
  }
}
.yNHHyP-marker-view {
  z-index: -1;
}
.yNHHyP-marker-view:has(.fireIcon) {
  z-index: -2;
}

.hydrantIcon, .tankIcon {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.hydrantIcon.first:before, .hydrantIcon.second:before, .hydrantIcon.third:before, .tankIcon.first:before, .tankIcon.second:before, .tankIcon.third:before {
  font-size: 26px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(50%, -100%);
          transform: translate(50%, -100%);
}
.hydrantIcon.first:before, .tankIcon.first:before {
  content: "1";
}
.hydrantIcon.second:before, .tankIcon.second:before {
  content: "2";
}
.hydrantIcon.third:before, .tankIcon.third:before {
  content: "3";
}
.hydrantIcon .trigger:focus, .tankIcon .trigger:focus {
  border: 10px solid black;
}
.hydrantIcon .trigger:focus + .data, .tankIcon .trigger:focus + .data {
  background: black;
}
.hydrantIcon .data, .tankIcon .data {
  opacity: 1;
  background: white;
  border-radius: 4px;
  position: absolute;
  bottom: calc(100% + 10px);
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  overflow: hidden;
  width: 0;
  height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 4px;
}
.hydrantIcon .data .closeBtn, .tankIcon .data .closeBtn {
  margin: 0 0 0 auto;
  font-family: "Material Symbols Outlined";
  text-align: right;
  border: none;
  background: none;
  font-size: 20px;
  display: block;
}
.hydrantIcon .data .route, .tankIcon .data .route {
  margin: 0 0 0 auto;
  display: block;
}
.hydrantIcon .data table, .tankIcon .data table {
  border-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hydrantIcon .data table tr th, .hydrantIcon .data table tr td, .tankIcon .data table tr th, .tankIcon .data table tr td {
  white-space: nowrap;
  text-align: left;
  border: 1px solid #ccc;
  padding: 0.3em;
  font-size: 12px;
}
.hydrantIcon .data table tr th, .tankIcon .data table tr th {
  border-right: none;
}
.hydrantIcon .data table tr:not(:last-child) th, .hydrantIcon .data table tr:not(:last-child) td, .tankIcon .data table tr:not(:last-child) th, .tankIcon .data table tr:not(:last-child) td {
  border-bottom: none;
}
.hydrantIcon .data table tr:first-child, .tankIcon .data table tr:first-child {
  display: none;
}
.hydrantIcon .data.show, .tankIcon .data.show {
  width: auto;
  height: auto;
  padding: 1em;
  padding-top: 0.3em;
}
.hydrantIcon:has(.show), .tankIcon:has(.show) {
  z-index: 10;
}

.selfIcon {
  display: block;
  background: rgb(160, 225, 255);
  border-radius: 50%;
  border: 1px solid rgb(0, 45, 67);
}

.yNHHyP-marker-view:has(.data.show) {
  z-index: 1;
}
.yNHHyP-marker-view:has(svg) {
  display: none;
}

.gmnoprint.gm-style-mtc-bbw {
  bottom: 20px !important;
  left: 0 !important;
}

.top {
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  padding-bottom: 10px;
  width: 100vw;
}
.top input#address {
  width: calc(100vw - 80px);
  height: 40px;
  margin: 10px;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 20px;
  padding-left: 0.5em;
  border-radius: 4px;
  border: 1px solid #ccc;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top .flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px;
}
.top .flexBox button {
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  width: 40px;
  height: 40px;
  font-size: 20px;
  margin-right: 10px;
  background: #fff;
  border: #ccc;
  border-radius: 4px;
}
.top .flexBox button:active {
  background: #ccc;
}
.top .flexBox .suiriList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 10px;
  margin: 0 0 0 auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.top .flexBox .suiriList .data {
  width: 32%;
  background: white;
  padding: 4px;
  border-radius: 4px;
}
.top .flexBox .suiriList .data > * {
  pointer-events: none;
}
.top .flexBox .suiriList .data h2 {
  font-weight: normal;
  color: #b6b6b6;
  position: relative;
}
.top .flexBox .suiriList .data h2::after {
  content: ">";
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: inline-block;
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}/*# sourceMappingURL=style.css.map */