.info-map {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.info-map--japan .info-map__item--hokkaido {
  top: 23%;
  right: 14.1%;
}
.info-map--japan .info-map__item--joshinetsu {
  top: 46.8%;
  right: 32.2%;
}
.info-map--japan .info-map__item--ozenasu {
  top: 57.7%;
  right: 24.7%;
}
.info-map--japan .info-map__item--kanto {
  top: 78.3%;
  right: 37%;
}
.info-map--japan .info-map__item--yatsugatake {
  top: 69.8%;
  right: 46.7%;
}
.info-map--japan .info-map__item--minamialps {
  top: 83.1%;
  right: 48.9%;
}
.info-map--japan .info-map__item--kitaarupusuhokubu {
  top: 54%;
  right: 42.6%;
}
.info-map--japan .info-map__item--kitaarupusunanbu {
  top: 61.8%;
  right: 47.6%;
}
.info-map--japan .info-map__item--hokuriku {
  top: 72.6%;
  right: 62.6%;
}
.info-map--japan .info-map__item--chugoku {
  top: 64.2%;
  right: 78.7%;
}
.info-map--hokkaido .info-map__item--daisetsuzan {
  top: 8%;
  right: 38%;
}
.info-map--hokkaido .info-map__item--yoteizan {
  top: 21%;
  right: 49.2%;
}
.info-map--hokkaido .info-map__item--asahidake {
  top: 68.1%;
  right: 51.9%;
}
.info-map--hokkaido .info-map__item--iidesan {
  top: 77.4%;
  right: 56.2%;
}
.info-map--hokkaido .info-map__item--adatarayama {
  top: 87%;
  right: 47.4%;
}

.info-map__item {
  display: inline-block;
  width: calc(50% - 5rem);
  margin-top: 10rem;
  background: var(--colorBg1);
  font-size: 14rem;
  line-height: 1.71;
  border-radius: 4px;
  border: 1px solid var(--colorText2);
  text-align: center;
  white-space: nowrap;
}
.info-map__item:nth-child(odd) {
  margin-left: 10rem;
}
.info-map__item:hover {
  background: var(--colorText1);
}
.info-map__item:hover .info-map__item__link {
  color: #ffffff;
}
.info-map__item:hover .info-map__item__icon {
  fill: #ffffff;
}

.info-map__item__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5rem;
  width: 100%;
  height: 100%;
}

.info-map__item__icon {
  width: 20rem;
  margin: -2rem 3rem 0 0;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .info-map__item {
    width: auto;
    margin-top: 0;
    position: absolute;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    border: none;
    font-size: 16rem;
    line-height: 1.68;
    font-weight: bold;
  }
  .info-map__item:nth-child(odd) {
    margin-left: 0;
  }
  .info-map__item__link {
    padding: 4.6rem 8rem;
  }
}

@media (max-width: 1100px) {
  .info-map__item {
    font-size: 14rem;
  }
}