/* Location Section Styles */
.location_section {
  padding-top: 10px;
  background-color: #fff;
}
.location_section .section_tit {
  text-align: center;
  margin-bottom: 60px;
}
.location_section .section_tit h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #1e1e1e;
}
.location_content {
  margin: 0 auto;
  padding: 0 24px;
}
.location_info_table .location_name {
  font-size: 42px;
  font-weight: 700;
  color: #1e1e1e;
  text-align: center;
  margin-bottom: 40px;
}
.location_map_container {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  align-items: flex-start;
  margin: 20px auto 30px auto;
  max-width: 1200px;
}
.location_table_left {
  flex: 0 0 50%;
}
.location_map_links {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.map_link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, border-color 0.3s ease;
  z-index: 1;
}
.map_link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #bc481f;
  transition: left 0.3s ease;
  z-index: -1;
}
.map_link:hover {
  color: #fff;
  text-decoration: none;
}
.map_link:hover::before {
  left: 0;
}

.map_link_text {
  line-height: 1;
}
.location_map_wrap {
  flex: 0 0 50%;
}
.location_table_mobile {
  display: none;
  width: 100%;
}
.location_info_content {
  width: 100%;
}
.location_info_item {
  margin-bottom: 28px;
}
.location_info_item:last-child {
  margin-bottom: 0;
}
.location_info_title {
  font-size: 18px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0 0 8px 0;
  letter-spacing: -0.3px;
}
.location_info_text {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 6px 0;
}
.location_info_text:last-child {
  margin-bottom: 0;
}
.location_map_wrap {
  flex: 0 0 50%;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.location_map_wrap #map {
  width: 100%;
  height: 380px;
}
.location_map_wrap #map_mobile {
  width: 100%;
  height: 250px;
}
@media only screen and (max-width: 1280px) {
  .location_section {
    padding-top: 10px;
  }
  .location_section .section_tit h2 {
    font-size: 36px;
  }
  .location_info_table .location_name {
    font-size: 42px;
  }
  .location_map_container {
    gap: 16px;
    margin: 16px 0 24px 0;
  }
  .location_table_left {
    flex: 0 0 50%;
  }
  .location_map_wrap {
    flex: 0 0 50%;
  }
  .location_table_mobile {
    display: none;
  }
  .location_map_wrap #map {
    height: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .location_section .section_tit {
    margin-bottom: 30px;
  }
  .location_section .section_tit h2 {
    font-size: 28px;
  }
  .location_info_table .location_name {
    font-size: 42px;
  }
  .location_map_container {
    flex-direction: column;
    gap: 0;
    margin: 20px 0 30px 0;
  }
  .location_table_left {
    display: none;
  }
  .location_table_mobile {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
  .location_info_item {
    margin-bottom: 24px;
  }
  .location_info_title {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .location_info_text {
    font-size: 14px;
    line-height: 1.6;
  }
  .location_map_wrap {
    flex: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .location_map_wrap #map_mobile {
    width: 100%;
    height: 300px;
  }
  .location_map_links {
    margin-top: 20px;
    gap: 10px;
  }
  .map_link {
    padding: 12px 12px;
    font-size: 13px;
    flex: 1;
    min-width: 0;
    justify-content: center;
    max-width: 150px;
  }
}

