<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/** ***************************************************************************
 * 探す 共用
 * ************************************************************************* */

#search {
  margin-bottom: 50px;
  padding: 30px 0 80px;
  background: #e8f9f7 url("../_image/_common/image-bg-1.jpg") center bottom repeat-x;
}

#search div.body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

#search .search-contents {
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
}

#search .search-contents ~ .search-contents {
  margin-top: 20px;
}

#search .search-contents div.contents {
  padding: 10px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #search div.body {
    flex-direction: row;
    align-items: stretch;
  }

  #search .search-contents {
    width: 49.2%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  #search .search-contents ~ .search-contents {
    margin-top: 0;
  }

  #search .search-contents div.contents {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
  }

}

/** ***************************************************************************
 * タイトル
 */

#search .search-contents .contents-title {
  width: 100%;
  padding: 6px 2.5em 8px 2.5em;
  color: #fff;
  line-height: 1.4;
  font-size: 1.125em;
  font-weight: 500;
  justify-content: center;
  position: relative;
  z-index: 1;
}

#search .search-contents .contents-title::before {
  width: 2em;
  height: 100%;
  background-color: #fff;
  opacity: 0.5;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 3px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #search .search-contents .contents-title {
    font-size: 1.5em;
  }

}

/** ***************************************************************************
 * 一覧
 */

#search .search-contents ul.list {
  max-width: none;
  margin-left: -4px;
  margin-right: -4px;
  margin-bottom: -8px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

#search .search-contents ul.list li {
  width: calc(50% - 8px);
  margin-left: 4px;
  margin-right: 4px;
  margin-bottom: 8px;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

#search .search-contents ul.list li a {
  height: 100%;
  color: inherit;
  letter-spacing: normal;
  line-height: 1.3;
  font-size: 0.75em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease-in-out 0.0s;
}

#search .search-contents ul.list li .image {
  width: 38%;
  height: 100%;
  min-height: 4.5em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#search .search-contents ul.list li .text {
  width: 62%;
  padding: 0.25em 0.5em 0.25em 0.75em;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #search .search-contents ul.list li a {
    font-size: 1em;
  }

}

/** ***************************************************************************
 * 条件を指定して探す
 */

#search .search-contents div.button {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
  padding-top: 20px;
}

#search .search-contents div.button a {
  width: 100%;
  padding: 5px 1em 10px;
  color: inherit;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  transition: box-shadow 0.3s ease-in-out 0.0s;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

#search .search-contents div.button a:hover {
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.0), 0 3px 0 rgba(0, 0, 0, 0.3) inset;
}

#search .search-contents div.button a::before {
  width: 3em;
  height: 3em;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/** ***************************************************************************
 * 賃貸物件をお探しの方
 * ************************************************************************* */

#search-rent {
  background-color: #76c7ec;
}

#search-rent .contents-title {
  background-color: #26a3dd;
}

#search-rent ul.list li a:hover {
  background-color: rgba(231, 248, 255, 0.5);
}

#search-rent div.button a {
  background-color: #e7f8ff;
}

#search-rent div.button a::before {
  background-color: #26a3dd;
}

/** ***************************************************************************
 * 売買物件をお探しの方
 * ************************************************************************* */

#search-sale {
  background-color: #ffb4b4;
}

#search-sale .contents-title {
  background-color: #ff6565;
}

#search-sale ul.list li a:hover {
  background-color: rgba(255, 180, 180, 0.125);
}

#search-sale div.button a {
  background-color: #fff6f6;
}

#search-sale div.button a::before {
  background-color: #ff6565;
}

/** ***************************************************************************
 * 最新物件 共用
 * ************************************************************************* */

/** ***************************************************************************
 * タイトル
 */

.new-property .section-title {
  width: 100%;
  margin-bottom: 20px;
  padding: 3px 1em 3px;
  color: #fff;
  line-height: 1.4;
  font-size: 1.125em;
  font-weight: 500;
  border-radius: 8px;
  justify-content: center;
}

.new-property .section-title::before {
  width: 2em;
  height: 2em;
  background-color: #fff;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  .new-property .section-title {
    margin-bottom: 30px;
    font-size: 1.5em;
  }

}

/** ***************************************************************************
 * 物件一覧
 */

.new-property .property-list {
  margin-bottom: -20px;
  overflow: hidden;
}

.new-property .property-list .property-contents {
  margin-bottom: 20px;
  padding: 10px 10px 15px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ecf8ed;
}

.new-property div.property-list .property-contents div.list {
  margin-bottom: -20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  flex-grow: 1;
}

.new-property div.property-list .property-contents div.list div.item {
  margin-bottom: 20px;
  flex-grow: 1;
}

.new-property div.property-list .property-contents div.list div.item a {
  height: 100%;
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  .new-property .property-list {
    max-width: none;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: -30px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
  }

  .new-property .property-list .property-contents {
    width: calc(50% - 30px);
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .new-property div.property-list .property-contents div.list {
    max-width: none;
    margin-left: -7px;
    margin-right: -7px;
    margin-bottom: -15px;
  }

  .new-property div.property-list .property-contents div.list div.item {
    width: calc(50% - 14px);
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 15px;
    flex-grow: 0;
  }

  .new-property div.property-list .property-contents div.list div.item a {
    flex-direction: column;
    align-items: flex-start;

    /*
    height: 100%;
    color: inherit;
    text-decoration: none;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    */
  }

}

/** ===========================================================================
 * タイトル
 */

.new-property div.property-list .property-contents .contents-title {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 4px;
  line-height: 1.4;
  font-weight: 500;
  border-bottom: 2px solid #159d18;
}

.new-property div.property-list .property-contents .contents-title::before {
  width: 2em;
  height: 2em;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  .new-property div.property-list .property-contents .contents-title {
    margin-bottom: 15px;
    font-size: 1.25em;
  }

}

/** ===========================================================================
 * 画像
 */

.new-property div.property-list .property-contents div.list div.item .image {
  width: 40%;
  padding-bottom: 30%;
  border: 1px solid #ccc;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.new-property div.property-list .property-contents div.list div.item-360view .image::before {
  content: '';
  width: 20.84%;
  padding-bottom: 20.84%;
  background: url("../_image/_common/icon-360view-1.png") center center / 100% 100% no-repeat;
  position: absolute;
  z-index: 2;
  top: 2px;
  right: 2px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  .new-property div.property-list .property-contents div.list div.item .image {
    width: 100%;
    margin-bottom: 6px;
    padding-bottom: 66.42857142857143%;
  }

}

/** ===========================================================================
 * 物件情報
 */

.new-property div.property-list .property-contents div.list div.item dl.content {
  width: 60%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: center;
  flex-grow: 1;
}

.new-property div.property-list .property-contents div.list div.item dl.content dt {
  margin-bottom: 5px;
  line-height: 1.4;
  font-size: 0.875em;
  font-weight: 500;
}

.new-property div.property-list .property-contents div.list div.item dl.content dd.location {
  font-size: 0.875em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.new-property div.property-list .property-contents div.list div.item dl.content dd.location em {
  margin-right: 5px;
  padding: 1px 4px 3px;
  color: #fff;
  font-size: 0.875em;
  background-color: #159d18;
}

.new-property div.property-list .property-contents div.list div.item dl.content dd.price {
  color: #f00;
  font-size: 1.125em;
  font-weight: 500;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  .new-property div.property-list .property-contents div.list div.item dl.content {
    width: 100%;
    padding-left: 0;
    align-items: center;
    align-self: flex-start;
    flex-grow: 0;
  }

  .new-property div.property-list .property-contents div.list div.item dl.content dt {
    width: fit-content;
    min-height: 2.8em;
    margin-left: auto;
    margin-right: auto;
    font-size: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .new-property div.property-list .property-contents div.list div.item dl.content dd.location {
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    justify-content: center;
  }

  .new-property div.property-list .property-contents div.list div.item dl.content dd.price {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

}

/** ===========================================================================
 * 紹介文
 */

.new-property div.property-list .property-contents div.list div.item div.text {
  width: 100%;
  margin-top: 5px;
  padding: 0.75em;
  font-size: 0.875em;
  background-color: #fff;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  .new-property div.property-list .property-contents div.list div.item div.text {
    flex-grow: 2;
  }

}

/** ***************************************************************************
 * おすすめ・最新の賃貸物件
 * ************************************************************************* */

#rent-list .section-title {
  background-color: #26a3dd;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #rent-new {
    width: calc(100% - 30px);
  }

  #rent-new div.list div.item {
    width: calc(100% / 4 - 14px);
  }

}

/** ***************************************************************************
 * 最新の売買物件
 * ************************************************************************* */

#sale-list .section-title {
  background-color: #ff6565;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #sale-new {
    width: calc(100% - 30px);
  }

  #sale-new div.list div.item {
    width: calc(100% / 4 - 14px);
  }

  #sale-new div.property-list .property-contents div.list div.item dl.content dd.location {
    flex-direction: column;
  }

}

/** ***************************************************************************
 * お知らせ・新着情報
 * ************************************************************************* */

#news div.section-body {
  border-radius: 10px;
  border: 2px solid #62b832;
  overflow: hidden;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #news div.section-body {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
  }

}

/** ***************************************************************************
 * ヘッダー
 */

#news header.header {
  padding: 20px;
  background-color: #62b832;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#news header.header .section-title {
  color: #fff;
  line-height: 1.4;
  font-size: 1.125em;
  font-weight: 500;
  flex-direction: column;
}

#news header.header .section-title::before {
  width: 2em;
  height: 2em;
  margin-right: 0;
  margin-bottom: 5px;
  background-color: #fff;
  align-self: center;
}

#news header.header div.button {
  margin-top: 15px;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #news header.header {
    padding: 20px 30px;
    flex-shrink: 0;
  }

  #news header.header .section-title {
    font-size: 1.5em;
  }

}

/** ***************************************************************************
 * 一覧
 */

#news div.news {
  padding: 1em;
}

#news div.news ul.list li {
  border-bottom: 1px solid #ccc;
}

#news div.news ul.list li:last-child {
  border-bottom: none;
}

#news div.news ul.list li a {
  padding: 0.5em;
  color: inherit;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease-in-out 0.0s;
}

#news div.news ul.list li a:hover {
  color: #62b832;
}

#news div.news ul.list li .time {
  display: block;
}

/* :::::::: ブレイクポイント :::::::: */

@media print, screen and (min-width:1051px) {

  #news div.news {
    padding: 1.5em;
    flex-grow: 1;
  }

  #news div.news ul.list li a {
    padding: 0.75em;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  #news div.news ul.list li .time {
    margin-right: 1em;
    flex-shrink: 0;
  }

}
</pre></body></html>