@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap");
/*---------------------------------------------------------
BreakPoint
----------------------------------------------------------*/
/*---------------------------------------------------------
color
----------------------------------------------------------*/
/*---------------------------------------------------------
BrakePoint
----------------------------------------------------------*/
.hl_search {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 3;
}
.hl_search_tab {
  display: flex;
}
.hl_search_tab_item {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 55px;
  background-color: #f4f5f6;
  border: 1px solid #e2e6e9;
  font-size: 11px;
  font-weight: bold;
  color: #7E7E7E;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.hl_search_tab_item :not(:nth-child(1)) {
  margin-left: -1px;
}
.hl_search_tab_item.actived {
  color: #c43527;
  border-color: #fff;
  background-color: #fff;
  box-shadow: unset;
}
.hl_search_tab_item.actived ::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #c43527;
  position: absolute;
  top: -1px;
  left: 0;
}
.hl_search_tab_item.actived .ar_icon {
  background-color: #c43527;
}
.hl_search_tab_item .ar_icon {
  width: 30px;
  height: 30px;
}
.hl_search_content {
  display: none;
  padding: 20px 20px 25px;
}
.hl_search_content.actived {
  display: block;
}
.hl_search_action button {
  border-radius: 100px;
  max-width: 500px;
  height: 50px;
  font-weight: bold;
}
.hl_search_time {
  padding-left: 15px;
  gap: 100px;
}
.hl_search_time h4 {
  font-size: 16px;
  font-weight: bold;
}
.hl_search_time .ar_icon {
  width: 24px;
  height: 24px;
  background-color: #c43527;
}
.hl_search_time_note {
  font-size: 12px;
}
.hl_search_time_label {
  font-size: 18px;
  font-weight: bold;
  color: #7e7e7e;
}
.hl_search_time_number {
  display: inline-block;
  padding: 10px 15px;
  border: 1px solid #3e3e3e;
  border-radius: 5px;
  font-size: 20px;
  color: #c43527;
  line-height: 1;
}
.hl_search .ar_control_group .ar_control_input {
  padding-left: 60px;
  font-size: 15px;
  border: 1px solid #4b4b4b;
}
.hl_search .ar_control_group .ar_control_icon {
  width: 24px;
  height: 24px;
  background-color: #c43527;
}
@media (max-width: 600px) {
  .hl_search .heli_search_area {
    padding: 0;
  }
  .hl_search_item {
    flex-direction: column;
    gap: 2px;
  }
  .hl_search_item .ar_icon {
    width: 25px;
    height: 25px;
  }
  .hl_search_time {
    padding: 0 15px;
    flex-direction: column;
    gap: 20px;
  }
  .hl_search .select_heli_airport {
    flex-wrap: wrap;
    gap: 0;
    position: relative;
    border: 1px solid #4b4b4b;
    border-radius: 6px;
  }
  .hl_search .select_heli_airport::after {
    content: "";
    display: block;
    position: absolute;
    left: 15px;
    top: 50%;
    width: calc(100% - 30px);
    height: 1px;
    background-color: #4b4b4b;
  }
  .hl_search .select_heli_airport .ar_control_group {
    flex-basis: 100%;
    max-width: 310px;
  }
  .hl_search .select_heli_airport .ar_control_group .ar_control_input {
    border: 0;
    height: 66px;
    box-shadow: none;
  }
}

.btn_heliairport_exchange {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid #d6d6d6;
  border-radius: 50%;
  background-color: #fff;
}
.btn_heliairport_exchange .ar_icon {
  width: 16px;
  height: 16px;
  background-color: #c43527;
}
@media (max-width: 600px) {
  .btn_heliairport_exchange {
    position: absolute;
    z-index: 1;
    right: 14px;
  }
}

.airport_drop_box {
  position: absolute;
  z-index: 3;
  top: calc(100% + 6px);
  width: 100%;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: none;
}
.airport_drop_header {
  position: relative;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #9b9d9f;
  font-size: 16px;
  font-weight: bold;
}
.airport_drop_header .ar_icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
  cursor: pointer;
}
.airport_drop_footer {
  height: 30px;
  border-top: 1px solid #9b9d9f;
  margin-top: -1px;
  position: relative;
  z-index: 2;
}
.airport_drop_list {
  max-height: 375px;
  overflow-y: auto;
  padding: 0 16px;
}
.airport_drop_group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
}
.airport_drop_group .ar_icon {
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.airport_drop_container {
  transition: all 0.3s;
  overflow: hidden;
}
.airport_drop_option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 10px;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
}