@charset "UTF-8";
/* var */
/* color*/
/* media query(break point) */
/* animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ヘッダー */
.headimg.srchlist .inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.srchlist__result .large {
  font-family: "Barlow Condensed";
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 3px;
}

/* 物件一覧
----------------------------------------------*/
/* レイアウト */
.main {
  display: flex;
}

.main__menu {
  width: 25%;
  padding-left: 30px;
}

.main__list {
  width: 75%;
  padding-bottom: 2rem;
}

.main__menu .condpanel {
  background-color: #fff;
  border: 1px solid #30af41;
  margin-bottom: 1.5rem;
}

/* デザイン */
.text-lead {
  margin-bottom: 1.5rem;
}

/*ページャー */
.pagination {
  display: flex;
}

.pagination .page-item {
  border: 1px solid #30af41;
  color: #30af41;
  display: block;
  width: 42px;
  text-align: center;
}

.pagination .page-item:not(:last-child) {
  margin-right: 8px;
}

.pagination .page-item.active .page-link {
  background-color: #30af41;
  color: #fff;
}

.pagination .page-link {
  background-color: #fff;
  color: #30af41;
  display: block;
  font-family: Verdana;
  line-height: 40px;
  transition: 0.3s;
}

.pagination .page-link:hover {
  background-color: #30af41;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .pagination {
    flex-wrap: wrap;
  }
  .pagination .page-item {
    margin-bottom: 3px;
    width: 30px;
  }
  .pagination .page-link {
    line-height: 28px;
  }
}

/* 操作（まとめてお気に入り・ソート）*/
.operation {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.operation .btn-fav {
  border-radius: 10px;
}

.operation .btn-fav::before {
  font-size: 1.2em;
}

.operation__main {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 75%;
}

.operation__baloon {
  align-items: center;
  background-color: #EEF4ED;
  border-radius: 12px;
  display: flex;
  padding: 10px 1rem;
}

.operation__text {
  color: #30af41;
  font-weight: 600;
}

.operation__text::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  margin-right: 5px;
}

.operation__btn {
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
  padding: 0.5rem 0.8rem;
  transition: 0.3s;
}

.operation__btn.operation__btn-fav {
  background-color: #fff;
  border-color: #cecece;
  color: #656565;
}

.operation__btn.operation__btn-fav:hover {
  background-color: #eee;
}

.operation__btn.operation__btn-contact {
  background-color: #30af41;
  border-color: #30af41;
  color: #fff;
}

.operation__btn.operation__btn-contact:hover {
  opacity: 0.8;
}

.operation__sort {
  align-items: center;
  display: flex;
  padding-left: 30px;
  width: 25%;
}

.operation__sort .select select {
  color: #808486;
  font-size: 13px;
  font-weight: 600;
  padding: 0.6rem 1rem;
  padding-right: 40px;
}

.operation__sort-text {
  color: #656565;
  font-size: 13px;
  font-weight: 600;
  margin-right: 1rem;
}

@media screen and (max-width: 767px) {
  .operation {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .operation .btn-fav {
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    width: 100%;
  }
  .operation__main {
    flex-wrap: wrap;
    width: 100%;
  }
  .operation__baloon {
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .operation__text {
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .operation__btn {
    margin-left: 0;
    text-align: center;
    width: 49%;
  }
  .operation__btn.operation__btn-contact {
    margin-left: 2%;
  }
  .operation__sort {
    padding-left: 0;
    width: 100%;
  }
}

/* 条件パネル表示制御
----------------------------------------------*/
@media screen and (max-width: 767px) {
  .jq-showMoreTarget {
    display: none;
    padding-bottom: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .jq-showMoreTargetPC {
    display: none;
  }
}

/* 物件ブロック
-------------------------------------------- */
.build {
  border-top: 5px solid #30af41;
  padding-bottom: 2rem;
  padding-top: 2rem;
  margin-bottom: 2rem;
}

.build__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.build__img {
  width: 22%;
}

.build__datas {
  padding-left: 1.5rem;
  width: 78%;
}

.build__address {
  color: #30af41;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.build__address .type {
  background-color: #fff;
  border: 1px solid #30af41;
  border-radius: 15px;
  display: inline-block;
  font-size: 0.6em;
  font-weight: normal;
  line-height: 1;
  margin-right: 10px;
  padding: 0.3rem 0.5rem;
  vertical-align: text-bottom;
}

.build__detail {
  display: flex;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
  padding: 0.5rem 0;
  justify-content: space-between;
}

.build__detail-item {
  display: flex;
  flex-basis: 50%;
  flex-wrap: wrap;
  padding: 0 0.5rem;
}

.build__detail-item:not(:last-child) {
  border-right: 1px solid #eee;
}

.build__detail-title {
  color: #656565;
  font-size: 14px;
  margin-bottom: 0.3rem;
  width: 4rem;
}

.build__detail-data {
  color: #041025;
  width: calc( 100% - 4rem);
}

@media screen and (max-width: 767px) {
  .build {
    padding-bottom: 0;
  }
  .build__img {
    width: 60px;
  }
  .build__datas {
    width: calc(100% - 60px);
  }
  .build__info {
    background-color: #f4f4f4;
    border-bottom: 1px solid #cecece;
    margin-bottom: 0;
    padding: 1rem;
  }
  .build__address {
    border-bottom: 1px solid #ccc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.2rem;
  }
  .build__detail {
    border: none;
    flex-direction: column;
    font-size: 13px;
    margin-left: calc(-60px - 1.5rem);
    padding: 0;
    padding-top: 1.25rem;
  }
  .build__detail-title {
    font-size: 13px;
  }
  .build__detail-item {
    align-items: flex-start;
    display: flex;
    justify-content: flex-start;
    padding: 0;
    width: 100%;
  }
}

/* 部屋ブロック
-------------------------------------------- */
.room .checkbox input[type="checkbox"] {
  display: none;
}

.room .checkbox input[type="checkbox"] + label::before {
  background: #fff;
  border: 1px solid #30af41;
  border-radius: 4px;
  content: '';
  cursor: pointer;
  display: inline-block;
  height: 18px;
  width: 18px;
  margin-top: -0.25em;
  margin-right: 0.5em;
  vertical-align: middle;
}

.room .checkbox input[type="checkbox"]:checked + label {
  position: relative;
}

.room .checkbox input[type="checkbox"]:checked + label::before {
  background-color: #30af41;
}

.room .checkbox input[type="checkbox"]:checked + label::after {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  content: '';
  display: block;
  height: 8px;
  position: absolute;
  transform: rotate(-45deg);
  width: 10px;
  top: 4px;
  left: 4px;
}

.room__body,
.room__head {
  align-items: center;
  display: flex;
}

.room__body .room__cell:nth-child(1),
.room__head .room__cell:nth-child(1) {
  width: 5.5%;
}

.room__body .room__cell:nth-child(2),
.room__head .room__cell:nth-child(2) {
  width: 14.5%;
}

.room__body .room__cell:nth-child(3),
.room__head .room__cell:nth-child(3) {
  width: 14.5%;
}

.room__body .room__cell:nth-child(4),
.room__head .room__cell:nth-child(4) {
  width: 7%;
}

.room__body .room__cell:nth-child(5),
.room__head .room__cell:nth-child(5) {
  width: 18%;
}

.room__body .room__cell:nth-child(6),
.room__head .room__cell:nth-child(6) {
  width: 17%;
}

.room__body .room__cell:nth-child(7),
.room__head .room__cell:nth-child(7) {
  width: 8%;
}

.room__body .room__cell:nth-child(8),
.room__head .room__cell:nth-child(8) {
  width: 15.5%;
}

.room__body .room__cell {
  padding: 0.8rem;
}

.room__body .room__cell.deposit {
  color: #808486;
  text-align: left;
}

.room__body .room__cell .em {
  color: #041025;
}

.room__body .room__cell.price .num {
  color: #30af41;
  font-size: 24px;
  margin-right: 3px;
}

.room__body .room__cell.price .weak {
  color: #808486;
}

.room__body .room__cell img {
  max-height: 80px;
}

.room__head {
  background-color: #EEF4ED;
  border: 1px solid #cecece;
  color: #30af41;
  padding: 0.5rem 0;
  text-align: center;
}

.room__head p {
  font-size: 14px;
  font-weight: 600;
}

.room__body {
  border: 1px solid #cecece;
  border-top: none;
  font-weight: 600;
  text-align: center;
}

.room__btn {
  background-color: #fff;
  border: 3px solid #30af41;
  border-radius: 10px;
  color: #30af41;
  display: block;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.5rem 0.25rem;
  transition: 0.3s;
}

.room__btn:hover {
  background-color: #30af41;
  color: #fff;
}

/* お気に入りボタン */
.room__favbtn.is--done::before {
  font-weight: 600;
}

.room__favbtn::before {
  content: "\f004";
  color: #30af41;
  cursor: pointer;
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-size: 24px;
  font-weight: 300;
  line-height: 20px;
  width: 20px;
  text-align: center;
  transition: 0.3s;
}

.room__favbtn-text {
  display: none;
}

@media screen and (min-width: 768px) {
  .room__favbtn:hover::before {
    font-weight: 600;
  }
  .room__favbtn:active::before {
    transform: scale(1.5);
  }
}

@media screen and (max-width: 767px) {
  .room__head {
    display: none;
  }
  .room__body {
    flex-wrap: wrap;
  }
  .room__body .room__cell {
    font-size: 13px;
    padding: 0.5rem 0.3rem;
  }
  .room__body .room__cell:nth-child(1) {
    width: 16%;
  }
  .room__body .room__cell:nth-child(2) {
    width: 42%;
  }
  .room__body .room__cell:nth-child(3) {
    width: 42%;
  }
  .room__body .room__cell:nth-child(4) {
    width: 20%;
  }
  .room__body .room__cell:nth-child(5) {
    width: 45%;
  }
  .room__body .room__cell:nth-child(6) {
    width: 35%;
  }
  .room__body .room__cell:nth-child(7) {
    width: 50%;
  }
  .room__body .room__cell:nth-child(8) {
    width: 50%;
  }
  .room__body .room__cell.price {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
  }
  .room__body .room__cell.price span:nth-child(2n + 1) {
    width: 4em;
  }
  .room__body .room__cell.price span:nth-child(2n) {
    width: calc( 100% - 4em);
  }
  .room__body .room__cell.price .num {
    font-size: 18px;
    line-height: 1;
  }
  .room__body .room__cell img {
    max-height: 100px;
  }
  .room__btn {
    border-width: 1px;
    margin: auto;
    padding: 0.5rem;
    width: 80%;
  }
  .room__favbtn {
    border: 1px solid #30af41;
    border-radius: 10px;
    color: #30af41;
    font-size: 14px;
    padding: 0.5rem;
    transition: 0.3s;
    white-space: nowrap;
  }
  .room__favbtn.is--done {
    background-color: #30af41;
    color: #fff;
  }
  .room__favbtn::before {
    font-size: 14px;
  }
  .room__favbtn.is--done::before {
    color: #fff;
  }
  .room__favbtn-text {
    display: inline-block;
    margin-left: 0.5rem;
  }
}

/* 検索条件パネル */
.condpanel {
  padding: 1.5rem;
  color: #585858;
}

.condpanel__areabtn {
  cursor: pointer;
  display: block;
  font-size: 14px;
}

.condpanel__areabtn-text {
  color: #2E64F5;
  text-decoration: underline;
  transition: 0.3s;
}

.condpanel__areabtn-text:hover {
  opacity: 0.7;
  text-decoration: none;
}

.condpanel__areabtn::before {
  content: "\f067";
  color: #e1e1e1;
  font-family: "Font Awesome 5 pro";
  font-weight: 600;
  margin-right: 0.3rem;
}

.condpanel__arealist {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 0.3rem;
  display: none;
  /* 初期表示 */
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
}

.condpanel__arealist a {
  font-size: 14px;
  line-height: 1.6;
}

.condpanel__arealist li:not(:last-child) {
  margin-bottom: 0.3rem;
}

.condpanel__arealist a {
  color: #707070;
  text-decoration: underline;
}

.condpanel__arealist a:hover {
  color: #4e4e4e;
  text-decoration: none;
}

.condpanel__item .txt-selected {
  font-size: 16px;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.condpanel__item .areaselect-link {
  background-color: #EEF4ED;
  border: 1px solid #30af41;
  border-radius: 0.8rem;
  color: #30af41;
  display: block;
  font-size: 13px;
  padding: 0.8rem;
  text-align: center;
  transition-duration: 0.3s;
}

.condpanel__item .areaselect-link:hover {
  background-color: #fff;
}

.condpanel__item-title {
  border-left: 5px solid #30af41;
  color: #30af41;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  padding-left: 1rem;
  margin-bottom: 0.8rem;
}

.condpanel .condpanel__item:not(:last-child) {
  margin-bottom: 1.5rem;
}

.condpanel .select {
  width: 100%;
}

.select {
  position: relative;
}

.select::after {
  content: "";
  display: block;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  width: 0.5rem;
  height: 0.5rem;
  border-left: 2px solid #CDD6DD;
  border-bottom: 2px solid #CDD6DD;
  transform: rotate(-45deg) translateY(-50%);
  margin-top: -0.25rem;
}

.select select {
  width: 100%;
  background-color: #fff;
  border: 1px solid #CDD6DD;
  outline: none;
  padding: 0.5rem;
  color: #CDD6DD;
}

.select select:focus {
  color: #656565;
}

.select-range {
  align-items: center;
  display: flex;
}

.condpanel label a {
  color: #656565;
  transition: 0.3s;
}

.condpanel label a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.condpanel input[type="checkbox"] {
  display: none;
}

.condpanel input[type="checkbox"] + label {
  cursor: pointer;
  color: #656565;
  display: block;
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.condpanel input[type="checkbox"] + label::before {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  content: '';
  display: inline-block;
  height: 1.8rem;
  width: 1.8rem;
  margin-top: -0.25em;
  margin-right: 0.5em;
  vertical-align: middle;
}

.condpanel input[type="checkbox"]:checked + label::after {
  border-bottom: 3px solid #b5b5b5;
  border-left: 3px solid #b5b5b5;
  content: '';
  display: block;
  height: 0.5em;
  position: absolute;
  transform: rotate(-45deg);
  width: 0.8em;
  top: 6px;
  left: 9px;
}

.checkboxlist input[type="checkbox"]:not(:last-child) + label {
  margin-bottom: 0.6rem;
}

.condpanel .btn-submit {
  background-color: #30af41;
  border-radius: 0.8rem;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  padding: 1rem;
  text-align: center;
  transition: 0.3s;
  width: 100%;
}

.condpanel .btn-submit:hover {
  opacity: 0.8;
}

.condpanel .btn-more {
  color: #b5b5b5;
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.condpanel .btn-more.is-show::after {
  border-bottom: none;
  border-left: none;
  border-top: 3px solid #b5b5b5;
  border-right: 3px solid #b5b5b5;
  margin-bottom: -5px;
}

.condpanel .btn-more::after {
  border-bottom: 3px solid #b5b5b5;
  border-left: 3px solid #b5b5b5;
  content: "";
  display: inline-block;
  height: 0.7rem;
  margin-left: 1.5rem;
  transform: rotate(-45deg) translateY(-40%);
  width: 0.7rem;
}

@media screen and (max-width: 767px) {
  .main {
    flex-direction: column;
  }
  .main__menu,
  .main__list {
    width: 100%;
  }
  .main__menu {
    order: 1;
    padding-left: 0;
  }
  .main__list {
    order: 2;
  }
  .condpanel .btn-submit {
    margin-bottom: 0.5rem;
    padding: 1rem;
  }
  .condpanel__arealist {
    background-color: transparent;
    border: none;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
    padding: 0;
  }
  .condpanel__arealist li {
    float: left;
    width: 48%;
  }
  .condpanel__arealist li:nth-child(2n + 1) {
    margin-right: 4%;
  }
  .condpanel__arealist li a {
    background-color: #fff;
    border: 1px solid #eee;
    display: block;
    font-size: 1rem;
    line-height: 2.4rem;
    padding: 0 0.5rem;
    width: 100%;
  }
  .condpanel__areabtn-text {
    font-size: 1rem;
  }
}

.othermeans {
  margin-bottom: 4rem;
}

/* SEOリンク */
.sponly {
  display: none;
}

.userguide-parts {
  margin-bottom: 4rem;
}

.userguide-parts .area-link .title {
  font-size: 18px;
  font-weight: bold;
  color: #64905D;
}

.userguide-parts .area-link .s-title {
  margin: 24px 0 13px;
}

.userguide-parts .area-link ul {
  display: flex;
  flex-wrap: wrap;
}

.userguide-parts .area-link ul li {
  line-height: 1.3;
}

.userguide-parts .area-link ul li a {
  font-size: 13px;
  color: #64905D;
}

.userguide-parts .area-link ul li:not(:last-child)::after {
  content: "|";
  margin: 0 7px;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .pconly {
    display: none;
  }
  .userguide-parts .area-link {
    padding: 0;
  }
  .userguide-parts .area-link .inner {
    padding: 0 2px;
  }
  .tablist-popular.tablist__tab {
    display: none;
  }
  .tablist__tab-item.is-active {
    background-color: #fff;
    border-bottom-color: #fff;
  }
  .tablist__tab-item {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.5rem 0.25rem;
  }
  .tablist__tab-item {
    background-color: #f4f4f4;
    border: 1px solid #e1e1e1;
    border-top-left-radius: 0.6rem;
    border-top-right-radius: 0.6rem;
    color: #1c1c1c;
    cursor: pointer;
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: -1px;
    padding: 1.25rem;
    text-align: center;
    transition: 0.3s;
    user-select: none;
    width: 31.6%;
  }
  .seolinks__title {
    line-height: 1.5;
  }
  .seolinks-srchcond + .is-closed {
    display: none;
  }
  .tablist__tab {
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    justify-content: space-between;
  }
  .tablist-popular .seolinks__title {
    display: none;
  }
  .tablist-popular .seolinks__title {
    display: block;
  }
  .tablist-popular .tablist-target {
    display: block;
    padding-top: 0;
  }
  .btnlinks {
    border-left: 1px solid #cecece;
    border-top: 1px solid #cecece;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
  }
  .seolinks-srchcond.is-opened::before {
    content: "\f068";
  }
  .seolinks-srchcond::before {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    color: #30AF41;
    font-size: 1.5rem;
    font-weight: 600;
    height: auto;
    width: auto;
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    transition-duration: 0.3s;
  }
  .btnlinks__item {
    border-bottom: 1px solid #30AF41;
    border-right: 1px solid #30AF41;
    border-top: none;
    border-left: 1px solid #30AF41;
    border-radius: 0;
    display: block;
    flex-basis: 100%;
    font-size: 1.15rem;
    font-weight: 500;
    margin-right: 0;
    padding: 1.25rem 1rem;
    text-decoration: none;
  }
  .seolinks-srchcond {
    background-color: #fff;
    border: 1px solid #30AF41;
    color: #30AF41;
    font-size: 1rem;
    margin-bottom: 0;
    padding: 1.5rem 0.5rem 1.5rem 2.5rem;
    position: relative;
    text-align: center;
    transition-duration: 0.3s;
  }
  .seolinks-srchcond-title {
    background-color: #30AF41;
    border: 1px solid #30AF41;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0;
    padding: 1.5rem 0.5rem 1.5rem 2.5rem;
    position: relative;
    text-align: center;
    transition-duration: 0.3s;
  }
  a.btnlinks__item {
    color: #64905D;
  }
}
/*# sourceMappingURL=srchlist.css.map */