

.location_wrap{
  display: flex;
  gap: 10rem;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.location_wrap .info{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 30%;
  padding: 0;
  margin: 0;
}
.location_wrap .info img{
  width: 65%;
}
.location_wrap .info hr{
  background: var(--bs-gray-700);
}
.location_wrap .found{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.location_wrap .found>div{
  display: flex;
  flex-direction: column;
  font-size: 1rem;
}
.location_wrap .found .t{
  font-weight: 600;
}


.location_map_wrap{
  position: relative;
  width: 100%;
}
.location_map{
  width: 100%;
}
.location_map .wrap_map{
  height: 400px !important;
}
.location_map .cont{
  display: none;
}
.location_contents{
  width: 97%;
  max-width: 800px;
  height: 100%;
  margin: 2rem auto 0 auto;
  padding: 0;
}
@media (max-width: 767.98px) {
  .location_wrap{
    flex-direction: column;
    gap: 2rem;
  }
  .location_wrap .info{
    width: 100%;
  }
  .location_wrap .info img{
    width: 35%;
  }

  .location_map_wrap::after{
    position: absolute;
    content: '';
    top:0;
    left: 0;
    width: 93%;
    height: 92%;
    z-index: 2;
    background-color: rgba(255,255,255,0);
  }
  .location_contents{
    margin: 4rem auto 0 auto;
  }
}