@charset "UTF-8";
body {
  overflow: hidden;
  display: flex;
  user-select: none;
}

.flex {
  align-items: center;
}

main {
  overflow-y: scroll;
  height: 100vh;
  flex: 1;
  min-width: 828px;
  width: 60%;
}
main #progressWindow {
  position: sticky;
  touch-action: manipulation;
}
@media screen and (max-width: 1168px) {
  main {
    min-width: auto;
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    height: 70vh;
    border-radius: 30px 30px 0 0;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5215686275);
    overflow-y: hidden;
    transition: height 0.3s ease;
  }
  main #progressWindow {
    position: absolute;
    touch-action: manipulation;
  }
}
@media screen and (min-width: 1168px) {
  main {
    height: 100vh !important;
  }
}

#wrapper {
  display: flex;
  flex-direction: column;
}

.inner {
  width: 100%;
}

header {
  container-type: inline-size;
  position: relative;
  width: 100%;
  height: 70px;
  background: #fff;
  box-shadow: 0px 0px 15px -5px #bababa;
  z-index: 100;
}

#headerMenuDialog {
  container-type: inline-size;
  transition: top 0.5s ease-in-out; /* アニメーション効果 */
}
#headerMenuDialog.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 1;
}
#headerMenuDialog.animation {
  top: -100px;
}
#headerMenuDialog.filter_opened #filter_area {
  height: auto;
  max-height: 500px;
}
#headerMenuDialog.filter_opened li.filter button {
  background-color: rgba(188, 168, 135, 0.6588235294);
}
#headerMenuDialog.filter_opened li.filter button:hover {
  background-color: #d1be9f;
}

#headerMenu {
  background: #000;
  padding: 11px 20px;
}
#headerMenu ul {
  display: flex;
  justify-content: flex-start;
  position: relative;
  gap: 10px 0;
}
#headerMenu li {
  border-right: 0.5px solid rgba(255, 255, 255, 0.5803921569);
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
#headerMenu li.pulldown:after {
  background-image: url(/images/luxe/arrow_wt.svg);
  width: 18px;
  height: 11px;
  position: absolute;
  content: "";
  top: 51%;
  right: 4px;
  transform: translate(0%, -50%);
  background-size: 70%;
  background-repeat: no-repeat;
}
#headerMenu li.movein {
  width: 230px;
}
#headerMenu li.movein .result {
  line-height: 28px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}
#headerMenu li.movein .result span {
  display: inline-block;
}
#headerMenu li.movein .result .to, #headerMenu li.movein .result .from {
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
#headerMenu li.movein .result .separator {
  display: inline-block;
  margin: 0 5px;
}
#headerMenu li.term {
  border: none;
}
#headerMenu li.search_btn_box {
  border: none;
  padding: 0;
  width: 170px;
}
#headerMenu li.filter {
  width: 60px;
  max-width: 60px;
  padding: 0;
  margin-left: 10px;
  border: none;
}
#headerMenu li.filter i {
  vertical-align: text-top;
  font-size: 28px;
}
#headerMenu li button {
  background: none;
  color: #fff;
  font-weight: 300;
  border: 1px solid #fff;
  padding: 10px 0;
  cursor: pointer;
  width: 100%;
  height: 50px;
}
#headerMenu li button:hover {
  background: #fff;
  color: #000;
}
#headerMenu .ttl {
  color: #A6A6A6;
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}
#headerMenu .result {
  color: #fff;
  font-size: 1.8rem;
}
@container (width > 768px) and (width <= 1024px) {
  #headerMenu .ttl {
    font-size: 12px;
  }
  #headerMenu .result {
    font-size: 15px;
  }
  #headerMenu li.search {
    width: 60px;
  }
  #headerMenu li.movein {
    width: 160px;
  }
  #headerMenu li.movein .result {
    line-height: 16px;
    font-size: 14px;
  }
  #headerMenu li.term {
    width: 106px;
  }
}

#filter_area {
  display: flex;
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  background: #f5f5f5;
}
#filter_area ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 1080px;
  margin: auto;
  width: 100%;
  row-gap: 0px;
}
#filter_area li.sort_reset_group {
  display: flex;
  white-space: nowrap;
  align-items: center;
  padding: 5px 0;
}
#filter_area li.sort_reset_group .sort,
#filter_area li.sort_reset_group .filter_reset {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#filter_area li.sort_reset_group .filter_reset .label button.value_clear {
  font-size: 14px;
  font-weight: 400;
  background-color: #fff;
  color: #333;
  border: 1px solid #aaa;
  border-radius: 3px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
#filter_area li.sort_reset_group .filter_reset .label button.value_clear:hover {
  background-color: #f0f0f0;
}
@media screen and (max-width: 768px) {
  #filter_area li.sort_reset_group.sort {
    order: 2;
  }
  #filter_area li.sort_reset_group:not(.sort) {
    order: 1;
  }
}
#filter_area li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 5px 20px 5px 0px;
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: normal;
  cursor: pointer;
}
#filter_area li.pulldown:after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}
#filter_area li.pulldown .label {
  transition: 0.2s all;
}
#filter_area li.pulldown.on .label {
  font-size: 12px;
  color: #696969;
}
@media screen and (max-width: 768px) {
  #filter_area li.sort {
    align-items: center;
  }
}
#filter_area li.sort .value {
  font-size: 12px;
}
#filter_area li.spacer {
  flex: 1;
}

#filter_background {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 50;
}

#filter_popup {
  display: none;
}

#filterButton {
  display: none;
}

@media screen and (max-width: 1168px) {
  header.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    transition: transform 0.3s ease;
  }
  #headerMenuDialog {
    display: block;
    position: fixed;
    top: 70px;
    right: 0;
    z-index: 2;
    width: 100%;
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.5215686275);
    transition: transform 0.3s ease;
  }
}
@media screen and (min-width: 769px) {
  #headerMenuDialog {
    display: block !important;
  }
}
@media screen and (max-width: 768px) {
  header.header {
    box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.5215686275);
    height: 51px;
  }
  header.header .logo {
    width: 150px;
    top: 10px;
    left: 10px;
  }
  header.header .luxe_navi {
    top: 0px;
  }
  #headerMenuDialog {
    display: none;
    position: fixed;
    justify-content: center;
    align-items: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  #headerMenuDialog .dialogInner {
    width: 100%;
    background-color: #fff;
    padding: 40px 3%;
    margin: 3%;
    position: relative;
  }
  #headerMenuDialog .closeButton {
    position: absolute;
    top: -9px;
    right: 6px;
    font-size: 33px;
    cursor: pointer;
  }
  #headerMenuDialog .closeButton::after {
    content: "\f00d";
    font-family: "Font Awesome 5 Pro";
    font-weight: 100;
    color: #aaa;
  }
  #headerMenu {
    padding: 11px 0px;
  }
  #headerMenu li {
    border: none;
  }
  #headerMenu li.filter {
    display: none;
  }
  #filter_area {
    display: block;
    padding: 3%;
    max-height: inherit !important;
    height: auto !important;
  }
  #filter_area ul {
    gap: 10px;
  }
  #filter_area ul li {
    padding: 5px 10px;
    width: 48%;
    height: 40px;
  }
  #filter_area ul .sort {
    margin: auto;
    text-align: center;
  }
  #filterButton {
    position: fixed;
    display: flex;
    background-color: rgba(0, 0, 0, 0.59);
    width: 100%;
    color: rgb(255, 255, 255);
    bottom: 0px;
    z-index: 1;
    font-weight: 400;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
    cursor: pointer;
  }
  #filterButton i {
    font-size: 1.5rem;
  }
}
#popup_help {
  display: none;
}

.map_area {
  width: 0%;
  height: 100vh;
  position: relative;
  border: 5px solid #b89f75;
  touch-action: manipulation;
  transition: width 0.5s ease-in-out; /* アニメーション効果 */
}
.map_area::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 5px;
  height: 100%;
  background: #b89f75;
  z-index: 1;
}
.map_area #map {
  width: 40vw;
  height: 100%;
}
.map_area .map_box {
  width: calc(40vw - 10px);
  max-width: calc(100vw - 828px - 10px);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.map_area .map_box_cover {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-color: #ddd;
  z-index: 100;
}
.map_area .map_box iframe,
.map_area .map_box object,
.map_area .map_box embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.map_area .cluster > div {
  text-align: center;
  border-radius: 31px;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
}
.map_area .cluster > div > span {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  top: -7px;
  position: relative;
  font-family: "ivyjournal", "Noto Serif JP", sans-serif;
}
.map_area .handle {
  position: absolute;
  top: 30vh;
  left: -79px;
  width: 120px;
  height: 34px;
  line-height: 36px;
  color: #fff;
  background: #b89f75;
  border-radius: 10px 10px 0 0;
  text-align: center;
  z-index: 2000019;
  cursor: pointer;
  font-size: 20px;
  letter-spacing: 5px;
  font-weight: 200;
  transform: rotate(-90deg);
}
@media screen and (max-width: 1168px) {
  .map_area {
    width: 100% !important;
    height: calc(84vh - 70px);
    position: fixed;
    top: 70px;
    right: 0;
    z-index: 1;
    background: #fff;
    border: none;
  }
  .map_area .map_area::after {
    display: none;
  }
  .map_area .map_box {
    width: 100%;
    max-width: 100%;
  }
  .map_area #map {
    width: 100% !important;
  }
  .map_area .handle {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .map_area {
    width: 100% !important;
    height: 84vh;
    top: 0px;
  }
}

#properties {
  padding: 0 20px;
}
#properties .drag_handle {
  display: none;
}
#properties #result_message {
  max-width: 1080px;
  margin: auto;
  padding: 20px 0;
  font-weight: 400;
}
#properties #result_message .result_text {
  font-family: "ivyjournal", "Noto Serif JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #b89f75;
}
#properties #result_message .map_filter_message {
  display: none;
  color: #fff;
  background-color: #e04006;
  padding: 1px 8px 1px;
  cursor: pointer;
  font-size: 15px;
  margin-left: 20px;
  z-index: 3;
}
#properties #result_list {
  container-type: inline-size;
  padding-bottom: 40px;
}
#properties #selectedList {
  display: none;
}
#properties .property_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#properties .property_list .result_box {
  margin-bottom: 30px;
  font-family: "ivyjournal", "Noto Serif JP", sans-serif;
  max-width: 1080px;
  aspect-ratio: 40/9;
  margin: auto;
  border-radius: 20px;
  box-shadow: 0px 0px 15px -5px #bababa;
  transition: 0.8s all;
  overflow: hidden;
}
#properties .property_list .result_box:hover {
  box-shadow: 0px 0px 15px -5px #727272;
}
#properties .property_list .result_box a {
  opacity: 1;
}
#properties .property_list .result_box .flex_wrap {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: stretch;
  overflow: hidden;
  height: 100%;
}
#properties .property_list .result_box .img_box_all {
  height: 100%;
  position: relative;
  width: 40%;
  overflow: hidden;
}
#properties .property_list .result_box .img_box {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease-in-out;
}
#properties .property_list .result_box .txt {
  display: flex;
  flex-direction: column;
  width: 60%;
  height: 100%;
  padding: 15px 20px 9px;
  justify-content: space-between;
}
#properties .property_list .result_box h1 {
  font-size: 1.7rem;
  font-weight: 500;
  transition: 0.2s all;
  line-height: 1.4;
}
#properties .property_list .result_box .icon_area1 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
#properties .property_list .result_box .icon_area1 .availablefrom {
  bottom: 0;
}
#properties .property_list .result_box .icon_area1 li {
  display: flex;
  font-size: 12.5px;
  font-weight: 300;
}
#properties .property_list .result_box .icon_area1 img {
  margin-right: 5px;
  width: 13px;
}
#properties .property_list .result_box .icon_area1 .date {
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  margin-top: 3px;
}
#properties .property_list .result_box .icon_area1 > div {
  display: flex;
  gap: 5px;
  flex-direction: column;
  font-size: 11px;
}
#properties .property_list .result_box .icon_area1 .label {
  background: #3A3A3A;
  border-radius: 90px;
  color: #fff;
  font-size: 11px;
  font-weight: 300;
  width: 100px;
  padding: 5px 2px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0;
}
#properties .property_list .result_box .icon_area1 .label.online_booking {
  display: none;
}
#properties .property_list .result_box .icon_area1 .label.online_booking.blue {
  display: block;
}
#properties .property_list .result_box .icon_area2 {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 10px;
  border-bottom: 1px solid #d1d1d1;
  padding-bottom: 8px;
  gap: 10px;
}
#properties .property_list .result_box .icon_area2 li {
  display: flex;
  position: relative;
  display: inline-block;
  cursor: pointer;
}
#properties .property_list .result_box .icon_area2 li::after {
  content: attr(data-tooltip);
  white-space: pre-line;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 10;
  width: max-content;
  max-width: 200px;
}
#properties .property_list .result_box .icon_area2 li:hover::after, #properties .property_list .result_box .icon_area2 li.active::after {
  opacity: 1;
}
#properties .property_list .result_box .icon_area2 img {
  width: 30px;
}
#properties .property_list .result_box .price_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 110px;
  margin-top: 11px;
}
#properties .property_list .result_box .price_wrap .price {
  padding-right: 20px;
  font-family: "ivyjournal", "Noto Serif JP", sans-serif;
  line-height: 1;
}
#properties .property_list .result_box .price_wrap .price .main {
  color: #BCA887;
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0;
}
#properties .property_list .result_box .price_wrap .price .month {
  font-size: 1.5rem;
  letter-spacing: 0;
}
#properties .property_list .result_box .price_wrap .left img {
  max-height: 45px;
  max-width: 120px;
}
#properties .property_list .result_box .price_wrap .label {
  display: inline-block;
  margin-bottom: 5px;
}
#properties .property_list .result_box .more {
  background: #BCA887;
  padding: 3px 10px 0px 21px;
  height: 49px;
  box-sizing: border-box;
  display: inline-block;
  border-radius: 18px 0 0 0;
  font-weight: 400;
  transition: opacity 0.7s;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 108px;
}
#properties .property_list .result_box .more span {
  position: relative;
  padding-right: 28px;
  transition: 0.2s all;
  display: inline-block;
  margin-top: 5px;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.3;
}
#properties .property_list .result_box .more span:before {
  background-image: url(/images/luxe/search/view.png);
  width: 22px;
  height: 6px;
  position: absolute;
  top: 45%;
  right: -9px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
}
#properties .property_list .result_box:hover .img_box {
  transform: scale(1.2);
}
#properties .property_list .result_box:hover .more {
  opacity: 0.8;
}
@container (width > 768px) and (width <= 1024px) {
  #properties .property_list .result_box .txt {
    padding: 5px 10px 3px;
  }
  #properties .property_list .result_box .icon_area1 li {
    font-size: 11.5px;
  }
  #properties .property_list .result_box .icon_area1 .date {
    font-size: 13px !important;
    margin-top: 1px;
  }
  #properties .property_list .result_box .icon_area2 {
    margin-top: 5px;
    padding-bottom: 2;
    gap: 4px;
  }
  #properties .property_list .result_box .icon_area2 img {
    width: 24px;
  }
  #properties .property_list .result_box .price_wrap {
    margin-top: 4px;
  }
  #properties .property_list .result_box .price_wrap .left img {
    max-height: 30px;
    max-width: 60px;
  }
  #properties .property_list .result_box .price_wrap .price {
    font-size: 14px;
    padding-right: 10px;
  }
  #properties .property_list .result_box .price_wrap .price .month {
    letter-spacing: 0;
  }
  #properties .property_list .result_box .price_wrap .price .main {
    font-size: 24px;
  }
  #properties .property_list .result_box .more {
    padding: 0px 8px 0px 21px;
    height: 40px;
  }
}
@container (max-width: 768px) {
  #properties .property_list .result_box {
    aspect-ratio: auto;
    max-width: 440px;
  }
  #properties .property_list .result_box .flex_wrap {
    flex-direction: column;
  }
  #properties .property_list .result_box .img_box_all {
    height: inherit;
    width: 100%;
    aspect-ratio: 16/9;
  }
  #properties .property_list .result_box .txt {
    width: 100%;
    height: auto;
    padding: 14px 14px 40px;
    gap: 4px;
  }
  #properties .property_list .result_box .icon_area1 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #properties .property_list .result_box .icon_area1 li {
    font-size: 14px;
  }
  #properties .property_list .result_box .icon_area1 li.date {
    font-size: 15px;
  }
  #properties .property_list .result_box .icon_area1 > div {
    flex-direction: row;
    padding: 10px;
  }
  #properties .property_list .result_box .icon_area1 .label {
    font-size: 13px;
    padding: 7px 5px;
    width: 127px;
  }
  #properties .property_list .result_box .icon_area2 {
    flex-wrap: wrap;
  }
  #properties .property_list .result_box .price_wrap {
    padding-right: 0px;
    margin-top: 11px;
    flex-wrap: wrap;
  }
  #properties .property_list .result_box .price_wrap .price {
    padding-right: 0px;
  }
  #properties .property_list .result_box .price_wrap .left img {
    max-height: 45px;
    max-width: 60px;
  }
  #properties .property_list .result_box .more {
    padding: 3px 10px 0px 21px;
    height: 34px;
    border-radius: 18px 0 0 0;
    width: 140px;
  }
  #properties .property_list .result_box .more span {
    padding-right: 28px;
    margin-top: 5px;
    font-size: 1.3rem;
  }
  #properties .property_list .result_box .more span:before {
    width: 22px;
    height: 6px;
  }
}
#properties .property_list #no_data {
  display: inline-block;
  margin: auto;
  font-size: 18px;
  color: #4b4b4b;
  font-weight: 400;
}
@media screen and (max-width: 1168px) {
  #properties {
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
  }
  #properties .drag_handle {
    position: absolute;
    display: block;
    height: 40px;
    top: 0;
    margin: auto;
    left: 0;
    right: 0;
    cursor: grab;
    z-index: 2;
  }
  #properties .drag_handle::before {
    content: "";
    display: block;
    width: 46px;
    height: 4px;
    background: #989898;
    margin: 0 auto;
    border-radius: 2px;
    pointer-events: none;
    top: 12px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #properties #result_message {
    padding: 20px 20px 10px;
    width: 100%;
    box-shadow: 0px -16px 7px 20px rgb(255, 255, 255);
  }
  #properties #result_list {
    overflow-y: scroll;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  #properties #result_list .property_list {
    flex: 1;
    padding: 20px;
  }
}

#errorPage {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}
#errorPage > div {
  background: #fff;
  padding: 20px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
  margin: 15px;
}
#errorPage h1 {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
#errorPage .buttons {
  display: flex;
  justify-content: center;
}
#errorPage .buttons a {
  display: inline-block;
  margin-top: 30px;
  background: #000;
  color: #fff;
  padding: 5px 20px;
  border-radius: 30px;
  transition: 0.6s;
  cursor: pointer;
}

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