:root {
  --gothic-font: "Poppins", "Zen Kaku Gothic New", sans-serif;
}

#search_form ul {
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  height: 46px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #search_form ul {
    flex-direction: column;
    height: auto !important;
  }
}
#search_form ul li {
  height: 100%;
  padding: 0;
  padding-right: 3px;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #search_form ul li {
    width: 100% !important;
  }
}
#search_form ul li.prefecture {
  flex: 0.9;
}
#search_form ul li.city {
  flex: 1.2;
}
#search_form ul li.move_in_move_out {
  flex: 1.2;
}
#search_form ul li.term {
  flex: 0.8;
}
#search_form ul li.search_btn_box {
  padding-left: 10px;
}
@container (width > 768px) and (width <= 1024px) {
  #search_form ul li.search_btn_box {
    padding-left: 0px;
    max-width: 60px;
  }
}
#search_form ul li label {
  position: relative;
  width: 100%;
}
#search_form ul li label a {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  left: 50%;
  color: #fff;
  font-size: 1.6rem;
  font-weight: normal !important;
  letter-spacing: 0.05em;
  font-family: var(--gothic-font);
  pointer-events: none;
  white-space: nowrap;
}
#search_form ul li label a i {
  font-size: 88%;
  margin-left: 7px;
  opacity: 1;
  transition: 0.2s ease-in;
}
#search_form ul li label .loading {
  display: none;
  position: absolute;
  width: 100%;
  justify-content: center;
  align-items: center;
  height: 100%;
  top: 0;
  color: black;
}
#search_form ul li label .loading .fa-spinner {
  transform: translateY(-50%);
  color: #fff;
}
#search_form ul li label select {
  border: none;
  background: none;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: var(--gothic-font);
  width: 100%;
  appearance: none;
  padding: 20px 10px 0px 10px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #search_form ul li label select {
    text-align: center;
  }
}
#search_form ul li label select option {
  background: #000;
}
#search_form ul li label input#move_in_move_out {
  width: 100%;
  height: 100%;
  padding: 20px 10px 0px 10px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 16px;
  text-align: left;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #search_form ul li label input#move_in_move_out {
    text-align: center;
  }
}
#search_form ul li label input#move_in_move_out.Luxe {
  color: #fff;
}
#search_form ul li label input#move_in_move_out:not(.Luxe) {
  font-family: "Roboto";
  padding: 15px 10px 0px 10px;
}
#search_form ul li label::after {
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  opacity: 0;
  transition: 0.2s ease-in;
}
#search_form ul li label.selected a {
  color: #A6A6A6;
  display: block;
  font-size: 12px;
  font-weight: 400;
  top: 0px;
  width: auto;
  left: 10px;
  transform: translate(0px, 0px);
}
#search_form ul li label.selected a i {
  opacity: 0;
}
#search_form ul li label.selected::after {
  opacity: 1;
}
#search_form ul li.filter.selected::after {
  content: "";
  position: absolute;
  top: -5px;
  right: -3px;
  width: 10px;
  height: 10px;
  background-color: red;
  border-radius: 50%;
}
#search_form ul li .search_btn {
  border: 1px solid #fff;
  width: 100%;
  border-radius: 0;
  font-family: var(--gothic-font);
  font-size: 1.6rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
  padding: 10px;
  box-sizing: border-box;
  letter-spacing: 0.05em;
  background: none;
  cursor: pointer;
}
#search_form ul li .search_btn:hover {
  opacity: 0.7;
  transition: 0.2s ease-in;
}

#popup_move_in_out {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  color: #fff;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(2px);
}
#popup_move_in_out .calendars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#popup_move_in_out .calendars .air-datepicker-body--day-name {
  color: #b3801d;
}
@media screen and (max-width: 768px) {
  #popup_move_in_out .calendars {
    display: inline;
  }
  #popup_move_in_out .calendars > div:nth-child(1) {
    margin-bottom: 10px;
  }
}
#popup_move_in_out .buttons {
  display: flex;
}
#popup_move_in_out .buttons input {
  border: 1px solid #777;
  color: #fff;
  font-weight: 300;
  padding: 5px 30px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
#popup_move_in_out .buttons input:hover {
  background-color: rgba(255, 255, 255, 0.1490196078);
  border: 1px solid #7f8507;
}
@media screen and (max-width: 768px) {
  #popup_move_in_out .buttons input {
    background-color: #000000;
  }
}

#filter_popup {
  display: none;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  color: #fff;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(2px);
}
#filter_popup #filter_popup_header {
  position: absolute;
  right: 17px;
  top: 0;
  font-size: 40px;
}
#filter_popup #filter_popup_header i {
  font-weight: 100;
}
#filter_popup #filter_popup_content {
  padding: 20px 50px;
}
@media screen and (max-width: 768px) {
  #filter_popup #filter_popup_content {
    padding: 0px 0px;
  }
}
#filter_popup #filter_popup_content > div {
  display: none;
}
#filter_popup #filter_popup_content > div .title {
  color: #fff;
  margin-bottom: 10px;
}
#filter_popup #filter_popup_content > div .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 70vh;
  overflow-y: auto;
}
#filter_popup #filter_popup_content > div .content input[type=checkbox],
#filter_popup #filter_popup_content > div .content input[type=radio] {
  display: none;
}
#filter_popup #filter_popup_content > div .content input[type=checkbox] + label,
#filter_popup #filter_popup_content > div .content input[type=radio] + label {
  position: relative;
  background: rgba(59, 59, 59, 0.9490196078);
  border: 1px solid #777;
  padding: 2px 13px;
}
@media screen and (max-width: 768px) {
  #filter_popup #filter_popup_content > div .content input[type=checkbox] + label,
  #filter_popup #filter_popup_content > div .content input[type=radio] + label {
    padding: 1px 6px;
    font-size: 14px;
  }
}
#filter_popup #filter_popup_content > div .content input[type=checkbox]:checked + label,
#filter_popup #filter_popup_content > div .content input[type=radio]:checked + label {
  background: #fff;
  color: #000;
}
#filter_popup #filter_popup_content > div .content .nstSlider {
  background: rgba(0, 0, 0, 0.1803921569);
  margin: auto;
}
#filter_popup #filter_popup_content > div .content .nstSlider .bar,
#filter_popup #filter_popup_content > div .content .nstSlider .leftGrip,
#filter_popup #filter_popup_content > div .content .nstSlider .rightGrip {
  background: #fff;
}
#filter_popup #filter_popup_content > div .content .slider_value {
  display: flex;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 5px;
}
#filter_popup #filter_popup_content > div .content .slider_value .hyphen {
  margin: 0 20px;
}
#filter_popup #filter_popup_content > div .content .slider_value .min {
  width: 120px;
  text-align: right;
}
#filter_popup #filter_popup_content > div .content .slider_value .max {
  width: 120px;
  text-align: left;
}
#filter_popup #filter_popup_content > div .content .up-down {
  display: flex;
  justify-content: center;
  align-items: center;
}
#filter_popup #filter_popup_content > div .content .up-down .value {
  font-size: 22px;
  line-height: 1;
  width: 68px;
  text-align: center;
}
#filter_popup #filter_popup_content > div .content .up-down .button {
  width: 22px;
  font-size: 20px;
  cursor: pointer;
}
#filter_popup #filter_popup_content > div .content .up-down .button.down:before {
  content: "\f056";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}
#filter_popup #filter_popup_content > div .content .up-down .button.up:before {
  content: "\f055";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
}
#filter_popup #filter_popup_content > div .content .up-down .button.disable {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
}
#filter_popup #filter_popup_content #popup_lender .content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
}
#filter_popup #filter_popup_content #popup_more .content > div {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 20px;
  padding-top: 9px;
  border-bottom: 1px solid #666;
}
@media screen and (max-width: 768px) {
  #filter_popup #filter_popup_content #popup_more .content > div {
    gap: 6px;
  }
}

#popup_room_type > .content {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}
#popup_room_type input[type=checkbox] {
  display: inline-block !important;
}
#popup_room_type input[type=checkbox] + label {
  background: none !important;
  border: none !important;
  color: #fff !important;
}
#popup_room_type .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
}
#popup_room_type .slider-group {
  margin-bottom: 10px;
}
#popup_room_type .room_type_note {
  font-size: 13px;
  margin-top: 25px;
  margin-bottom: 20px;
}
#popup_room_type .checkbox-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 100px;
}
#popup_room_type .title {
  margin-top: 30px;
}
#popup_room_type .room_type_hr {
  margin-top: 30px;
  border-top-width: 1.5px;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 20px;
  gap: 10px;
  flex-direction: column;
}
.buttons input {
  border: 1px solid #777;
  background: rgba(109, 109, 109, 0.8588235294);
  color: #fff;
  font-weight: 300;
  padding: 5px 30px;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
.buttons input:hover {
  background-color: rgba(255, 255, 255, 0.1490196078);
  border: 1px solid #7f8507;
}
@media screen and (max-width: 768px) {
  .buttons input {
    background-color: #000000;
  }
}

.value_clear,
.value_select_all {
  position: static !important;
  margin-top: 0;
  font-size: 13px !important;
  padding: 4px 12px !important;
}

.left-buttons {
  display: flex;
  gap: 15px;
}

.price-warning-banner {
  margin-top: 45px;
  padding: 10px;
  border: 1px solid #A6A6A6;
  background-color: rgba(250, 250, 250, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 370px;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.price-warning-banner a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-decoration: none;
}
.price-warning-banner .bold {
  font-weight: bold;
}
.price-warning-banner img {
  height: 30px;
  width: auto;
  display: inline-block;
}
.price-warning-banner i {
  font-size: 12px;
}
.price-warning-banner.visible {
  opacity: 1;
  transform: translateY(0);
}
.price-warning-banner.hidden {
  display: block;
  opacity: 0;
}

#luxe_link {
  background: url(/images/luxe/top/luxe_banner_background.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 0;
  margin-top: 45px;
}
#luxe_link a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px;
  font-size: 14px;
  color: #fff;
  font-family: "ivyjournal", "Noto Serif JP", sans-serif;
  font-style: italic;
  gap: 6px 16px;
  transition: all 0.2s linear;
}
#luxe_link a:hover {
  background-color: rgba(255, 255, 255, 0.1333333333);
}

/*# sourceMappingURL=search_form.css.map */
