body {
  background-color: #FFF;
  overflow: hidden;
}
#map_main #bg_container {
  position: relative;
}
#map_main .bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s linear;
}
#map_main .bg.show {
  opacity: 1;
}
#map_main .bg img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
#map_main h1#logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
#map_main h1#logo img {
  width: 368px;
}
@media only screen and (max-width: 768px) {
  #map_main h1#logo img {
    width: 82%;
    max-width: 368px;
  }
}
#map_main h2#mail {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  font-size: 0;
  margin: 0;
  bottom: 25px;
}
#map_main h2#mail img {
  width: 195px;
}
#map_main #dot_container {
  position: absolute;
  display: flex;
  padding: 0;
  margin: 0;
  width: 100%;
  justify-content: center;
  bottom: 165px;
}
@media only screen and (max-width: 768px) {
  #map_main #dot_container {
    height: 18px;
    bottom: 0;
    top: 48dvh;
    left: 0;
    right: 0;
    max-width: 90%;
    margin: auto;
  }
}
#map_main #dot_container li {
  list-style: none;
  cursor: pointer;
  position: relative;
}
#map_main #dot_container li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: #FFF;
  margin: 0 8px;
  transition: transform 0.2s linear;
}
@media only screen and (max-width: 768px) {
  #map_main #dot_container li:before {
    margin: 0 5px;
  }
}
#map_main #dot_container li:after {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  display: block;
  width: 22px;
  height: 22px;
  background-color: #FFF;
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  #map_main #dot_container li:after {
    width: 18px;
    height: 18px;
    top: -6px;
  }
}
#map_main #dot_container li.selected:before {
  transform: scale(1.4);
}

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