@charset "UTF-8";
section.map .map-wrapper {
  position: relative;
  margin-top: calc(68 / var(--pc));
}
section.map .map-wrapper #map {
  width: 100%;
  height: 1012px;
  z-index: 0;
  background: #000;
}
section.map .map-wrapper #map .leaflet-left {
  left: 15px;
}
section.map .map-wrapper #map .leaflet-top {
  top: 80px;
}
section.map .map-wrapper #map .facility-icon a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-size: 32px; /* ← 絵文字のサイズを拡大 */
  line-height: 1;
  text-align: center;
}
section.map .map-wrapper #map .leaflet-control-attribution {
  display: none;
}
section.map .map-wrapper #map .facility-icon {
  border-radius: 3px;
}
section.map .map-wrapper #map .facility-icon .map-link {
  display: block;
  width: 100%;
  height: 100%;
}
section.map .map-wrapper .map-info-btn {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 2px solid #000;
  background: #FFFAED;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 40px;
  text-align: center;
  z-index: 1;
  cursor: pointer;
}
section.map .map-wrapper .map-info-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
  display: none;
}
section.map .map-wrapper .map-info-wrapper.active {
  display: block;
}
section.map .map-wrapper .map-info-wrapper .map-info-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #FFFAED;
  width: 350px;
  border-radius: 12px;
  padding: 37px 26px 45px;
}
section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close {
  width: 40px;
  height: 40px;
  border: 2px solid #000;
  border-radius: 100%;
  position: absolute;
  top: -56px;
  right: -40px;
  background: #FFFAED;
  transform: rotate(45deg);
  cursor: pointer;
}
section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close::before, section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close::before {
  width: 13px;
  height: 1px;
  border-top: 1px solid #000;
}
section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close::after {
  width: 1px;
  height: 13px;
  border-left: 1px solid #000;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.05em;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:not(:last-child) {
  margin-bottom: 16px;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li::before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 15px;
  vertical-align: middle;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(1)::before {
  background: url(../img/map/icon-kickboard.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(2)::before {
  background: url(../img/map/icon-bus.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(3)::before {
  background: url(../img/map/icon-redline.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(4)::before {
  background: url(../img/map/icon-greenline.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(5)::before {
  background: url(../img/map/icon-blueline.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(6)::before {
  height: 23px;
  background: url(../img/map/icon-gs.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(7)::before {
  background: url(../img/map/icon-convenience.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(8)::before {
  background: url(../img/map/icon-pa.png) no-repeat;
  background-size: cover;
}
section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(9)::before {
  height: 20px;
  background: url(../img/map/icon-hotel.png) no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  section.map .map-wrapper {
    margin-top: calc(68 / var(--sp));
  }
  section.map .map-wrapper #map {
    width: 100%;
    height: 532px;
  }
  section.map .map-wrapper #map .leaflet-left {
    left: 0;
  }
  section.map .map-wrapper #map .leaflet-top {
    top: 0;
  }
  section.map .map-wrapper .map-info-btn {
    top: calc(14 / var(--sp));
    left: unset;
    right: calc(14 / var(--sp));
    width: calc(32 / var(--sp));
    height: calc(32 / var(--sp));
    border: 1px solid #000;
    font-size: calc(20 / var(--sp));
    line-height: calc(32 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box {
    width: calc(350 / var(--sp));
    border-radius: calc(12 / var(--sp));
    padding: calc(37 / var(--sp)) calc(26 / var(--sp)) calc(45 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close {
    width: calc(32 / var(--sp));
    height: calc(32 / var(--sp));
    border: 1px solid #000;
    top: calc(-40 / var(--sp));
    right: 1px;
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close::before {
    width: calc(11 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box .map-info-close::after {
    height: calc(11 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box ul {
    font-family: "Inter", sans-serif;
    font-size: calc(14 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box ul li:not(:last-child) {
    margin-bottom: calc(16 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box ul li::before {
    width: calc(24 / var(--sp));
    height: calc(24 / var(--sp));
    margin-right: calc(15 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(6)::before {
    height: calc(23 / var(--sp));
  }
  section.map .map-wrapper .map-info-wrapper .map-info-box ul li:nth-of-type(9)::before {
    height: calc(20 / var(--sp));
  }
}/*# sourceMappingURL=map.css.map */