#map {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 100px;
}

#map .wrap {
  width: 100%;
  max-width: 1400px;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}

#map .wrap .content {
  width: 100%;
  height: auto;
}

#map .wrap .content .map_wrap {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

#map .wrap .content .map_wrap .map_item {
  width: 100%;
  height: auto;
  overflow: hidden;
  border: 1px solid #888;
  border-radius: 20px;
  margin-bottom: 50px;
}

#map .wrap .content .map_wrap .map_item #daumRoughmapContainer1750071512703 {
  width: 100%;
  height: 395px;
  border-bottom: 1px solid #888;
}

#daumRoughmapContainer1750071512703 .wrap_controllers {
  display: none;
}

#daumRoughmapContainer1750071512703 .cont {
  display: none;
}

#daumRoughmapContainer1750071512703 .wrap_map {
  height: 100%;
}

#map .wrap .content .map_wrap .map_item .map_info {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 30px;
  font-size: 14px;
  color: #053863;
}

#map .wrap .content .map_wrap .map_item .map_info img {
  width: auto;
  height: auto;
}

#map .wrap .content .map_wrap .map_item .map_info h3 {
  font-family: 'PB_B';
	font-weight: bold;
}

#map .wrap .content .map_wrap .map_item .map_info .line {
  width: 1px;
  height: 10px;
  background: #053863;
}

#map .wrap .content .map_wrap .map_item .map_info p {
font-family: 'PB_R';
font-weight: normal;
}

#map .wrap .content .map_wrap .location {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#map .wrap .content .map_wrap .location h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'PB_B';
	font-weight: bold;
  font-size: 18px;
  color: #053863;
}

#map .wrap .content .map_wrap .location h3 img {
  width: auto;
  height: auto;
}

#map .wrap .content .map_wrap .location img {
  width: auto;
  height: auto;
}

#map .wrap .content .map_wrap .location .img_wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.location_line {
  width: 100%;
  height: 1px;
  margin: 50px auto;
  background: #888;
}

@media (max-width: 1400px) {
  #map .wrap {
    max-width: 90%;
  }
}

@media (max-width: 900px) {
  #map .wrap .content .map_wrap {
    max-width: 100%;
  }

  #map .wrap .content .map_wrap .location {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  #map .wrap .content .map_wrap .location h3 {
    justify-content: center;
    width: 100%;
  }

  #map .wrap .content .map_wrap .location .img_wrap {
    flex-wrap: wrap;
    gap: 10px;
    width: 285px;
  }
}

@media (max-width: 700px) {
  #map .wrap .content .map_wrap .map_item #daumRoughmapContainer1750071512703 {
    height: 250px;
  }

  #map .wrap .content .map_wrap .map_item .map_info {
    height: 40px;
    padding: 0 15px;
    gap: 5px;
  }

  #map .wrap .content .map_wrap .map_item .map_info img {
    width: 9px;
  }

  #map .wrap .content .map_wrap .map_item .map_info {
    font-size: 12px;
  }

  #map .wrap .content .map_wrap .location h3 img {
    height: 15px;
  }

  #map .wrap .content .map_wrap .location h3 {
    font-size: 14px;
  }

  #map .wrap .content .map_wrap .location img {
    width: 100%;
  }
}

@media (max-width: 400px) {
  #map .wrap .content .map_wrap .map_item #daumRoughmapContainer1750071512703 {
    height: 180px;
  }

  #map .wrap .content .map_wrap .map_item .map_info {
    height: auto;
    padding: 10px;
  }

  .location_line {
    margin: 30px auto;
  }

  #map .wrap .content .map_wrap .location .img_wrap {
    width: 200px;
  }
}