section.map-wrap {
  margin-top: calc(44px + 1vw);
  padding-top: 0;
  text-align: left;
}

section.map-wrap #map {
  position: relative;
  margin: 0 auto;
  margin-bottom: calc(36px + 1vw);
  width: 40%;
}

section.map-wrap #map img {
  width: 100%;
  transition-timing-function: ease-in-out;
  transition-duration: var(--themn-duration);
  filter: var(--filter-invert);
}

section.map-wrap #dot-head {
  position: absolute;
  background-color: transparent;
}

section.map-wrap #dot-head svg {
  fill: var(--color-blue);
  transition-timing-function: ease-in-out;
  transition-duration: var(--themn-duration);
}

section.map-wrap .dot {
  position: absolute;
  background-color: var(--color-blue);
  border-radius: 20px;
  transition-timing-function: ease-in-out;
  transition-duration: var(--themn-duration);
}

section.map-wrap .dot-label {
  position: absolute;
  color: var(--mono8);
  font-weight: 400;
}

.info-wrap {
  width: 100%;
  text-align: left;
}

p.addr {
  margin-top: calc(14px + 0.4vw);
  font-weight: 400;
}

p.phone {
  font-weight: 400;
}

p span {
  margin-right: 4px;
  font-weight: 600;
}

section.country {
  margin-top: calc(34px + 1vw);
}

@media all and (max-width:768px) {
  section.map-wrap #map {
    margin-bottom: calc(36px + 1vw);
    width: 60%
  }
}

@media all and (max-width:540px) {
  section.map-wrap #map {
    margin-bottom: calc(36px + 1vw);
    width: 70%
  }
}