:root {
  --gothic-font: "Roboto";
}

header {
  container-type: inline-size;
  position: relative;
  width: 100%;
  height: 50px;
  background: #fff;
  box-shadow: none;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 18px;
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 10px;
  }
  header a {
    display: flex;
    align-items: center;
  }
}
header img {
  width: auto;
  height: 30px;
}
@container (max-width: 768px) {
  header img:nth-child(1) {
    display: none;
  }
  header img:nth-child(2) {
    width: 150px;
    height: auto;
  }
}
header ul {
  display: flex;
  flex-grow: 1;
  gap: 10px;
  justify-content: flex-end;
}
header ul li {
  font-size: 14px;
  color: #757575;
  border: 1px solid #cbcbcb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header ul li a {
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
header ul li a:hover {
  text-decoration: none;
}
header ul li:hover {
  opacity: 0.8;
}
header ul .luxe_link {
  width: 30px;
  height: 30px;
  overflow: hidden;
}
header ul .luxe_link a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/images/luxe/luxe_icon.png?1");
  background-size: cover;
  background-position: center;
}
header ul .change_lang {
  background-color: #cbcbcb;
}
header ul .change_lang .to_lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
header ul .change_lang .to_lang::before {
  margin: 0;
}
header ul .favorite a {
  color: #E55A7A;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  header ul {
    gap: 5px;
  }
}

#headerMenuDialog {
  box-shadow: none;
  font-family: var(--gothic-font);
}
@media screen and (max-width: 1168px) {
  #headerMenuDialog {
    top: 50px;
  }
}
#headerMenuDialog.fixed {
  width: inherit;
}

#headerMenu {
  background: transparent;
  padding: 0px 20px 0;
}

#search_form ul {
  background: rgba(229, 229, 229, 0.6392156863);
  backdrop-filter: blur(2px);
  border-radius: 5px;
  gap: 0px;
  padding: 10px;
  height: 50px;
}
#search_form ul li {
  border: none;
  border-right: none;
}
#search_form ul li label a {
  font-size: 14px;
}
@container (max-width: 940px) {
  #search_form ul li label a {
    font-size: 12px;
  }
}
#search_form ul li label.selected a {
  font-size: 11px;
}
#search_form ul li label {
  border: 1px solid #999;
  background: #fff;
  border-radius: 5px;
  height: 40px;
}
#search_form ul li label a,
#search_form ul li label select {
  color: #343434;
}
#search_form ul li label select {
  padding: 15px 10px 0px 10px;
}
#search_form ul li label select:focus {
  outline: none;
}
#search_form ul li label select option {
  background: #fff;
}
#search_form ul li button {
  background: none;
  color: #fff;
  font-weight: 300;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  height: 40px;
  background: #0067db;
  border: none;
  border-radius: 10px;
  margin-left: 5px;
}
#search_form ul li button:hover {
  background: #005dc5;
  color: #fff;
}
#search_form ul li button:focus {
  outline: none;
}
#headerMenuDialog.filter_opened #search_form ul li.filter button {
  background-color: #abc0d7;
}
#search_form ul li.filter {
  margin-left: 0px;
}
#search_form ul li.filter i {
  font-size: 23px;
}

#filter_area {
  background: transparent;
  padding: 0;
}
#filter_area ul {
  background: rgba(245, 245, 245, 0.8784313725);
  margin: 0 auto;
  padding: 0 10px;
}

#properties ul.property_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: row;
  gap: 20px 15px;
}
#properties ul.property_list > li {
  width: calc(33% - 8px);
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 7px #d3d3d3;
  width: calc(33% - 8px);
}
#properties ul.property_list > li.priority_listing_item {
  box-shadow: 1px 1px 3px rgba(255, 225, 0, 0.78), -1px -1px 3px rgba(255, 225, 0, 0.78);
  border: 1px solid rgba(255, 225, 0, 0.78);
}
@container (max-width: 940px) {
  #properties ul.property_list > li {
    width: calc(50% - 8px);
  }
}
@container (max-width: 600px) {
  #properties ul.property_list > li {
    width: calc(100% - 8px);
  }
}
#properties ul.property_list > li a {
  display: block;
  color: #343434;
  transition: 0.4s;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #properties ul.property_list > li a:hover {
    opacity: 0.7;
  }
}
#properties ul.property_list > li .img_box {
  display: block;
  position: relative;
  overflow: hidden;
}
#properties ul.property_list > li .img_media {
  width: 100%;
  height: auto;
  padding-top: 56%;
  background-color: #ddd;
  background-size: cover;
  background-position: center;
}
#properties ul.property_list > li .no_image {
  background-image: url(/images/no_image.png);
  background-size: 40%;
  background-repeat: no-repeat;
}
#properties ul.property_list > li .icons {
  display: flex;
  height: 40px;
}
#properties ul.property_list > li .icons .icons_left {
  display: flex;
  gap: 4px;
  flex-grow: 1;
  align-items: center;
}
#properties ul.property_list > li .icons .icons_left > div {
  font-size: 12px;
  font-size: 1.1rem;
  line-height: 1;
  padding: 3px 6px;
  color: #fff;
}
#properties ul.property_list > li .icons .icons_left .online_booking {
  display: none;
  border: none;
}
#properties ul.property_list > li .icons .icons_left .online_booking.blue {
  display: inline-block;
  background: #0067db;
}
#properties ul.property_list > li .icons .icons_left .online_booking.gray {
  display: inline-block;
  background: #999;
  color: #fff;
}
#properties ul.property_list > li .icons .icons_left .priority_listing,
#properties ul.property_list > li .icons .icons_left .furnished {
  display: inline-block;
  border: none;
}
#properties ul.property_list > li .icons .icons_left .priority_listing {
  border: 1px solid rgb(51, 51, 51);
  color: rgb(51, 51, 51);
}
#properties ul.property_list > li .icons .icons_left .furnished {
  background: #ff8686;
}
#properties ul.property_list > li .icons .icons_right {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  position: relative;
  top: 4px;
  right: -1px;
}
#properties ul.property_list > li .icons .icons_right .favorite {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #999;
  font-size: 15px;
}
#properties ul.property_list > li .icons .icons_right .favorite i {
  position: relative;
}
#properties ul.property_list > li .icons .icons_right .favorite.is-active {
  color: #E55A7A;
  border-color: #E55A7A;
}
#properties ul.property_list > li .text_box {
  background: #fff;
  padding: 0px 6px 6px 10px;
  flex-grow: 1;
  flex-direction: column;
  display: flex;
}
@media screen and (max-width: 1200px) {
  #properties ul.property_list > li .text_box {
    padding: 0px 6px 6px 6px;
  }
}
#properties ul.property_list > li .text_box_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#properties ul.property_list > li .text_box_bottom .text_box_bottom_header {
  width: 180px;
  flex-grow: 1;
}
#properties ul.property_list > li .text_box .info_01 {
  color: #191970;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 10px;
}
#properties ul.property_list > li .text_box .property_title {
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 2px solid #d9d9d9;
  font-size: 15px;
}
#properties ul.property_list > li .text_box .property_title .property_title_text {
  display: -webkit-box;
  line-height: 17px;
  height: 34px;
  max-height: 34px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
#properties ul.property_list > li .text_box .logo {
  text-align: end;
}
@media screen and (min-width: 768px) {
  #properties ul.property_list > li .text_box .logo {
    margin: auto 0px 0px;
  }
}
#properties ul.property_list > li .text_box .logo img {
  height: 45px;
}
#properties ul.property_list > li .text_box .address {
  position: relative;
  font-size: 13px;
  line-height: 1.3;
  padding-left: 17px;
  margin-bottom: 4px;
  flex-grow: 1;
}
#properties ul.property_list > li .text_box .price,
#properties ul.property_list > li .text_box .date,
#properties ul.property_list > li .text_box .term {
  position: relative;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  margin-top: 10px;
  margin-bottom: 4px;
  margin-right: 15px;
  padding-left: 17px;
  color: #555;
}
#properties ul.property_list > li .text_box .price .bold,
#properties ul.property_list > li .text_box .date .bold,
#properties ul.property_list > li .text_box .term .bold {
  font-size: 13px;
  font-weight: bold;
}
#properties ul.property_list > li .text_box .price {
  margin-top: 5px;
  margin-bottom: 4px;
}
#properties ul.property_list > li .text_box .address:before,
#properties ul.property_list > li .text_box .price:before,
#properties ul.property_list > li .text_box .date:before,
#properties ul.property_list > li .text_box .term:before {
  position: absolute;
  display: inline-block;
  content: "\f274";
  font-size: 13px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  width: 14px;
  top: 0px;
  left: 0px;
  text-align: center;
}
#properties ul.property_list > li .text_box .address:before {
  content: "\f3c5";
}
#properties ul.property_list > li .text_box .price:before {
  content: "\f51e";
}
#properties ul.property_list > li .text_box .date:before {
  content: "\f274";
}
#properties ul.property_list > li.ad_item {
  container-type: inline-size;
}
#properties ul.property_list > li.ad_item .info_01 {
  margin-bottom: 4px;
}
#properties ul.property_list > li.ad_item .text_box {
  justify-content: flex-start;
}
#properties ul.property_list > li.ad_item .text_box .ad_text {
  margin-bottom: auto;
}
#properties ul.property_list > li.ad_item .text_box .ad_text div {
  font-size: 14px;
}
#properties ul.property_list > li.ad_item .text_box .ad_service_name {
  text-align: right;
  border-top: 1px solid #ccc;
  padding-top: 4px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  color: #5d5d5d;
}
#properties ul.property_list > li.ad_item .text_box .ad_service_name span {
  border: 1px solid #d7d7d7;
  color: #636363;
  padding: 1px 7px;
  display: inline-block;
  margin-right: 6px;
  font-size: 12px;
  background: #f7f7f7;
}
@container (max-width: 342px) {
  #properties ul.property_list > li.ad_item .info_01 {
    font-size: 15px;
  }
  #properties ul.property_list > li.ad_item .text_box .ad_text div {
    font-size: 12px;
  }
  #properties ul.property_list > li.ad_item .text_box .ad_service_name {
    font-size: 12px;
  }
}
@container (max-width: 310px) {
  #properties ul.property_list > li.ad_item .info_01 {
    font-size: 14px;
  }
}

ul.selected li {
  display: none;
}

ul.selected li.selected {
  display: block;
}

body.ja .property_list li .online_booking {
  display: none;
}

.map_area {
  width: 40%;
  height: var(--app-vh, 100vh);
  position: relative;
  border: 0px;
  touch-action: manipulation;
}
.map_area .map_box {
  width: 100%;
  max-width: none;
  height: 100%;
}
@media screen and (max-width: 1168px) {
  .map_area .map_box {
    width: 100%;
  }
}
.map_area #map {
  width: 100%;
}
.map_area .handle {
  display: none;
}
@media screen and (max-width: 1168px) {
  .map_area {
    position: fixed;
    top: 0;
    right: 0;
    bottom: calc(var(--app-vh, 100vh) * 0.2);
    height: auto;
  }
}
.map_area:after {
  display: none;
}

#progressWindow {
  background-color: rgba(0, 0, 0, 0.3);
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 100000000;
  justify-content: center;
  align-items: center;
  touch-action: manipulation;
}
#progressWindow:after {
  content: "\f110";
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  color: #fff;
  animation: rotation 1.7s linear infinite;
  font-size: 50px;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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