@charset "utf-8";


/* ---------------------------------------------------------
 * list
** --------------------------------------------------------- */
div.conditions {
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #ececec;
}
div.conditions ul {
  font-size: 14px;
}
div.conditions li {
}
ul.search {
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
ul.search li {
  background-color: #fff;
}
ul.search li:not(:first-child) {
  border-top: 1px solid #ccc;
}
ul.search li a {
  position: relative;
  display: block;
  padding-left: 40px;
  padding: 10px 20px 10px 40px;
}
ul.search li a::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: block;
  width: 9px;
  height: 9px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
}
ul.search li a img {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
}
.outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.outline p {
  font-size: 18px;
  font-weight: bold;
}
.outline form {
}
.outline select {
}
ul.properties {
  margin-top: 20px;
}
ul.properties > li {
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 3px 3px 4px 0px rgba(0, 0, 0, 0.3);
}
ul.properties > li h2 {
  font-size: 18px;
  font-weight: bold;
  padding: 8px 12px;
}
ul.photos {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  overflow: auto;
/*  scrollbar-width: none;*/
}
ul.photos li {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
}
ul.photos li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
ul.near_stations {
  padding: 10px;
}
ul.near_stations li {
  border: none;
  box-shadow: none;
  margin: 0;
}
ul.rooms {
}
ul.rooms li {
  position: relative;
  border-top: 1px solid #ccc;
  background-image: linear-gradient(to top, #FDF3EB 44px, transparent 44px);
}
ul.rooms a {
  display: flex;
  justify-content: space-between;
  padding: 10px;
}
ul.rooms .img {
  width: 75px;
  height: 75px;
  background-color: #000;
  position: relative;
}
ul.rooms .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
ul.rooms .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 85px);
}
ul.rooms .cost {
  padding-right: 50px;
  color: var(--pri-color);
  font-size: 18px;
  font-weight: bold;
}
ul.rooms .cost span {
  font-size: 16px;
}
ul.rooms p {
  padding-right: 50px;
  font-size: 14px;
}
ul.rooms .initial_costs {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  font-size: 14px;
  line-height: 1;
}
ul.rooms .initial_costs .subttl {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px 8px;
  margin-right: 5px;
  background-color: #F98271;
  border-radius: 5px;
  color: #fff;
}
ul.rooms .initial_costs .zero {
  display: inline-block;
  margin-left: 5px;
  color: #F00;
  font-weight: bold;
}
ul.rooms .initial_costs .zero span {
  font-size: 24px;
}
ul.rooms .favorite {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px;
  cursor: pointer;
}


