.map-main-wrap.dialog {
  width: 100%;
  max-width: 55vw;
  margin: 0;
  flex-shrink: 0;
  border-radius: 0;
}
@media screen and (max-width: 930px) {
  .map-main-wrap.dialog {
    max-width: unset;
  }
}
.map-main-wrap .map-container {
  display: block;
  width: 100%;
  max-width: var(--pageWidth);
  overflow: hidden;
  margin: auto;
}
.map-main-wrap .map-container.dialog {
  margin: 0;
  max-width: unset;
}
@media screen and (max-width: 930px) {
  .map-main-wrap .map-container.dialog {
    max-width: calc(100% - var(--pagePaddingCalc));
    margin: auto;
  }
}
.map-main-wrap .map-container .map-inner {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}
.map-main-wrap .map-container .map-inner.dialog {
  --borderRadiusMap: 5rem;
  height: 85rem;
  padding-bottom: 0;
  border-top-right-radius: var(--borderRadiusMap);
  border-bottom-right-radius: var(--borderRadiusMap);
  overflow: hidden;
}
@media screen and (max-width: 1234px) {
  .map-main-wrap .map-container .map-inner.dialog {
    height: 78rem;
  }
}
@media screen and (max-width: 930px) {
  .map-main-wrap .map-container .map-inner.dialog {
    padding-bottom: 56%;
    aspect-ratio: unset;
    border-radius: var(--borderRadius);
    height: 0;
  }
}
@media screen and (max-width: 650px) {
  .map-main-wrap .map-container .map-inner.dialog {
    height: auto;
    aspect-ratio: 1/1;
    padding-bottom: 0;
  }
}
.map-main-wrap .map-container .map-inner .map {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
}
.map-main-wrap .map-container .map-inner:not(.dialog) .map {
  border-radius: var(--borderRadius);
}
@media screen and (max-width: 650px) {
  .map-main-wrap .map-container .map-inner {
    height: auto;
    aspect-ratio: 1/1;
    padding-bottom: 0;
  }
}
.map-main-wrap .map-info {
  display: block;
  position: relative;
  text-align: center;
}
.map-main-wrap .map-info h2 {
  font-size: var(--fontSize-SecTitle);
  font-weight: var(--fontWeight-Bold);
  margin: 0;
}
.map-main-wrap .map-info p {
  font-size: var(--fontSize-Root);
  color: var(--textColorBlog);
  font-weight: 400;
  margin: 2.5rem 0 4rem 0;
}
