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

header {
  container-type: inline-size;
  position: relative;
  width: 100%;
  height: 54px;
  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;
  }
}

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

#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;
}
#search_form ul li.search_btn_box button span {
  display: none;
}
@container (max-width: 768px) {
  #search_form ul li.search_btn_box button span:nth-child(1) {
    display: inline-block;
  }
}
@container (width > 768px) and (width <= 1024px) {
  #search_form ul li.search_btn_box button span:nth-child(2) {
    display: inline-block;
  }
}
@container (min-width: 1025px) {
  #search_form ul li.search_btn_box button span:nth-child(1) {
    display: inline-block;
  }
}
#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;
  border: 1px solid #c9c9c9;
  box-shadow: 1px 1px 7px #d3d3d3;
  width: calc(33% - 8px);
}
@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;
}
@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 .online_booking {
  display: none;
  position: absolute;
  color: #fff;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
  top: 6px;
  right: 6px;
}
#properties ul.property_list > li .online_booking.blue {
  display: inline-block;
  background: #0067db;
}
#properties ul.property_list > li .online_booking.gray {
  display: inline-block;
  background: #999;
  color: #fff;
}
#properties ul.property_list > li .furnished {
  display: inline-block;
  color: #ffffff;
  font-size: 12px;
  font-size: 1.1rem;
  line-height: 1;
  background: rgba(255, 134, 134, 0.6784313725);
  border: 1px solid #fff;
  padding: 2px 6px;
  position: absolute;
  bottom: 6px;
  left: 6px;
}
#properties ul.property_list > li .text_box {
  background: #fff;
  padding: 10px 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: 10px 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: 12px;
}
#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";
}

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: 100vh;
  position: relative;
  border: 0px;
  touch-action: manipulation;
}
.map_area .handle {
  display: none;
}
@media screen and (max-width: 1168px) {
  .map_area {
    top: 0;
  }
}
.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 */
