﻿@charset "utf-8";
/* CSS Document */

/*==================================================
  GENERAL SETTINGS
==================================================*/

/*
===== navSystem Wrap ==========================================
*/
.nwnContent {
  width: var(--width-content);
  max-width: 96%;
  margin-right: auto;
  margin-left: auto;
}


/*
===== 入力エラーBOX ==========================================
*/
.form_errBox {
  margin: var(--gutter);
  border: 3px solid var(--color-winered);
  padding: var(--gutter-narrow);
  color: var(--color-winered);
}

.form_errBox_com {
  min-height: 30px;
  padding: 0 0 0 40px;
  line-height: 30px;
  font-weight: bold;
  background: url(../img/basic/icon_error.svg) no-repeat left 0;
  background-size: auto 30px;
}

.form_errBox ul {
  margin-top: var(--gutter-narrow);
  font-size: 0.9em;
}

.form_errBox ul li {
  margin: 0 0 5px 0;
  padding: 0 0 0 50px;
  position: relative;
}

.form_errBox ul li::before {
  content: "Error";
  background: var(--color-winered);
  color: #FFF;
  display: inline-block;
  font-size: 0.8em;
  font-weight: normal;
  padding: 0 5px;
  position: absolute;
  top: 5px;
  left: 0;
}

/*
===== フォームテキスト ==========================================
*/
.form_note {
  padding: var(--gutter-supernarrow);
}

/*
===== 完了ページ ==========================================
*/
.thanksBox {
  margin: 20px;
  border: 3px solid var(--color-palegray);
  padding: 20px;
  background: #fff;
}

.thanksBox_ttl {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: var(--gutter);
  color: var(--color-winered);
  text-align: center;
}

.thanksBox_com {
  text-align: center;
}


/*
===== 会員管理画面等CSS ==========================================
*/

/*==会員情報－ログイン画面==*/
.loginPage .login_regist {
  margin-top: var(--gutter-narrow);
  padding-bottom: var(--gutter-supernarrow);
  border-bottom: 1px solid var(--color-gray);
}

/*==会員情報－会員登録メールアドレス入力画面==*/
.signup_flowchart ol {
  margin: var(--gutter-narrow) 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.signup_flowchart li {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  width: 240px;
  max-width: 33.3%;
  background-color: var(--color-lightgray);
  color: var(--color-darkgray);
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.signup_flowchart li:not(:last-child)::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -9px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-lightgray);
  border-width: 30px 0 30px 10px;
  z-index: 2;
}

.signup_flowchart li:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-palegray);
  border-width: 30px 0 30px 10px;
  z-index: 1;
}

.signup_flowchart li.prev::after {
  border-color: transparent transparent transparent var(--color-gray);
}

.signup_flowchart li.here {
  background-color: var(--color-main);
  color: #fff;
}

.signup_flowchart li.here::before {
  display: none;
}

.signup_flowchart li.here::after {
  border-color: transparent transparent transparent var(--color-main);
}

/*.signup_flowchart li:first-child {
  border-radius: 10px 0 0 10px;
}

.signup_flowchart li:last-child {
  border-radius: 0 10px 10px 0;
}*/


/*==会員情報－希望条件登録*/
.signupPage .oc_bar01,
.signupPage .oc_bar01_open,
.signupPage .oc_bar02,
.memberPage .oc_bar01,
.memberPage .oc_bar01_open,
.memberPage .oc_bar02 {
  border-bottom: 1px solid var(--color-gray);
  margin-top: var(--gutter-narrow);
  padding-bottom: 10px;
  font-weight: bold;
  font-size: clamp(16px, 5vw, 20px);
}

.entry_span {
  display: inline-block;
  margin: 0 0.5em;
}

/*==会員情報変更==*/
.mod_link {
  margin-top: var(--gutter);
}

.mod_link ul {
  margin-bottom: 10px;
  display: block;
  letter-spacing: -.40em;
}

.mod_link ul li {
  display: inline-block;
  letter-spacing: normal;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: bold;
}

.mod_link ul li a {
  padding: 10px;
  text-decoration: none;
  display: block;
  border: 2px solid #333;
}

/* 退会ページ */
.memberPage #postbox {
  margin-top: 30px;
}

/*
===== 物件検索画面等CSS ==========================================
*/

.estate_map {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 550px;
  margin: 30px auto 10px;
}

/*検索条件ボックス*/
.estatesPage__searchConditionsBox {
  position: absolute;
  top: 0;
  left: 0;
  width: 296px; /*スクロールバー6px分のゆとりをふくむ*/
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 6px rgba(0, 0, 0, 0.1);
  border: solid 3px var(--color-blue);
  box-sizing: border-box;
  z-index: 10;
  transform: translateX(0);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.estatesPage__searchConditionsBox.closed {
  transform: translateX(-100%);
}

/* ドラッグバー - PCでは非表示 */
.drag-bar {
  width: 60px;
  height: 6px;
  border-radius: 3px;
  display: none; /* PCでは非表示 */
}

/* 閉じるボタン -  PCでは非表示*/
.sp-filter-close {
  display: none;
}

.estatesPage__searchConditionsTtl {
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--color-blue);
  padding: 20px 20px 0;
  margin-bottom: 25px;
}

.estatesPage__searchConditionsInner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 20px 20px;
  flex: 1;
  overflow-y: auto;
}

.estatesPage__searchCondition--price dd,
.estatesPage__searchCondition--landarea dd {
  display: flex;
  align-items: center;
  gap: 10px;
}

#postbox .estatesPage__searchCondition--price select,
#postbox .estatesPage__searchCondition--landarea select {
  margin: 0;
  padding: 10px 5px;
}

#postbox .estatesPage__searchCondition--price select {
  padding: 10px 4px;
}

.estatesPage__searchConditionsInner .item.col3--marginbtm {
  margin-bottom: 25px;
}

.estatesPage__searchConditionsInner dt {
  display: block;
  width: 100%;
  background: rgba(24, 127, 196, 0.2);
  padding-left: 20px;
  margin-bottom: 15px;
  position: relative;
}

.estatesPage__searchConditionsInner dt::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  background-color: var(--color-black);
  clip-path: polygon(1px 0px, 9px 4.5px, 1px 9px);
}

.estatesPage__ConditionsBtnWrap {
  width: 100%;
  position: sticky;
  bottom: 0;
  background: var(--color-palegray);
  padding: 15px 14px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.estatesPage__ConditionsBtn--search input[type="submit"] {
  width: 140px;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: var(--weight-button);
  text-align: center;
  color: #fff;
  background: var(--color-blue);
  border-radius: 0;
}

.estatesPage__ConditionsBtn--clear a {
  display: block;
  width: 90px;
  padding: 10px;
  font-size: 1.6rem;
  font-weight: var(--weight-button);
  text-align: center;
  color: var(--color-black);
  background: var(--color-lightgray);
  border-radius: 0;
}

/*検索条件ボックス開閉ボタン*/
.filter-toggle {
  position: absolute;
  top: 20px;
  left: 272px;
  z-index: 11;
  transition: left 0.3s ease;
  background: #fff;
  color: var(--color-blue);
  border: solid 2px var(--color-blue);
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estatesPage__searchConditionsBox.closed + .filter-toggle {
  left: 0;
}

.filter-toggle::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transform: translateX(20%) rotate(-135deg);
  transition: transform 0.3s ease;
}

.estatesPage__searchConditionsBox.closed + .filter-toggle::before {
  transform: translateX(-20%) rotate(45deg);
}

/* SP用開閉ボタン - PCでは非表示 */
.sp-filter-open {
  display: none;
}


/*Gmap表示領域*/
.gmap_view {
  width: 100%;
  height: 550px;
  margin: 0 auto;
}

.map_note {
  font-size: 0.8em;
}

.map_note a {
  text-decoration: underline;
}

/*gmap吹き出しのタイトル色*/
/*青（一般物件）*/
.gmap_ttl01 {
  background: var(--color-magenta);
}

/*赤（会員限定物件）*/
.gmap_ttl02 {
  background: var(--color-magenta);
}

/*緑（店舗公開物件）*/
.gmap_ttl03 {
  background: var(--color-green);
}

/*黄（希望条件物件）*/
.gmap_ttl04 {
  background: var(--color-orange);
}

/*公的*/
.gmap_ttl0601 {
  background: var(--color-navy);
}

.gmap_ttl0601 img {
  margin: 0 5px;
}

/*事例*/
.gmap_ttl0602 {
  background: var(--color-yellow);
}

.gmap_ttl0602 img {
  margin: 0 5px;
}

/*Gmapフキダシ内部*/
.gmap_dtl {
  font-size: 1.2rem;
  padding: 3px 0;
}

.gmap_dtl--private,
.gmap_dtl--signup {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 9px 0;
  text-align: center;
}

.gmap_dtl--signup {
  padding-bottom: 0;
}

.gmap_dtl--signup a {
  border-bottom: solid 1px var(--color-magenta);
}

.gmap_dtl--cityName {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 9px 0;
}

.gmap_dtl--signup,
.gmap_dtl--magenta {
  color: var(--color-magenta);
}

/*gmap下注意文*/
.gmap_note {
  margin: 0;
  font-size: 11px;
  background: #F0F0F0;
  padding: 10px;
  border: 1px solid #E0E0E0;
}

.gmap_ttl01,
.gmap_ttl02,
.gmap_ttl03,
.gmap_ttl04,
.gmap_ttl0601,
.gmap_ttl0602 {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  margin: 3px 0;
  padding: 3px 5px;
  text-align: center;
}

.gmap_ttl02--signup {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  margin: 3px 0;
  padding: 3px 5px;
  text-align: center;
}

.gmap_ttl01 a:link,
.gmap_ttl01 a:visited,
.gmap_ttl02 a:link,
.gmap_ttl02 a:visited,
.gmap_ttl03 a:link,
.gmap_ttl03 a:visited,
.gmap_ttl04 a:link,
.gmap_ttl04 a:visited,
.gmap_ttl0601 a:link,
.gmap_ttl0601 a:visited,
.gmap_ttl0602 a:link,
.gmap_ttl0602 a:visited,
.gmap_ttl01 a:hover,
.gmap_ttl02 a:hover,
.gmap_ttl03 a:hover,
.gmap_ttl04 a:hover,
.gmap_ttl0601 a:hover,
.gmap_ttl0602 a:hover {
  color: #fff;
}

/*Gmapフキダシ閉じるボタン*/
.gm-style .gm-style-iw-c {
  overflow: visible;
  padding: 0 !important;
  border-radius: 0 !important;
}

.gm-style .gm-style-iw-d {
  position: relative;
  /*padding:  10px 0 0 10px !important;*/
}

.gm-style .gm-style-iw-d>div>div {
  padding: 10px !important;
}

.gm-style .gm-style-iw-d>div>div:not(:last-child) {
  padding-bottom: 0 !important;
}

.gm-style .gm-style-iw-d>div>div:not(:first-child) {
  padding-top: 18px !important;
}

/*@media screen and (-webkit-min-device-pixel-ratio:0){
  .gm-style .gm-style-iw-d>div>div {
    padding: 10px 0 0 10px !important;
  }
}*/

.gm-style-iw-chr {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  z-index: 10;
  background: #fff;
  border-radius: 50%;
  border: solid 1px var(--color-black);
}

.gm-style-iw-chr span {
  width: 20px !important;
  height: 20px !important;
  margin: 0 !important;
  transform: translate(3.3px, -10px);
  background-color: var(--color-black);
}

.gm-style-iw-ch {
  display: none !important;    /*Gmap上のテナント*/
}

.gm-ui-hover-effect {
  opacity: 1;
} 

/*
===== 物件検索画面:ESTATE ==========================================
*/
/*物件検索-検索部分タブ*/
.estate_tab {
  margin-top: var(--gutter);
}

.estate_tab ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  border-bottom: 2px solid var(--color-black);
}

.estate_tab li {
  width: 100%;
}

.estate_tab li+li {
  margin-left: 1px;
}

.estate_tab .estate_tab_switch {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: bold;
  background: var(--color-lightgray);
  color: var(--color-gray);
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  padding: 5px;
  text-align: center;
}

.estate_tab .active .estate_tab_switch {
  background: var(--color-black);
  color: #fff;
}


/*
===== LIST_COUNTBOX（検索結果表示部分）==========================================
*/


/*
===== SEARCHPAGE_ESTATECOUNTBOX（検索結果表示部分）==========================================
*/
.estatesPage__estateCountBox {
  max-width: 96%;
  padding: 0 var(--gutter-supernarrow);
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: solid 1px var(--color-black);
}

.estatesPage__estateCount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.estatesPage__estateCount--num {
  font-family: var(--font-en);
  font-size: 2.8em;
  font-weight: 600;
  letter-spacing: 0.02em;
  vertical-align: sub;
}

.estatesPage__linkBtnWrap {
  display: flex;
  align-items: center;
  gap: 25px;
}

.estatesPage__linkBtn {
  width: 160px;
}

.estatesPage__linkBtn a {
  display: block;
  padding: 5px 15px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  position: relative;
}

.estatesPage__linkBtn--signup a {
  background: var(--color-blue);
}

.estatesPage__linkBtn--login a {
  background: var(--color-black);
}

.estatesPage__linkBtn a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background-color: #fff;
  clip-path: polygon(1px 0px, 7px 3.5px, 1px 7px);
}

/*
===== SELECTBOX(検索条件設定部分) ==========================================
*/
.srchbox01 .selectbox01 {
  padding: clamp(10px, 2%, 20px);
  border: solid 3px #333;
  margin-top: var(--gutter);
}

.srchbox01 .selectbox01 #estate_name {
  max-width: 100%;
}

.srchbox01 .selectbox01 .itemWrap dd>label {
  display: inline-block;
}

/*希望条件ボタン*/
.estate_wishsearch {
  display: flex;
  align-items: flex-start;
  /*flex-direction: column;*/
  flex-wrap: wrap;
  gap: 10px;
}

.estate_wishsearch_item a,
.estate_wishsearch_item button {
  display: inline-block;
  background: var(--color-main);
  color: #fff;
  padding: 10px 20px;
  min-width: 10em;
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}

.estate_wishsearch_item button {
  background: var(--color-gold);
  color: var(--color-black);
}

/*検索項目*/
.srchbox01 .selectbox01 .itemWrap {
  font-size: 1.2em;
}

.srchbox01 .selectbox01 .itemWrap dt {
  padding: 5px 15px;
  font-weight: bold;
  position: relative;
}

.srchbox01 .selectbox01 .itemWrap dt::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background: transparent;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--color-black);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.srchbox01 .selectbox01 .itemWrap .checkItem {
  display: inline-block;
  margin-bottom: 0.5em;
}

.srchbox01 .selectbox01 .itemWrap label {
  margin-right: 1em;
}

.srchbox01 .selectbox01 .btnsearchSend {
  margin: 20px;
  padding: 20px 0 0 0;
  text-align: center;
}

.srchbox01 .selectbox01 .btnsearchSend input:hover {
  opacity: 0.8;
}


.estatesPage .prpsearch_warning02 {
  margin: 20px auto;
  padding: 10px 20px;
  border: 3px solid #E6E6E6;
}

.estatesPage .prpsearch_warning02_txt {
  font-weight: bold;
  color: var(--color-winered);
  text-align: center;
}

/*
===== 条件合致物件なし ==========================================
*/
.form_noneBox {
  text-align: center;
  margin: var(--gutter) auto;
  padding: 20px;
  background: var(--color-palegray);
  border: 3px double var(--color-lightgray);
}


/*
===== オプションBOX（横並びボタン） ==========================================
*/
.estate_option {
  padding: var(--gutter-narrow) 0;
}

.estate_option_itemList {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.estate_option_item {
  border: none;
  margin-right: 10px;
  text-align: left;
  line-height: 1;
}

.estate_option_item:last-of-type {
  margin-right: 0;
}

.estate_option_item a,
.estate_option_item input {
  display: flex;
  border: 2px solid var(--color-black);
  border-radius: var(--rad-common);
  background: #fff;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px;
  font-weight: bold;
  text-align: center;
}

/*
===== PAGING / SORT ==========================================
*/
.estate_paging-sortWrap {
  margin: 20px 0;
}

/*paging*/
.estate_paging .paging_total {
  margin-bottom: 5px;
}

.paging_itemList {
  display: flex;
  flex-wrap: wrap;
}

.paging_item {
  margin-right: 5px;
  margin-bottom: 5px;
}

.paging_item a {
  display: block;
  border: 1px solid var(--color-gray);
  border-radius: 5px;
  padding: 5px 10px;
}

.paging_item .paging_num_current {
  display: block;
  background: var(--color-darkgray);
  border: 1px solid var(--color-darkgray);
  border-radius: 5px;
  color: #fff;
  padding: 5px 10px;
}

/*sort*/
.estate_sort {
  min-width: 32%;
  background: #f6f6f6;
  padding: 10px;
}

.estate_sort_ttl {
  text-align: center;
  font-weight: bold;
}

.estate_sort_itemList {
  display: flex;
  justify-content: center;
}

.estate_sort_item {
  border-right: 1px solid #999;
  font-size: 1.2rem;
  padding: 0 0.5em;
  white-space: nowrap;
  ;
}

.estate_sort_item:last-of-type {
  border: none;
}

.estate_sort_item img {
  width: 0.8em;
  height: auto;
  vertical-align: middle;
  margin-left: 5px;
}

/*
===== ESTATELIST ==========================================
*/
/*物件検索リスト*/
.estateList {
  margin: clamp(10px, 5%, 30px) auto;
}

.estateList img {
  width: 100%;
  height: auto;
}

.estateList .estateItem {
  display: block;
  margin-bottom: var(--gutter-narrow);
  border: 2px solid var(--color-gray);
}

.estateList .estateItem.bgr {
  border-color: var(--color-blue);
}

.estateList .estateItem.gray {
  border-color: var(--color-lightgray);
}

.estateList .estateItem_head {
  background: #F4F4F4;
  padding: 10px;
}

.estateList .bgr .estateItem_head {
  background: var(--color-waterblue);
}

.estateList .gray .estateItem_head {
  background: #eee;
  color: var(--color-gray);
}

.estateList .estateItem_check-favoriteWrap {
  display: flex;
  align-items: stretch;
  line-height: 1;
  max-height: 60px;
}

.estateList .estateItem_check {
  border: 2px solid var(--color-black);
  background: #fff;
  padding: 0.5em;
  margin-right: 5px;
  border-radius: var(--rad-common);
  text-align: center;
  white-space: nowrap;
  position: relative;
}

.estateList .estateItem_check.checked {
  background: var(--color-black);
  color: #fff;
}

.estateList .estateItem_check label::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/*checkbox-design*/
.estateList .estateItem_check input[type="checkbox"] {
  border: none;
  background: #fff;
}

.estateList .estateItem_check input[type="checkbox"]:checked {
  background: var(--color-black);
}

.estateList .estateItem_check input[type="checkbox"]:not(:checked):before {
  position: absolute;
  left: 1px;
  top: 16px;
  display: block;
  content: "";
  width: 10px;
  height: 4px;
  background: var(--color-lightgray);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

.estateList .estateItem_check input[type="checkbox"]:not(:checked):after {
  display: block;
  position: absolute;
  left: 9px;
  top: 16px;
  content: "";
  width: 16px;
  height: 4px;
  background: var(--color-lightgray);
  -webkit-transform: rotate(-53deg);
  transform: rotate(-53deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

/*favorite_btn*/
.estateItem_favorite_btn {
  display: block;
  padding: 0.5em;
  cursor: pointer;
  border-radius: var(--rad-common);
  height: 100%;
  white-space: nowrap;
}

.estateItem_favorite_btn.add_favorite {
  background: #fff;
  border: 2px solid var(--color-winered);
  color: var(--color-winered);
}

.estateItem_favorite_btn.is_favorite {
  background: var(--color-winered);
  border: 2px solid var(--color-winered);
  color: #fff;
}

.estateItem_favorite_btn.add_favorite::before,
.estateItem_favorite_btn.is_favorite::before {
  content: "";
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}

.estateItem_favorite_btn.add_favorite::before {
  background: url('../img/common/icon_heart_line_color.svg') no-repeat center;
  background-size: contain;
}

.estateItem_favorite_btn.is_favorite::before {
  background: url('../img/common/icon_heart_white.svg') no-repeat center;
  background-size: contain;
}

/*非ログイン時に表示する物件所在地*/
.estateItem__location {
  font-size: 1.7rem;
  font-weight: bold;
}

/*title*/
.estateList .estateItem_title .estateItem_title_text {
  font-size: 1.2em;
  font-weight: bold;
}

/*icon*/
.estateList .iconWrap {
  margin-bottom: 10px;
}

.estateList .estateItem_body {
  display: flex;
  padding: clamp(5px, 2.5%, 20px);
  padding-bottom: 0;
}

.estateList .estateItem_photo {
  width: 30%;
  flex-shrink: 0;
}

.estateList .estateItem_info {
  width: 68%;
  margin-left: 2%;
}

.estateList .estateItem_memberContent ul {
  margin-top: 10px;
}

.estateList .estateItem_memberContent .estateItem_memberBtn {
  display: inline-block;
  width: clamp(10em, 96%, 320px);
  text-align: center;
  font-size: clamp(1.4rem, 1.8vw, 2rem);
  color: #fff;
  background: var(--color-winered);
  border-radius: 5px;
  text-align: center;
  padding: 0.5em 0;
  text-decoration: none;
  margin-top: 10px;
}

.estateList .estateItem_price {
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  margin-bottom: 2%;
}

.estateList .estateItem_price span {
  font-family: var(--font-en);
  font-size: 1.8em;
  color: var(--color-winered);
}

.estateList .estateItem_data {
  display: inline-flex;
  width: 100%;
}

.estateList .estateItem_data dt {
  border: 1px solid #CCC;
  background: #fff;
  width: 7em;
  flex-shrink: 0;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.estateList .estateItem_data dd+dt {
  margin-left: 1em;
}

.estateList .estateItem_data dd {
  width: calc(96% - 8em);
  margin-bottom: 5px;
}

.estateList .estateItem_date {
  padding: 10px;
  padding-bottom: clamp(5px, 2.5%, 20px);
  text-align: right;
}

/* スタッフコメント */
.estateList .staffComment {
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
  margin-top: 1em;
  border-top: 1px dotted #ccc;
}

.estateList .staffComment_img {
  width: 75px;
  height: auto;
  aspect-ratio: 1 / 1;
}

.estateList .staffComment_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estateList .staffComment_txtBox {
  width: calc(100% - 75px);
  padding-left: 1em;
  text-align: left;
}

.estateList .staffComment_name {
  font-size: 1.4rem;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.estateList .staffComment_name span {
  border: 1px solid var(--color-darkgray);
  color: var(--color-darkgray);
  padding: 3px;
  display: inline-block;
  margin: 0 .5em 3px 0;
  font-size: .75em; 
  line-height: 1;
}

.estateList .staffComment_name--point {
  font-family: var(--font-en);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.estateList .staffComment_txt {
  padding-top: .5em;
  font-size: 1.3rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 月々の支払 */
.estateList .payment_pay {
  display: flex;
  align-items: baseline;
  padding: .5em;
  margin-top: 1em;
  background: var(--color-black);
  color: #fff;
  font-weight: bold;
}

.estateList .payment_pay dd .payment_price {
  font-size: 120%;
}

.estateList .payment_pay dd .downpayment {
  font-size: 80%;
  font-weight: 500;
  padding-left: .5em;
}

/*予告広告*/
.estateList .estateItem_undecided {
  background: var(--color-palegray);
  margin: 10px var(--gutter-supernarrow);
  padding: var(--gutter-supernarrow);
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
}

.estateList .estateItem_undecided dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5em;
}

.estateList .estateItem_undecided dl dt {
  margin-right: 1em;
}

/* 会員限定物件 */
.memberItem__body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: url(../img/system/prpsearch/prplist_memberItem_bg.webp) no-repeat center / cover;
  aspect-ratio: 1200 / 270;
  height: auto;
  position: relative;
}

.memberItem__body p {
  text-align: center;
  color: var(--color-black);
  font-size: clamp(15px, 2vw, 24px);
  font-weight: bold;
  margin-bottom: clamp(10px, 2vw, 15px);
}

.memberItem__content--blueTxt {
  color: var(--color-blue);
  font-size: 1.3em;
}

.memberItem_Btn {
  width: min(90%, 330px);
  padding: 1em 1em;
  margin: 10px auto 0;
  background-color: var(--color-blue);
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: clamp(12px, 1.6vw, 16px);
  line-height: 1.3;
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
  position: relative;
  animation: 1.4s fuwafuwa infinite ease-in-out;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.memberItem_Btn_main {
  font-size: 1.6em;
  position: relative;
}

.memberItem_Btn::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(3px 0px, /* 上頂点 */ 12px 6px, /* 右頂点 */ 3px 12px /* 下頂点 */);
}


/*
===== PRPLIST_SHOPBOX(検索結果一覧 来店訴求) ==========================================
*/
.prplist_shopBox {
  margin: 10px 0;
}


/*
===== 物件詳細:ESTATEDETAIL ==========================================
*/

/*予告広告*/
.estateDetail_undecided{
  margin:var(--gutter-supernarrow) 0 var(--gutter);
  padding:var(--gutter-narrow);
  border:4px solid var(--color-darkgray);
  text-align:center;
  font-size:clamp(1.2rem,1.6vw,1.6rem);
}
.estateDetail_undecided dl{
  display:flex;
  flex-wrap:wrap;
  justify-content: center;
  margin-top:1em;
}
.estateDetail_undecided dl dt{
  margin-right:1em;
}

/*商談中の表示*/
.detail_addbox {
  margin-top: var(--gutter);
  margin-bottom: var(--gutter);
  padding: 1em;
  background: var(--color-winered);
  color:#fff;
  font-weight:bold;
  font-size: clamp(1.2rem,3vw,1.6rem);
}
.detail_addbox p {
  text-align: center;
}
.detail_addbox_ttl{
  font-size:1.4em;
}

/*title*/
.estates-detail .ttlWrap .iconWrap {
  margin-bottom: 10px;
}

/*box02*/
/*取扱店舗*/
.estatesPage .shop_cat {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  border: solid 2px #CCC;
  padding: 20px;
  margin-bottom: 50px;
}

.estatesPage .shop_cat h4 {
  border: solid 2px #333;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
}

.estatesPage .shop_cat .detailShop {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.estatesPage .shop_cat .detailShop .shop {
  border-right: solid 1px #333;
  padding: 10px 15px;
}

.estatesPage .shop_cat .detailShop .shop .bold {
  font-weight: bold;
  font-size: 18px;
  color: #8ecc11;
}

.estatesPage .shop_cat .detailShop .tel {
  padding-left: 41px;
  margin: 0 25px;
  position: relative;
  line-height: 1;
}

.estatesPage .shop_cat .detailShop .tel::before {
  font-family: "Font Awesome 5 Free";
  content: "\f879";
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.estatesPage .shop_cat .detailShop .tel .bold {
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 24px;
  display: block;
  margin-top: 3px;
}

/*支払い例*/
.estateDetail_payment {
  margin: var(--gutter) 0;
}

.estateDetail_payment .payment_ttl {
  font-size: clamp(1.6rem, 5.6vw, 3.2rem);
  font-weight: bold;
  text-align: center;
}

/*bonus text*/
.estatesPage .payment_bonus {
  display: inline-block;
  background: var(--color-yellow);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  padding: 0.5em 1em;
  vertical-align: middle;
}

.estateDetail_payment .inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.estateDetail_payment dl {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: clamp(1.4rem, 2.8vw, 2.4rem);
  border-bottom: 4px solid #333;
  padding: 0 0 1em ;
}

.estateDetail_payment dt,
.estateDetail_payment dd {
  line-height: 1;
  vertical-align: middle;
}

.estateDetail_payment dt {
  box-sizing: border-box;
  margin-right: 1em;
  white-space: nowrap;
}

.estateDetail_payment dd {
  box-sizing: border-box;
  text-align: right;
}

.estateDetail_payment dd .num {
  font-family: var(--font-en);
  font-size: 2.2em;
  font-weight: bold;
  margin-right: 5px;
}

.estateDetail_payment .price dd {
  color: var(--color-winered);
  font-weight: bold;
}

.estateDetail_payment .monthly dd {
  padding-bottom: 0;
}

.estateDetail_payment .monthly dd p {
  display: inline-block;
  font-weight: bold;
}

.estateDetail_payment p.payment_first {
  font-size: 1.2rem;
}

/*borrowing*/
.estatesPage .borrowing {
  width: 100%;
  font-size: 1.1rem;
  margin: var(--gutter-supernarrow) auto;
}

.estatesPage .borrowing p {
  color: var(--color-darkgray);
}

/*リノベーション支払い例,土地新築セット支払い例*/
.estateDetail_reformset .inner,
.estateDetail_landset .inner {
  margin: 20px 0;
}

.estateDetail_reformset .planBox,
.estateDetail_landset .planBox {
  margin-bottom: 20px;
  text-align: center;
}

.estateDetail_reformset .editBox,
.estateDetail_landset .editBox {
  padding: 20px;
  border: 3px solid #F0F0F0;
}

.estateDetail_reformset .editBox .edit,
.estateDetail_landset .editBox .edit {
  position: relative;
}

.estateDetail_reformset .editBox table,
.estateDetail_landset .editBox table {
  width: 100%;
}

.estateDetail_reformset .editBox table th,
.estateDetail_landset .editBox table th {
  width: 20%;
  font-weight: bold;
  vertical-align: middle;
  text-align: right;
  white-space: nowrap;
}

.estateDetail_reformset .editBox table td,
.estateDetail_landset .editBox table td {
  padding: 10px;
}

.estateDetail_reformset .editBox select,
.estateDetail_landset .editBox select {
  width: 80%;
}

.estateDetail_reformset .editBox input[type="text"],
.estateDetail_landset .editBox input[type="text"] {
  width: 70%;
  margin-right: 5px;
}

.estateDetail_reformset .editBox .btn,
.estateDetail_landset .editBox .btn {
  margin-top: 10px;
  text-align: center;
}

.estateDetail_reformset .editBox .price,
.estateDetail_landset .editBox .price {
  text-align: center;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  font-weight: bold;
}

.estateDetail_reformset .editBox .price span,
.estateDetail_landset .editBox .price span {
  font-weight: 900;
  font-size: 2.2em;
}

.estateDetail_reformset .payment_bonus,
.estateDetail_landset .payment_bonus {
  display: block;
  width: 80%;
  text-align: center;
}

/*プラン画像表示*/
.estateDetail_reformset .nameBox{
  background: var(--color-black);
  padding:15px;
  position:relative;
  margin-top:40px;
}
.estateDetail_reformset .nameBox::before{
  content:"";
  display: block;
  background: var(--color-black);
  width: clamp(20px,12%,48px);
  height: 20px;
  clip-path: polygon(50% 0, 0% 100%, 100% 100%);
  position: absolute;
  top:-18px;
  left:50%;
  transform: translateX(-50%);
}

.estateDetail_reformset .nameBox dl{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.estateDetail_reformset .nameBox dl dt{
  color: #fff;
  margin: 0 1em;
}


/*商談中の表示*/
.detail_addbox {
  margin-top: var(--gutter);
  margin-bottom: var(--gutter);
}

.detail_addbox p {
  margin-bottom: 10px;
  text-align: center;
}

.estatesPage {
  padding: 0;
}

.estatesPage .estatedetail_tbl01 {
  width: 100%;
  margin: 20px 0;
}

.estatesPage .estatedetail_tbl01 th {
  font-weight: bold;
  vertical-align: middle;
  background: #F0F0F0;
  border: 1px solid #E0E0E0;
}

.estatesPage .estatedetail_tbl01 td {
  border: 1px solid #E0E0E0;
}

/*物件詳細画像表示*/
.estateDetail_image {
  overflow: hidden;
}

.estateDetail_image .mainImgList {
  max-width: var(--width-content);
  position: relative;
}

.estateDetail_image .mainImgList,
.estateDetail_image .mainThumbList {
  margin-bottom: var(--gutter-narrow);
}

.estateDetail_image .mainImgList .mainImgList_item {
  width: 96vw;
  max-width: 600px;
  height: 50vw;
  max-height: 400px;
  position: relative;
  margin: 0 auto;
}

.estateDetail_image .slick-initialized .mainImgList_item {
  opacity: 0.5;
}

.estateDetail_image .mainImgList .mainImgList_item.slick-current {
  opacity: 1;
}

.estateDetail_image .mainImgList .mainImgList_item a {
  height: 100%;
  background: var(--color-palegray);
}

.estateDetail_image .mainImgList .mainImgList_item+.mainImgList_item {
  margin: 0 10px;
}

.estateDetail_image .slick-arrow.slick-prev::before {
  left: 30px !important;
}

.estateDetail_image .slick-arrow.slick-next::before {
  right: 30px !important;
}


/*サムネイル*/
.estateDetail_image .mainThumbList {
  margin: 0 auto;
  position: relative;
}

.estateDetail_image .mainThumbList .mainThumbList_item {
  display: inline-block;
  cursor: pointer;
  width: 20%;
  min-width: 80px;
  max-width: 120px;
  aspect-ratio: 4 / 3;
  border: solid 1px #E0E0E0;
  overflow: hidden;
}

.estateDetail_image .mainThumbList .slick-current {
  border-color: var(--color-main);
}

.estateDetail_image .mainThumbList .mainThumbList_item+.mainThumbList_item {
  margin: 0 1px;
}

.estateDetail_image .mainThumbList {
  margin-top: 0;
}

.estateDetail_image .mainThumbList img {
  opacity: 0.5;
}

.estateDetail_image .mainThumbList .slick-current img {
  opacity: 1;
}

.estateDetail_image .mainThumbList img:hover {
  opacity: 1;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.estateDetail_image .mainThumbList .slick-arrow::before,
.estateDetail_image .mainThumbList .slick-arrow::after {
  width: 24px;
  height: 24px;
}

/*画像キャプション*/
.estateDetail_image .mainImgList .mainImgList_item p {
  background: rgb(255 255 255 / 0.8);
  padding: 10px;
  margin-top: 5px;
  border: solid 1px #E0E0E0;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: clamp(1rem, 1.2vw, 1.4rem);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 3.6em;
}

.estateDetail_image .mainImgList .mainImgList_item p:empty {
  display: none;
}

/*画像準備中*/
.estateDetail_image .imageList_item.noimage {
  max-width: 480px;
  margin: 0 auto;
}

.estateDetail_image .imageList_item.noimage span {
  height: 100%;
  margin: 0 auto;
}

/*動画・VR*/
.estateDetail_movie {
  margin-top: var(--gutter);
  margin-bottom: var(--gutter);
}

.estateDetail_movie .movieBox_item {
  margin: 0 auto var(--gutter-narrow);
  max-width: 800px;
}

.estateDetail_movie .movieBox_item video,
.estateDetail_movie .movieBox_item iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
}

/*surroundings:周辺環境*/
.estateDetail_surroundings {
  margin-top: var(--gutter);
}

.estateDetail_surroundings .surroundingsList {
  margin-top: var(--gutter);
  display: flex;
  flex-wrap: wrap;
}

.estateDetail_surroundings .surroundingsList_item {
  background: var(--color-palegray);
}

.estateDetail_surroundings .surroundingsList_item a {
  position: relative;
}

.estateDetail_surroundings .surroundingsList_item a::after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid #fff;
  background: rgb(0 0 0 / 0.2) url(../img/common/icon_zoom_white.svg) no-repeat center center;
  background-size: 24px auto;
  position: absolute;
  bottom: 10px;
  right: 10px;
}

.estateDetail_surroundings .surroundingsList_item .imgWrap {
  aspect-ratio: 16 / 9;
}

.estateDetail_surroundings .surroundingsList_item_caption {
  background: var(--color-black);
  color: #fff;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
}

/*onepointbox:スタッフのワンポイント*/
.estateDetail_onepoint {
  margin: var(--gutter) auto;
  padding: var(--gutter-supernarrow);
  background: var(--color-palegray);
}

.estateDetail_onepoint .onepoint_staff {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.onepoint_img {
  width: 10%;
}

.onepoint_txt {
  width: calc(100% - 10% - 1em);
}

.onepoint_txt p {
  margin-bottom: 5px;
}

.estateDetail_onepoint_content {
  margin-top: 20px;
  background: #FFF;
  padding: 20px;
}

/*最近見た物件・レコメンド*/
#main .estateDetail_recently .recently_ttl,
#main .estateDetail_recently .recommend_ttl {
  margin-top: 0;
  padding-left: 0;
  background-image: none;
  position: relative;
}
#main .estateDetail_recently .recently_ttl::before,
#main .estateDetail_recently .recommend_ttl::before{
  font-family: 'Font Awesome 5 Free';
  display: inline-block;
}
#main .estateDetail_recently .recently_ttl::before{
  content: "\f1da";
}
#main .estateDetail_recently .recommend_ttl::before{
  content: "\f005";
}

.estateDetail_recently_checkbox {
  text-align: right;
}

.estateDetail_recently .btn {
  text-align: center;
}

/*List*/
.estateDetail_recently .recentlyList {
  display: flex;
  flex-wrap: wrap;
}

.estateDetail_recently .recentlyList_item {
  position: relative;
  background: #fff;
}

.estateDetail_recently .recentlyList_item a {
  display: block;
  border: 1px solid var(--color-gray);
  height: 100%;
}

.estateDetail_recently .recentlyList_item_image {
  aspect-ratio: 16 / 9;
}

.estateDetail_recently .recentlyList_item_info {
  font-size: 1em;
  padding: 10px;
}

.estateDetail_recently .recentlyList_item_ttl {
  margin-bottom: 10px;
  font-weight: bold;
}

.estateDetail_recently .recentlyList_item_checkbox {
  position: absolute;
  top: 1px;
  left: 1px;
  padding: 5px;
  background: #fff;
}

.estateDetail_recently .recentlyList_item_checkbox input {
  margin-right: 0;
  cursor: pointer;
}

.recentlyList_btn {
  text-align: center;
}

/*btn_bottom*/
.estateDetail_btnList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--gutter-narrow) auto;
  background: var(--color-palegray);
  padding: var(--gutter-narrow) 0;
}


/*loanPanel：ローン支払い額シミュレーション*/
.estateDetail_loan_overlay{
  display: none;
}
#loanPanelWrap{
  display:none;
  width:640px;
  max-width:96%;
  position:fixed;
  top:50%;
  left:50%;
  transform: translate( -50%, -55%);
  padding:5px;
  background: var(--color-yellow);
  border: 1px solid #666;
  z-index: 1000;
  box-shadow: 0 3px 3px 0 rgba(0,0,0,.2);
}

.loanPanel{
  background:#fff;
  padding: 5px 10px 10px;
}

.loanPanel_ttl{
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 5px;
}
.loanPanel_ttl::before{
  font-family: 'Font Awesome 5 Free';
  content:"\f1ec";
  display: inline-block;
  vertical-align: middle;
  margin-right:0.25em;
  font-size:1.2em;
}

.loanPanel_option{
  display:flex;
  background: #333;
  padding: 10px;
}

.loanPanel_option > dl,
.loanPanel_option > dl > div{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}

.loanPanel_option > dl dt{
  max-width:6em;
  color:#fff;
}

.loanPanel_option .loanPanel_option_unit{
  color:#fff;
}

.loanPanel_option > dl dd.loanPanel_option_data{
  margin-right:0.5em;
}

.loanPanel_option > dl dd input{
  color: var(--color-black);
  padding: 5px;
}

.loanPanel .loanTbl{
  width: 100%;
  background: #fff;
}
.loanPanel .loanTbl th,
.loanPanel .loanTbl td{
  padding: 2px 3px;
  font-size:clamp(10px, 2.4vw, 12px);
  border: 1px solid #ccc;
}

.loanPanel .loanTbl thead th{
  text-align: center;
  border-bottom: 1px solid #ccc;
}
.loanPanel .loanTbl thead th.loanTbl_head_bonus{
  width:16%;
  background: rgba(0,0,0,0.1);
}
.loanPanel .loanTbl thead th.loanTbl_head_year{
  font-size: clamp(12px, 3.2vw, 14px);
  width: 28%;
  background: rgba(0,0,0,0.05);
  vertical-align: middle;
  position:relative;
}
.loanPanel .loanTbl thead th.loanTbl_head_year button{
  background: #333;
  color: #fff;
  border-radius: 5px;
  line-height: 1;
  width:16px;
  aspect-ratio: 1;
  position:absolute;
  top:50%;
  transform: translateY(-50%);
}
.loanPanel .loanTbl thead th.loanTbl_head_year button:disabled{
  background: #999;
}

.loanPanel .loanTbl thead th.loanTbl_head_year button#loany_minus{
  left: 5px;
}
.loanPanel .loanTbl thead th.loanTbl_head_year button#loany_plus{
  right: 5px;
}

.loanPanel .loanTbl tbody th{
  text-align: center;
  background: rgba(0,0,0,0.05);
  white-space: nowrap;
  vertical-align: middle;
}
.loanPanel .loanTbl tbody td{
  text-align: center;
}
.loanPanel .loanTbl tbody tr:nth-of-type(even) td{
  background: rgba(0,0,0,0.03);
}
.loanPanel .loanTbl tbody td span > span {
  font-size:0.85em;
}

.loanPanel_footer ul{
  font-size: clamp(10px, 1.2vw, 11px);
  line-height: 1.1;
}
.loanPanel_footer ul li{
  padding-left:1.2em;
  position:relative;
  margin-top:5px;
}
.loanPanel_footer ul li::before{
  content:'※';
  position: absolute;
  top:0;
  left:0;
}

.loanPanel_plan{
  font-size:0.85em;
  margin-top:1em;
  text-align: center;
  font-weight: bold;
}
.loanPanel_plan a{
  display: inline-block;
  text-decoration: underline;
  color: var(--color-orange);
  margin:0 0.5em;
}

.loanPanel_close{
  display: inline-block;
  position: absolute;
  top:10px;
  right:15px;
  color:#fff;
  border: 1px solid #999;
  background:#999;
  font-size: 0.9em;
  padding:5px;
  line-height: 1;
  border-radius: 5px;
  cursor: pointer;
}

/*シミュレーション表示ボタン／テキスト*/
.loanPanelBtn_input_btn{
  background: var(--color-black);
  border-radius: 3px;
  color: #fff;
  padding: 0.5em;
  position:relative;
}
.loanPanelBtn_input_btn::before{
  font-family: 'Font Awesome 5 Free';
  color:#fff;
  content:"\f1ec";
  font-size: clamp(14px,4.2vw,28px);
  display: inline-block;
  vertical-align: middle;
  margin-right:0.5em;
}
.loanPanelBtn_input_btn::after{
  content:"";
  width:0.5em;
  height:0.5em;
  position:absolute;
  top:50%;
  right:1em;
  border-top:1px solid #fff;
  border-right:1px solid #fff;
  transform: rotate(45deg) translateY(-50%);
}

.loanPanelBtn_input_link{
  font-weight: bold;
  color: var(--color-blue);
  text-decoration: underline;
}
.loanPanelBtn_input_link::before{
  content:"[";
  color:#333;
  margin-right:0.25em;
}
.loanPanelBtn_input_link::after{
  content:"]";
  color:#333;
  margin-left:0.25em;
}

.loanPanelBtnWrap{
  text-align: center;
}
.loanPanelBtnWrap .loanPanelBtn_input_btn{
  font-size:clamp(14px,3.6vw,20px);
  font-weight: bold;
  width:80%;
  max-width: 360px;
}

.estatedetail_tbl01 .loanPanelBtn_input_link ,
.estatedetail_tbl01 .loanPanelBtn__txt{
  display: inline-block;
  margin-top:5px;
  font-size:0.8em;
}

.estatedetail_tbl01 .loanPanelBtn__txt {
  margin-left: 5px;
  transform: translateY(2px);
}


/*
===== 物件間取り請求・見学予約画面 ==========================================
*/
/*box01*/
.reservationPage .box01 {
  margin: 0;
}

.rsvlist_tbl01 {
  width: 100%;
  margin: 0 auto 30px auto;
  background: #fff;
}

.rsvlist_tbl01 th {
  padding: 5px 10px;
  background: #F4F4F4;
  border: 1px solid #E6E6E6;
  text-align: center;
  vertical-align: middle;
}

.rsvlist_tbl01 th input {
  margin-right: 0;
}

.rsvlist_tbl01 td {
  padding: 5px;
  border: 1px solid #E6E6E6;
  vertical-align: middle;
}

.rsvlist_tbl01 td input {
  margin: 0 auto;
  text-align: center;
}

.rsvlist_tbl01 td .icon_txt {
  font-size: 11px;
}

.rsvlist_tbl01 .th_w01 {
  width: 30px;
  font-size: 10px;
}

/*
===== 市区町村検索・路線検索 ==========================================
*/
.estatesPage .estate_areaBox {
  margin-top: var(--gutter);
}

.estatesPage .estate_areaBox_ttl {
  border-bottom: 1px solid var(--color-gray);
  font-weight: bold;
  padding-bottom: 10px;
  font-size: 1.4em;
}

.estatesPage .estate_areaList li {
  padding-left: 15px;
  display: block;
  background: url(../img/common/icon01.webp) no-repeat left 5px;
  background-size: 8px auto;
}

.estatesPage .estate_areaList li.hide {
  color: #cccccc;
}

.estatesPage .estate_areaList li.st {
  vertical-align: middle;
  background: none;
}

.estatesPage .estate_areaList label {
  vertical-align: middle;
}

.estatesPage .estate_areaSearch .btnsearchSend {
  margin: var(--gutter-narrow) 0;
  text-align: center;
}

.estatesPage .estate_areaSearch_notice {
  font-size: 0.8em;
}



/*
===== 会員登録説明/signup ==========================================
*/

.signupPage .ttlWrap {
  display: none;
}

.signupPage .registBox {
  background: var(--color-blue);
  color: #fff;
}

.signupPage .registBox__inner {
  width: 50%;
  max-width: (var(--width-content) / 2);
  padding: var(--gutter) 0;
  padding-left: calc(50vw - (var(--width-content) / 2));
  margin: 0;
  position: relative;
}

.signupPage .registBox__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/system/offer/mainTtl_bg.webp) no-repeat left center / auto 100%, linear-gradient(to right, transparent 0, transparent 30%, #fff 30%);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, 0);
}

.registBox__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: clamp(3.6rem, 7vw, 5rem);
  font-weight: 600;
  line-height: 1.2;
  position: relative;
}

.registBox__ttl--main {
  border-bottom: solid 1px #fff;
}

.registBox__ttl--sub {
  font-size: 0.5em;
  color: var(--color-gold);
}

.registBox__ttl::before {
  content: attr(data-en);
  text-transform: uppercase;
  display: inline-block;
  position: absolute;
  left: -78px;
  bottom: -3px;
  transform: translateY(26%);
  font-family: var(--font-en);
  font-size: clamp(90px, 15vw, 177px);
  font-weight: bold;
  color: rgba(255, 255, 255, 0.1);
}

.registBox__txt {
  font-size: 1.6rem;
  font-weight: 500;
  padding-top: var(--gutter);
}

.signupPage .bnrWrap {
  margin: var(--gutter-narrow) auto;
}


/*==================================================
  PC/TABLET SETTINGS : Min768px
==================================================*/
@media print,
screen and (min-width: 768px) {

  /*
  ===== 会員登録:signupPage ==========================================
  */
  /*見出し*/
  .signupPage .registBox__inner::after {
    background: url(../img/system/offer/mainTtl_bg_02.webp) no-repeat left center / auto 100%, linear-gradient(to right, transparent 0, transparent 30%, #fff 30%);
  }

  /*==会員情報－希望条件登録*/
  .entrytbl.wishtbl {
    border-top: none;
  }

  .entrytbl.wishtbl br+select {
    margin-left: 1em;
  }

  .registBox__ttl::before {
    left: -18px;
  }

  /*
  ===== LIST_COUNTBOX（検索結果表示部分）==========================================
  */

  .list_countbox01_inner {
    width: 50%;
  }

  .list_countbox01 .shop_link {
    width: 48%;
    max-width: 480px;
  }

  .list_countbox01 .private_link,
  .list_countbox01 .private_link+.shop_link {
    width: 24%;
  }

  /*
  ===== SELECTBOX(検索条件設定部分) ==========================================
  */
  /*希望条件ボタン*/
  .estate_wishsearch {
    margin-top: var(--gutter-supernarrow);
  }

  .estate_wishsearch_item {
    margin: 0 5px;
  }

  .srchbox01 .selectbox01 .itemWrap {
    display: flex;
    flex-wrap: wrap;
    border-bottom: dotted 1px #CCC;
    padding: 20px;
  }

  .srchbox01 .selectbox01 .itemWrap .item.col1 {
    width: 100%;
  }

  .srchbox01 .selectbox01 .itemWrap .item.col3 {
    width: 32%;
    margin-right: 1%;
  }

  .srchbox01 .selectbox01 .itemWrap dd select {
    width: clamp(4em, 10vw, 120px);
  }

  /*
  ===== PAGING / SORT ==========================================
  */
  .estate_paging-sortWrap {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  /*路線検索*/
  .estatesPage .estate_areaSearch .sp_hidden {
    display: none;
  }

  /*
  ===== ESTATELIST ==========================================
  */
  /*物件検索リスト*/
  .estateList .estateItem_head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .estateList .estateItem_check,
  .estateItem_favorite_btn {
    width: 128px;
  }

  .estateList .estateItem_check label {
    display: block;
    font-size: 1.1rem;
    text-align: center;
    margin-top: 3px;
  }

  .estateItem_favorite_btn {
    font-size: 1.1rem;
    text-align: center;
  }

  .estateItem_favorite_btn.add_favorite::before,
  .estateItem_favorite_btn.is_favorite::before {
    display: block;
    margin: 0 auto 5px;
  }

  .estateList .estateItem_data.col2 {
    width: 48%;
  }


  /*
  ===== PRPLIST_SHOPBOX(検索結果一覧 来店訴求) ==========================================
  */
  .prplist_shopBox {
    margin: var(--gutter-narrow) 0;
  }

  .prplist_shopBox a {
    text-decoration: none;
    display: block;
    width: 100%;
    aspect-ratio: 108 / 16;
    position: relative;
    background: url(../img/system/prpsearch/prplist_shopBox_bg.webp) no-repeat;
    background-size: contain;
  }

  .prplist_shopBox .hide {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    height: 0;
  }

  .prplist_shopBox span.hide {
    display: block;
  }

  .prplist_shopBox p.count span.shopCount {
    width: 168px;
    text-align: center;
    font-size: clamp(4rem, 5vw, 6rem);
    color: #FFF;
    font-weight: bold;
    line-height: 1.0;
    position: absolute;
    top: 1.12em;
    left: 7.5em;
  }


  /*
  ===== 物件詳細:ESTATEDETAIL ==========================================
  */

  /*横並びボタン*/
  .estates-detail .estate_option_item {
    height: 58px;
  }

  .estates-detail .estate_option_item a,
  .estates-detail .estate_option_item input {
    min-width: 120px;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    padding: 0 10px;
  }

  .estates-detail .estate_option_item.print a {
    font-size: 1.1rem;
    padding: calc(26px + 0.5em) 10px 0;
    background: #fff url(../img/common/icon_print_black.svg) no-repeat center top 5px;
    background-size: 26px auto;
  }

  .estates-detail .estate_option_item.download a {
    font-size: 1.1rem;
    padding: calc(26px + 0.5em) 10px 0;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center top 5px;
    background-size: 26px auto;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23111111%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22M213.66%2C82.34l-56-56A8%2C8%2C0%2C0%2C0%2C152%2C24H56A16%2C16%2C0%2C0%2C0%2C40%2C40V216a16%2C16%2C0%2C0%2C0%2C16%2C16H200a16%2C16%2C0%2C0%2C0%2C16-16V88A8%2C8%2C0%2C0%2C0%2C213.66%2C82.34ZM160%2C51.31%2C188.69%2C80H160ZM200%2C216H56V40h88V88a8%2C8%2C0%2C0%2C0%2C8%2C8h48V216Zm-42.34-61.66a8%2C8%2C0%2C0%2C1%2C0%2C11.32l-24%2C24a8%2C8%2C0%2C0%2C1-11.32%2C0l-24-24a8%2C8%2C0%2C0%2C1%2C11.32-11.32L120%2C164.69V120a8%2C8%2C0%2C0%2C1%2C16%2C0v44.69l10.34-10.35A8%2C8%2C0%2C0%2C1%2C157.66%2C154.34Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
  }

  .estates-detail .estate_option_item.warning {
    font-size: 1.2rem;
    background: #EEE;
    padding: 1em;
    border-radius: var(--rad-common);
    margin-right: 0;
  }


  /*box02*/
  .estatesPage .estatedetail_tbl01 .thstyle {
    width: 200px;
  }

  .estatesPage .estatedetail_tbl01 .tdstyle {
    width: 340px;
  }

  .estatesPage .estatedetail_tbl01 th {
    padding: 20px;
  }

  .estatesPage .estatedetail_tbl01 td {
    padding: 20px;
  }

  .estateDetail_payment .payment_ttl {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*bonus text*/
  .estatesPage .payment_bonus {
    margin-left: 1em;
  }

  .estateDetail_payment dl {
    width: 48%;
    margin-right: 1%;
    margin-left: 1%;
  }

  .estateDetail_payment p.payment_first {
    text-align: center;
  }

  .estateDetail_payment dd .num {
    font-size: 1.9em;
  }

  /*borrowing*/
  .estatesPage .borrowing p {
    text-align: right;
  }

  /*リノベーション支払い例,土地新築セット支払い例*/
  .estateDetail_reformset .editBox,
  .estateDetail_landset .editBox {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .estateDetail_reformset .editBox .edit,
  .estateDetail_landset .editBox .edit {
    width: 50%;
  }

  .estateDetail_reformset .editBox .edit::after,
  .estateDetail_landset .editBox .edit::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 0 50px 24px;
    border-color: transparent transparent transparent #CCC;
    position: absolute;
    top: 50%;
    right: -12px;
    transform: translateY(-50%);
  }

  .estateDetail_reformset .editBox .priceBox,
  .estateDetail_landset .editBox .priceBox {
    width: 50%;
  }

  .estateDetail_reformset .payment_bonus,
  .estateDetail_landset .payment_bonus {
    margin: 10px auto;
  }

  /*プラン画像表示*/
  .estateDetail_reformset .nameBox dl{
    font-size:1.2em;
  }
  .estateDetail_reformset .nameBox dl dt::after{
    content:"：";
  }
  

  /*物件詳細画像表示*/
  .estateDetail_image .mainThumbList.pc_noscroll .slick-track {
    width: 100% !important;
    transform: unset !important;
    justify-content: center !important;
  }

  /*surroundings:周辺環境*/
  .estateDetail_surroundings .surroundingsList_item {
    width: calc((100% - 48px) / 4);
    margin-right: 16px;
    margin-bottom: var(--gutter-supernarrow);
  }

  .estateDetail_surroundings .surroundingsList_item:nth-of-type(4n) {
    margin-right: 0;
  }

  /*最近見た物件・レコメンド*/
  #main .estateDetail_recently .recently_ttl,
  #main .estateDetail_recently .recommend_ttl {
    text-align: center;
  }
  #main .estateDetail_recently .recently_ttl::before,
  #main .estateDetail_recently .recommend_ttl::before{
    font-size:1.4em;
    display: inline-block;
    margin-right:0.25em;
    margin-top: -2px;
    vertical-align: middle;
  }

  .estateDetail_recently .recentlyList_item {
    width: calc((100% - 48px) / 4);
    margin-right: 16px;
    margin-bottom: var(--gutter-supernarrow);
  }

  .estateDetail_recently .recentlyList_item:nth-of-type(4n) {
    margin-right: 0;
  }


  /*loanPanel：ローン支払い額シミュレーション*/
  .loanPanel_option{
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }

  .loanPanel_option > dl{
    width:50%;
  }

  .loanPanel_option > dl.loanPanel_option_price,
  .loanPanel_option > dl.loanPanel_option_plan{
    margin-bottom:1em;
  }

  .loanPanel_option > dl dt{
    width:5em;
  }

  .loanPanel_option > dl dd.loanPanel_option_data{
    width: calc( 100% - 10em);
    margin-right:0.5em;
  }
  .loanPanel_option > dl dd input{
    width:98%;
  }

  /*
  ===== 市区町村検索・路線検索 ==========================================
  */
  .estatesPage .estate_areaList {
    padding: var(--gutter-supernarrow);
    display: flex;
    flex-wrap: wrap;
  }

  .estatesPage .estate_areaList li {
    width: 33.3%;
    margin-bottom: 20px;
  }

  .estatesPage .estate_areaList li.st {
    padding-left: 0;
  }

}

/*==================================================
  TABLET/SP BESIDE SETTINGS : Max1110px Min768px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1110px) {

  /*会員登録・来店予約訴求*/

  /*SIGN UP 会員登録ページ*/
  .signupPage .registBox__inner {
    padding-left: 2%;
  }

}

/*==================================================
  SP SETTINGS : Max767px
==================================================*/
@media screen and (max-width: 767px) {

  /*
  ===== 入力エラーBOX ==========================================
  */
  .form_errBox {
    margin: 20px 10px;
    padding: 10px;
  }

  .form_errBox ul {
    margin: 10px;
  }


  /*
  ===== 会員登録:ememberPage ==========================================
  */
  
  /* フローチャート */
  .signup_flowchart li {
    height: 32px;
  }

  .signup_flowchart li:not(:last-child)::before {
    border-width: 16px 0 16px 10px;

  }

  .signup_flowchart li:not(:last-child)::after {
    border-width: 16px 0 16px 10px;
  }

  /*==会員情報－希望条件登録*/
  .entrytbl.wishtbl br+select {
    margin-top: 1em;
  }

  .entry_span+select {
    margin-top: 0.5em;
  }

  /*modmember：会員登録内容変更ページ*/
  .modmemberPage .box01,
  .modpassPage .box01,
  .modmailPage .box01,
  .requestentryPage .box01,
  .modmemberPage .box02 {
    margin: 2.5%;
  }

  .modmemberPage .box02 p {
    margin: 10px;
  }

  .registrationPage .box01 {
    margin: 2.5%;
  }

  .registrationPage .regist01 {
    margin: 10px;
  }

  /*
  ===== SELECTBOX(検索条件設定部分) ==========================================
  */
  .srchbox01 .selectbox01 {
    margin: 2.5%;
  }

  /*
  ===== ESTATECOUNTBOX（検索結果表示部分）==========================================
  */

  .estatesPage__estateCountBox {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .estatesPage__linkBtnWrap {
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  /*
  ===== SELECTBOX(検索条件設定部分) ==========================================
  */
  /*希望条件ボタン*/
  .estate_wishsearch {
    align-items: center;
    padding: 10px;
  }

  .estate_wishsearch_item {
    margin: 0 1%;
  }

  /*.srchbox01 .selectbox01 dl.item {
    margin-top: 10px;
    padding: 10px;
    border-top: dotted 1px #CCC;
  }*/

  .estatesPage__searchConditionsBox {
    position: fixed;
    /*top: 100%;*/
    /*top: 185px;*/
    top: 121px;
    left: 0;
    transform: translateY(100dvh);
    width: 100%;
    /*height: 80dvh;*/
    height: calc(100dvh - 70px);
    z-index: 1000;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    /*transform: translateY(0);*/
    transition: transform 0.3s ease;
  }

  .estatesPage__searchConditionsBox.open {
    /*transform: translateY(-90%);*/
    transform: translateY(0);
  }

  /* ドラッグバー - SPで表示 */
  .drag-bar {
    display: block;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: none;
    padding: 15px 0; 
    margin: 0 auto;
    z-index: 10;
    cursor: grab;
  }

  .drag-bar:active {
    cursor: grabbing;
  }

  .drag-bar::before {
    content: '';
    display: block;
    width: 60px;
    height: 6px;
    background: #ccc;
    border-radius: 3px;
    margin: 0 auto;
  }

  /* 閉じるボタン - SPで表示 */
  .sp-filter-close {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 11;
    background: #fff;
    color: var(--color-blue);
    border: 2px solid var(--color-blue);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
  }

  .sp-filter-close:hover {
      background: #f5f5f5;
  }

  .estatesPage__searchConditionsInner {
    flex: 1;
    padding: 0 20px 80px;
    overflow-y: auto;
    min-height: 0; /* flexアイテムの縮小を許可 */
  }

  .estatesPage__ConditionsBtnWrap {
    margin-top: 0;
    position: sticky;
    /*bottom: 7dvh;*/
    bottom: 0;
    transform: translateY(-64%);
    z-index: 1;
    flex-shrink: 0;
  }

  .filter-toggle {
    display: none;
  }

  .sp-filter-open {
    display: block;
    position: absolute;
    top: 60px;
    left: 12px;
    z-index: 20;
    background: var(--color-blue);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 1.6rem;
    cursor: pointer;
  }

  /* タイトルなどの余白調整 */
  .estatesPage__searchConditionsTtl {
    padding: 0 20px;
    margin-bottom: 15px;
  }

  .estatesPage__ConditionsBtn--search {
    width: 70%;
  }

  .estatesPage__ConditionsBtn--search input[type="submit"] {
    width: 100%;
  }

  /*
  ===== PAGING / SORT ==========================================
  */
  .estate_paging {
    margin: 20px 0;
  }

  .estate_paging p {
    text-align: center;
  }

  /*
  ===== ESTATELIST ==========================================
  */
  /*物件検索リスト*/
  .estateList .estateItem_check-favoriteWrap {
    font-size: clamp(1rem, 2.4vw, 1.4rem);
    margin-top: 1em;
  }

  .estateList .estateItem_check,
  .estateList .estateItem_favorite {
    width: 50%;
  }

  .estateList .estateItem_check,
  .estateList .estateItem_favorite_btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .estateList .estateItem_check input {
    flex-shrink: 0;
  }

  .estateList .estateItem_favorite_btn {
    width: 100%;
    text-align: center;
  }

  .estateList .estateItem_body {
    position: relative;
  }

  .estateList .estateItem_body a::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .estateList .estateItem_memberContent {
    font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  }

  .estateList .estateItem_data {
    font-size: 0.8em;
  }

  /* 物件検索一覧ページャー */
  .paging_itemList {
    justify-content: center;
  }

  .paging_item .paging_num_current,
  .paging_item a {
    padding: 8px 15px;
  }

  /* 会員限定物件 */
  .memberItem__body {
    background: url(../img/system/prpsearch/prplist_memberItem_bg_sp.webp) no-repeat center / cover;
    aspect-ratio: 780 / 330;
  }

  /*
  ===== PRPLIST_SHOPBOX(検索結果一覧 来店訴求) ==========================================
  */
  .prplist_shopBox a {
    display: block;
    margin: 5% 2%;
    padding: 5%;
    text-align: center;
    border: 3px solid var(--color-gold);
    background: url(../img/system/prpsearch/prplist_shopBox_bg_sp.webp) no-repeat center 0;
    background-size: cover;
    text-decoration: none;
  }

  .prplist_shopBox h4 {
    margin: 0 1em;
    text-align: center;
    display: inline-block;
  }

  .prplist_shopBox p {
    text-align: center;
    font-weight: 600;
    font-size: 1.6rem;
  }

  .prplist_shopBox p.count {
    font-size: clamp(2rem, 5vw, 2.4rem);
    font-weight: bold;
    vertical-align: middle;
    color: var(--color-blue);
  }

  .contactBnrBox__ttl--main {
    font-size: 1.2em;
    font-weight: 800;
  }

  .prplist_shopBox p.btn {
    display: block !important;
    background: var(--color-black);
    color: #FFF;
    font-weight: var(--weight-button);
    padding: 5% 0;
    margin-top: 5%;
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }


  /*
  ===== 検索オプション ==========================================
  */
  .estate_option_itemList {
    justify-content: center;
    flex-wrap: wrap;
  }

  .estate_option_item div,
  .estate_option_item a,
  .estate_option_item input {
    font-size: clamp(1.1rem, 2.4vw, 1.4rem);
    font-weight: bold;
    width: 100%;
    margin-left: 0 !important;
  }
  .estate_option_item input{
    padding: 1em 0.5em;
  }

  .estates-archive .estate_option_item {
    width: 80%;
    height: 3.6em;
    margin: 0 0 5px;
  }


  /*
  ===== 物件詳細:ESTATEDETAIL ==========================================
  */

  .estates-detail .estate_option_item.estate-reserve {
    margin-right: 0;
  }

  .estates-detail .estateItem_favorite_btn {
    height: 3.6em;
    display: flex;
    align-items: center;
  }

  .estates-detail .estate_option_item input {
    padding: 0.5em;
    height: 3.6em;
    width: 12em;
    margin: 0 !important;
  }

  .estatesPage .estatedetail_tbl01 {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    font-size: clamp(1.2rem, 2.8vw, 1.4rem);
  }

  .estatesPage .estatedetail_tbl01 tr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .estatesPage .estatedetail_tbl01 th,
  .estatesPage .estatedetail_tbl01 td {
    padding: 10px;
  }

  .estatesPage .estatedetail_tbl01 tr th {
    width: 30%;
  }

  .estatesPage .estatedetail_tbl01 tr td {
    width: 70%;
  }

  .estatesPage .estatedetail_tbl01 th {
    padding: 10px;
    border-bottom: none;
  }

  .estatesPage .estatedetail_tbl01 td {
    padding: 10px;
    border-left: none;
    border-bottom: none;
  }

  /*支払い例*/
  .estateDetail_payment dl {
    width: 100%;
  }

  /*リノベーション支払い例,土地新築セット支払い例*/
  .estateDetail_reformset .editBox .edit::after,
  .estateDetail_landset .editBox .edit::after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 16px 30px 0 30px;
    border-color: #CCC transparent transparent transparent;
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
  }

  .estateDetail_reformset .editBox .priceBox,
  .estateDetail_landset .editBox .priceBox {
    padding-top: 30px;
  }

  .estateDetail_reformset .payment_bonus,
  .estateDetail_landset .payment_bonus {
    margin: 10px auto;
  }

  /*物件詳細画像表示*/
  .estateDetail_image .mainImgList .mainImgList_item {
    width: 96vw;
  }

  .estateDetail_image .slick-arrow.slick-prev,
  .estateDetail_image .slick-arrow.slick-prev::before {
    left: 0 !important;
  }

  .estateDetail_image .slick-arrow.slick-next,
  .estateDetail_image .slick-arrow.slick-next::before {
    right: 0 !important;
  }

  /*surroundings:周辺環境*/
  .estateDetail_surroundings .surroundingsList_item {
    width: calc((100% - 10px) / 2);
    margin-right: 10px;
    margin-bottom: var(--gutter-supernarrow);
  }

  .estateDetail_surroundings .surroundingsList_item:nth-of-type(even) {
    margin-right: 0;
  }

  /*onepointbox:スタッフのワンポイント*/
  .estateDetail_onepoint .onepoint_staff {
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
    justify-content: center;
  }

  .onepoint_img {
    width: 20%;
  }

  .onepoint_txt {
    width: calc(100% - 20%);
    margin-left: 1em;
  }

  .estateDetail_onepoint .secTtl.onepoint_ttl {
    margin-top: 20px!important;
  }

  /*最近見た物件・レコメンド*/
  .estateDetail_recently{
    margin-top: var(--gutter-wide);
  }

  #main .estateDetail_recently .recently_ttl::before,
  #main .estateDetail_recently .recommend_ttl::before{
    position:absolute;
    top: -1em;
    left: 50%;
    transform: translateX(-50%);
    font-size:1.4em;
  }

  .estateDetail_recently .recentlyList_item {
    width: 100%;
    margin-bottom: var(--gutter-supernarrow);
  }

  .estateDetail_recently .recentlyList_item a {
    display: flex;
  }

  .estateDetail_recently .recentlyList_item_image {
    width: 36%;
    flex-shrink: 0;
  }

  /*loanPanel：ローン支払い額シミュレーション*/
  #loanPanelWrap{
    max-height: calc( 90svh - 80px );
    overflow-y: scroll;
  }
  .loanPanel_option{
    flex-direction: column;
    padding:5px 10px;
  }

  .loanPanel_option > dl > div{
    width:100%;
  }

  .loanPanel_option > dl dt{
    width:30%;
    white-space: nowrap;
  }

  #loanPanelWrap .loanPanel_option > dl input,
  #loanPanelWrap .loanPanel_option > dl select{
    padding: 0 5px;
    margin-right:5px;
  }

  .estateDetail_loan_overlay{
    background: rgba(255,255,255,.5);
    backdrop-filter: blur(5px);
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:100;
  }

  /*
  ===== 市区町村検索・路線検索 ==========================================
  */
  .estatesPage .estate_areaBox_ttl {
    padding: 10px;
  }

  .estatesPage .estate_areaList li {
    border-bottom: 1px solid var(--color-lightgray);
    background-position: left 10px center;
    padding: 1em 1em 1em 1.6em;
    font-size: 1.4rem;
  }

  .estatesPage .estate_areaSearch_notice {
    margin: var(--gutter-supernarrow);
  }

  /*
  ===== 会員登録説明/signup SP ==========================================
  */

  .signupPage .registBox__inner {
    width: unset;
    max-width: 96%;
    margin: 0 auto;
  }
  
  .signupPage .registBox__inner::after {
    content: none;
  }

  .registBox__ttl {
    text-align: center;
    align-items: center;
  }

  .registBox__ttl::before {
    left: 2px;
  }

}
