/* 件数表示の基本スタイル */
.estate-list__count {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: .9px;
    line-height: calc(51 / 18);
}
.estate-list__count span {
    font-family: 'Ubuntu', sans-serif;
    font-size: 51px;
    letter-spacing: 2.55px;
    line-height: calc(142 / 51);
    color: #EB8E22;
}
@media screen and (max-width: 1024px) {
    .estate-list__count {
        font-size: 12px;
        letter-spacing: 1.2px;
        line-height: 3;
    }
    .estate-list__count span {
    font-family: 'Ubuntu', sans-serif;
    font-size: 51px;
    letter-spacing: 2.55px;
    line-height: calc(142 / 51);
    color: #EB8E22;
}
}    
/* 共通系
-------------------------- */

/* 検索条件チェックのブロック */
.search-block {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    row-gap: 0px;
}

@media screen and (max-width: 1024px) {
    .search-block {
        row-gap: 2px;
    }
}

.search-block input[type="checkbox"],
.search-feature-block input[type="checkbox"] {
    appearance: auto;
    /*131．チェックボックスのサイズ調整*/
    transform: scale(1.2);
}

.search-block__title {
    margin-bottom: 24px;
    background-color: #F4F4F4;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1.8px;
    line-height: calc(36 / 18);
    padding: 10px 38px 10px 38px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .search-block__title {
        margin-bottom: unset;
        font-size: 16px;
        letter-spacing: 1.6px;
        line-height: calc(36 / 16);
        padding: 10px 12px 10px 20px;
    }
}

.js-toggle-target {
    display: none;
}

.toggle-item.is-open .js-toggle-target {
    display: block;
}

.js-toggle-btn {
    cursor: pointer;
}

.search-block__title-label {
    display: flex;
    align-items: center;
    column-gap: 19px;

}

.search-block__title-label span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 19px;
}

.search-block__body {
    padding-left: 38px;
    padding-right: 38px;
    font-size: 16px;
    letter-spacing: 1.6px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
    .search-block__body {
        padding-left: unset;
        padding-right: unset;
        margin-bottom: 44.45px;
    }
}
/* エリア 5 →  4 → 2*/
.search-block__place-list{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 54px;
  row-gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 4列 */
@media (max-width: 1280px) {
  .search-block__place-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* 2列 */
@media (max-width: 960px) {
  .search-block__place-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1列 */
@media (max-width: 520px) {
  .search-block__place-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* 学校 4 → 2*/

/*  4 列 */
.search-context[data-type="school"] .search-block__place-list{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* 2 列 */
@media (max-width: 1024px){
  .search-context[data-type="school"] .search-block__place-list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* 1列 */
@media (max-width: 520px) {
  .search-context[data-type="school"] .search-block__place-list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 1024px) {
    .search-block__place-list {
        flex-direction: row;
        gap: unset;
        row-gap: 16px;
    }

    .search-block__place-item:first-child {
        margin-top: 16px;
    }

    .search-block__place-item {
        width: 100%;
        padding-bottom: 16px;
        border-bottom: 1px solid #BFBFBF;
    }
}

.search-block__checkbox-label {
    display: flex;
    align-items: center;
    column-gap: 7.97px;
}

@media screen and (max-width: 1024px) {
    .search-block__checkbox-label {
        padding-left: 20px;
        padding-right: 12px;
    }
}

.search-block__checkbox-label a {
    display: inline-block;
    vertical-align: middle;
    padding-left: 7.97px;
    white-space: nowrap;
}

.search-block__checkbox-label a:hover {
    opacity: 0.7;
}

.search-block__checkbox-label::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #222222;
    border-right: 1px solid #222222;
    transform: rotate(45deg);
}

/* 検索条件こだわりのブロック */
.search-feature-block {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

.search-feature-block__group {
    border-top: 1px solid #C9C9C9;
    padding: 24px 26px 22px 24px;
}

.search-feature-block__group:last-child {
    border-bottom: 1px solid #C9C9C9;
}

@media screen and (max-width: 1024px) {
    .search-feature-block__group {
        border-top: none;
    }

    .search-feature-block__group:last-child {
        border-bottom: none;
    }
}

.search-feature-block__title {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1.8px;
    line-height: 2;
}

.search-feature-block__check {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 2;
}

.search-feature-block__select {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: calc(41 / 16)
}

.search-feature-block__group {
    display: flex;
}

@media screen and (max-width: 1024px) {
    .search-feature-block__group {
        display: block;
        padding: 0px 0px 0px 0px;
    }
}

.search-feature-block__item {
    display: flex;
    column-gap: 23px;
    width: 52%;
    align-items: center;
}

.search-feature-block__group:nth-child(4) .search-feature-block__item,
.search-feature-block__group:last-child .search-feature-block__item {
    width: 100%;
}

.search-feature-block__title {
    width: 180px;
    flex-shrink: 0;
}

.search-feature-block__title--first {
    width: 130px;
}

.search-feature-block__title--tab-br {
    display: none;
}

@media screen and (max-width: 1278px) {
    .search-feature-block__title--tab-br {
        display: block;
    }

    .search-feature-block__title {
        width: 160px;
    }

    .search-feature-block__title--first {
        width: 84px;
    }

    .search-feature-block__item {
        width: 50%;
        column-gap: 10px;
    }
}

@media screen and (max-width: 1024px) {
    .search-feature-block__title--tab-br {
        display: none;
    }

    .search-feature-block__item {
        flex-direction: column;
        width: 100%;
        align-items: unset;
        padding: 16px 0px 24px 0px;
        border-bottom: 1px solid #C9C9C9;
    }

    .search-feature-block__group:first-child .search-feature-block__item:first-child {
        border-top: 1px solid #C9C9C9;
    }

    .search-feature-block__title {
        width: unset;
    }

    .search-feature-block__title--first {
        width: unset;
    }

    .search-feature-block__item {
        width: 100%;
        column-gap: unset;
        row-gap: 2px;
    }
}

.search-feature-block__body:has(input[type="checkbox"]) {
    display: flex;
    align-items: center;
    column-gap: 30px;
    row-gap: 12px;
    flex-wrap: wrap;
}

.search-feature-block__body:has(select) {
    display: flex;
    align-items: center;
    column-gap: 16px;
}

@media screen and (max-width: 1278px) {
    .search-feature-block__body:has(select) {
        column-gap: 6px;
    }
}

.search-feature-block__check {
    display: flex;
    align-items: baseline;
    column-gap: 7px;
}

.search-feature-block__select {
    width: 160px;
    height: 40px;
    border: 1px solid #CBCBCB;
    border-radius: 4px;
    padding-left: 8px;
    padding-right: 8px;
}

@media screen and (max-width: 1278px) {
    .search-feature-block__select {
        width: 140px;
    }
}

@media screen and (max-width: 1024px) {
    .search-feature-block__select {
        width: 160px;
    }
}

.select-arrow {
    position: relative;
}

.select-arrow::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid #222222;
    border-bottom: 1px solid #222222;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

@media screen and (max-width: 1024px) {
    .search-feature-block__body:has(input[type="checkbox"]).box-select-group {
        display: flex;
        column-gap: 16px;
        row-gap: 16px;

    }

    .box-select-group .search-feature-block__check {
        cursor: pointer;
        display: inline-flex;
        align-items: center;
    }

    .box-select-group .search-feature-block__check input {
        display: none!important;
    }

    .box-select-group .search-feature-block__check span {
        display: flex;
        padding: 11px 5px;
        border: 1px solid #CBCBCB;
        border-radius: 4px;
        background: #fff;
        transition: 0.2s;
        min-width: 155px;
        justify-content: center;
        align-items: center;
    }

    .box-select-group .search-feature-block__check input:checked+span {
        background: #F2F2F2;
    }
}
/*129．特徴2列*/
@media (max-width: 520px) {
  .search-feature-block__body:has(input[type="checkbox"]) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    align-items: stretch;
  }

    .search-feature-block__body:has(input[type="checkbox"]) > label,
  .search-feature-block__body:has(input[type="checkbox"]) > .search-feature-block__check {
    min-width: 0;
    width: 100%;
  }

  .search-feature-block__body:has(input[type="checkbox"]) label {
    white-space: normal;
    word-break: break-word;
    line-height: 1.6;


  }
 /*130．縦列＋中央揃え*/
    .search-feature-block__check {
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: center;
    padding: 5px 0px;
  }

      .search-feature-block__select {
        width: 145px;
    }


}
/* 検索実行ボタンブロック */
.search-action {
    background-color: rgba(235, 142, 34, .7);
    height: 96px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .search-action {
        height: 125px;
    }
}

.search-action__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 19px;
}

@media screen and (max-width: 1024px) {
    .search-action__inner {
        column-gap: unset;
        flex-direction: column;
    }
}

.search-action__count {
    color: #000000;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1.2px;
    line-height: calc(35 / 16);
}

.search-action__count span {
    font: normal normal bold Ubuntu;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 3px;
    line-height: calc(65 / 40);
    display: inline-block;
    margin-left: 8px;
    margin-right: 15px;
}

@media screen and (max-width: 1024px) {
    .search-action__count span {
        line-height: 1;
    }
}

.search-action__button {
    background-color: #2B9B7D;
    font: normal normal bold Zen Kaku Gothic New;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: 1.6px;
    font-weight: bold;
    width: 240px;
    height: 48px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.search-action__button::after {
    content: '';
    background-color: #fff;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    right: 9%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* 検索ボタンの徒歩時間して */
.search-form--walk {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1280px;
    padding-right: 32px;
    padding-left: 32px;
}

@media screen and (max-width: 1024px) {
    .search-action--walk {
        height: 181px;
    }
    
    .search-form--walk {
        flex-direction: column;
        width: auto;
        gap: 16px;
    }
}

.search-form__walk {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-form__walk span {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 1.8px;
}

.search-form__walk-select {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    padding-left: 16px;
    padding-right: 16px;
    width: 120px;
    height: 40px;
    border: 1px solid #CBCBCB;
    border-radius: 4px;
    background-color: #fff;
    display: flex;
    align-items: center;
}

/* 物件詳細ページ
---------------------------*/

/* 物件ヘッダー部 */
.estate-show-block {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
}

.estate-show-block__header {
    display: flex;
    column-gap: 24px;
    padding-bottom: 24px;
    margin-bottom: 8px;
    position: relative;
}

.estate-show-block__header::after {
    position: absolute;
    bottom: 0;
    content: "";
    flex-shrink: 0;
    width: 100%;
    /* 線の長さ */
    height: 1px;
    /* 線の太さ */
    background-image: repeating-linear-gradient(to right,
            #000000 0 1px,
            /* ドットの幅 */
            transparent 2px 8px
            /* 間隔 8px */
        );
}

.estate-show-block__labels {
    display: flex;
    column-gap: 17px;
}

.estate-show-block__label {
    border-radius: 4px;
    color: #FFFFFF;
    font-weight: bold;
    letter-spacing: 0.7px;
    font-size: 14px;
    line-height: calc(36 / 16);
    display: block;
    padding: 8px 12px 7px 12px;
}

.estate-show-block__label--red {
    background-color: #E85959;
}

.estate-show-block__label--green {
    background-color: #2B9B7D;
}

.estate-show-block__title {
    font-size: 32px;
    letter-spacing: 3.2px;
    line-height: calc(36 / 32);
    font-weight: 500;
}

.estate-show-block__favorite {
    margin-left: auto;
}

@media screen and (max-width: 1024px) {
    .estate-show-block__header {
        flex-wrap: wrap;
        row-gap: 10px;
        padding-bottom: 9.21px;
        margin-bottom: 20.79px;
    }

    .estate-show-block__labels {
        order: 1;
    }

    .estate-show-block__title {
        order: 3;
        flex-basis: 100%;
        font-size: 24px;
        letter-spacing: 2.4px;
        line-height: 1.6;
    }

    .estate-show-block__favorite {
        order: 2;
    }

    .estate-show-block__label {
        letter-spacing: 0.6px;
        font-size: 12px;
        line-height: unset;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.estate-show-block__tags {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    letter-spacing: 1.6px;
    line-height: 2;
    margin-bottom: 40.81px;
}

@media screen and (max-width: 1024px) {
    .estate-show-block__tags {
        margin-bottom: 20.79px;
    }
}

/* 物件ボディー部 */
.estate-show-block__body {
    display: flex;
    column-gap: 60.21px;
    margin-bottom: 40.23px;
}

@media screen and (max-width: 1024px) {
    .estate-show-block__body {
        flex-direction: column;
    }
}

.estate-show-block__body-left {
    flex: 1;
}

.estate-show-block__body-right {
    width: 51.4285714%;
}

@media screen and (max-width: 1024px) {
    .estate-show-block__body-right {
        width: unset;
    }
}

.estate-price-block__price {
    display: flex;
    margin-bottom: 20.57px;
}

@media screen and (max-width: 1024px) {
    .estate-price-block__price {
        margin-bottom: 9.6px;
    }
}

.estate-price-block__label,
.estate-price-block__value {
    color: #2B9B7D;
}

.estate-price-block__label {
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: calc(18 / 14);
    margin-right: 9px;
}

@media screen and (max-width: 1024px) {
    .estate-price-block__label {
        margin-right: 8px;
        white-space: nowrap;
    }
}

.estate-price-block__value {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 4px;
    line-height: calc(32 / 40);
    margin-right: 16px;
    font-family: 'Ubuntu', sans-serif;
}

@media screen and (max-width: 1024px) {
    .estate-price-block__value {
        margin-right: 16px;
    }
}

@media screen and (max-width: 520px) {
    .estate-price-block__value {
        margin-right: 10px;
        white-space: nowrap;
    }
}

.estate-price-block__unit {
    margin-left: 8px;
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: calc(36 / 24);
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 1024px) {
    .estate-price-block__unit {
        font-size: 18px;
        letter-spacing: 1.8px;
        line-height: 2;
        margin-left: 4px;
    }
}

.estate-price-block__spec {
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 2;
    font-weight: 500;
    display: flex;
    align-items: end;
    white-space: nowrap;
}

.estate-location-block {
    margin-bottom: 26px;
    padding-bottom: 26px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    font-size: 16px;
    line-height: calc(28 / 16);
    letter-spacing: 0.8px;
    font-weight: 500;
    position: relative;

}

.estate-location-block__address,
.estate-location-block__station {
    display: flex;
    column-gap: 16px;
}

@media screen and (max-width: 1024px) {
    .estate-location-block.layout-pc {
        display: none;
    }
}

.estate-location-block::after {
    position: absolute;
    bottom: 0;
    content: "";
    flex-shrink: 0;
    width: 100%;
    /* 線の長さ */
    height: 1px;
    /* 線の太さ */
    background-image: repeating-linear-gradient(to right,
            #000000 0 1px,
            /* ドットの幅 */
            transparent 2px 8px
            /* 間隔 8px */
        );
}

.estate-description-block {
    display: flex;
    flex-direction: column;
    row-gap: 34.5px;
}

@media screen and (max-width: 1024px) {
    .estate-description-block {
        margin-bottom: 86.95px;
    }
}

.estate-description-block__catchcopy {
    color: #EB8E22;
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: calc(36 / 24);
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .estate-description-block__catchcopy {
        font-size: 18px;
        letter-spacing: 1.8px;
        line-height: 2;
        margin-top: 33.74px;
    }
}

.estate-description-block__text {
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: calc(28 / 16);
    font-weight: 500;
}

/* 物件画像 */
.estate-image-block .slick-slide {
    position: relative;
}

.estate-image-block .estate-slider-item img {
    width: 100%;
    aspect-ratio: 36 / 27;
    object-fit: contain;
}

.estate-image-block .estate-slider-item .estate-slider-item__info {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, .4);
    color: #FFFFFF;
    padding: 8px 22px 8px 24px;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 1.4;
    display: flex;
    justify-content: space-between;
    column-gap: 12px;
}

.estate-image-block .slick-dots {
    text-align: left !important;
    overflow: auto;
    position: unset !important;
    white-space: nowrap;
    margin-top: 18px;
}

.estate-image-block .slick-dots {
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.estate-image-block .slick-dots::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.estate-image-block .slick-dots li {
    width: calc((100% - 44.75px) / 6) !important;
    height: auto !important;
    margin: 0 8.95px 0 0 !important;
    position: relative;
}

.estate-image-block .slick-dots li:last-child {
    margin: 0 !important;
}

.estate-image-block .slick-dots li img {
    width: 100%;
    aspect-ratio: 112.04 / 84.71;
    object-fit: contain;
}

.estate-image-block .slick-arrow {
    position: absolute !important;
    top: 44% !important;
    transform: translateY(-50%) !important;
    z-index: 50 !important;
    background: #FFFFFF !important;
    color: #2B9B7D !important;
    border: 1px solid #C6C6C6 !important;
    width: 33px !important;
    height: 33px !important;
    border-radius: 50% !important;
    font-size: 26px !important;
    cursor: pointer !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    padding-bottom: 7.5px;
}

/* 左矢印 */
.estate-image-block .slick-prev.custom-arrow {
    left: 10px;
}

/* 右矢印 */
.estate-image-block .slick-next.custom-arrow {
    right: 10px;
}

.estate-image-block .slick-prev:before,
.estate-image-block .slick-next:before {
    content: "" !important;
    width: 10px;
    height: 10px;
    transform: rotate(-45deg);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.estate-image-block .slick-prev:before {
    border-left: 2px solid #2B9B7D;
    border-top: 2px solid #2B9B7D;
    left: 55%;
}

.estate-image-block .slick-next:before {
    border-right: 2px solid #2B9B7D;
    border-bottom: 2px solid #2B9B7D;
    left: 45%;
}

.estate-image-block .slick-dotted.slick-slider {
    margin-bottom: 49.29px;
}

/* 月々の支払い */
.estate-payment-block {
    background-color: rgba(244, 244, 244, .92);
    padding: 32px 32px 42px 32px;
    margin-bottom: 8.64px;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block {
        margin-left: -32px;
        margin-right: -32px;
        padding: 39.73px 32px 61.25px 32px;
        margin-bottom: unset;
    }
}

.estate-payment-block__title {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1.8px;
    line-height: calc(24 / 18);
    color: #2B9B7D;
    text-align: center;
    margin-bottom: 35.51px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 14px;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__title {
        font-size: 20px;
        font-weight: bold;
        letter-spacing: 1px;
        line-height: 1;
        color: #EB8E22;
        margin-bottom: 27.52px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.estate-payment-block__title::before,
.estate-payment-block__title::after {
    content: "";
    flex-shrink: 0;
    width: 30px;
    /* 線の長さ */
    height: 2px;
    /* 線の太さ */
    background-image: repeating-linear-gradient(to right,
            #000000 0 2px,
            /* ドットの幅 */
            transparent 2px 8px
            /* 間隔 8px */
        );
}

@media screen and (max-width: 1024px) {

    .estate-payment-block__title::before,
    .estate-payment-block__title::after {
        width: 20px;
    }
}

.estate-payment-block__inner {
    margin-bottom: 35px;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__inner {
        margin-bottom: 39px;
    }
}

.estate-payment-block__list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

@media screen and (max-width: 1427px) {
    .estate-payment-block__list {
        justify-content: start;
        gap: 11px;
    }
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__list {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        row-gap: 20px;
    }
}

.estate-payment-block__label {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.6px;
    line-height: calc(24 / 16);
    margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__label {
        margin-left: unset;
    }
}

.estate-payment-block__row:nth-child(1) .estate-payment-block__label {
    margin-left: 8px;
}

.estate-payment-block__row:nth-child(2) .estate-payment-block__label,
.estate-payment-block__row:nth-child(4) .estate-payment-block__label {
    margin-left: 5px;
}

.estate-payment-block__row:nth-child(3) .estate-payment-block__label {
    margin-left: 24px;
}

.estate-payment-block__row:nth-child(5) .estate-payment-block__label {
    margin-left: 4px;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__row {
        display: flex;
        column-gap: 35px;
        align-items: center;
    }

    .estate-payment-block__row.layout-pc {
        display: none;
    }

    .estate-payment-block__row:nth-child(1) .estate-payment-block__label,
    .estate-payment-block__row:nth-child(2) .estate-payment-block__label,
    .estate-payment-block__row:nth-child(3) .estate-payment-block__label {
        margin-left: unset;
        width: 72px;
        margin-bottom: unset;
    }
}



.estate-payment-block__input-group {
    display: flex;
    column-gap: 8px;
    align-items: end;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__input-group {
        column-gap: 5px;
    }
}

.estate-payment-block__input {
    background-color: #FFFFFF;
    border: 1px solid #B4B4B4;
    border-radius: 22px;
    width: 83px;
    height: 37px;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: calc(24 / 16);
    font-weight: bold;
    font-family: 'Ubuntu', sans-serif;
    padding-right: 12px;
    padding-left: 12px;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__input {
        min-width: 192px;
        height: 40px;
        font-size: 16px;
        letter-spacing: 0.8px;
        padding-right: 24px;
        padding-left: 24px;
    }
}

.estate-payment-block__unit {
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: calc(24 / 14);
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__unit {
        width: 32px;
        text-align: right;
    }
}

.estate-payment-block__result {
    display: flex;
    justify-content: center;
    align-items: end;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__result {
        flex-direction: column;
        align-items: center;
    }
}

.estate-payment-block__button-row {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__button-row {
        flex-direction: column;
        align-items: center;
        row-gap: 16.63px;
        margin-bottom: 40px;
    }
}

.estate-payment-block__calc-button {
    background-color: #E85959;
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.6px;
    width: 121px;
    height: 49px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__calc-button {
        min-width: 247px;
        height: 47.37px;
    }
}

.estate-payment-block__arrow {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    /* 上半分の透明部分 */
    border-bottom: 6px solid transparent;
    /* 下半分の透明部分 */
    border-left: 10px solid #E85859;
    /* 三角形の色・底辺 */
    margin-left: 17px;
    margin-right: 13px;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__arrow {
        border-bottom: unset;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 10px solid #E85859;
        margin-left: unset;
        margin-right: unset;
    }
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__result-row {
        display: flex;
        column-gap: 9px;
        align-items: center;
    }
}

.estate-payment-block__result-label {
    font-size: 16px;
    line-height: calc(24 / 16);
    margin-left: 4px;
    margin-bottom: 4px;
    font-weight: 500;
}

.estate-payment-block__result-value {
    display: flex;
    column-gap: 3px;
    align-items: end;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__result-value {
        column-gap: 25px;
    }
}

.estate-payment-block__result-input {
    background-color: #FFFFFF;
    border: 1px solid #E85859;
    border-radius: 22px;
    width: 146px;
    height: 36px;
    font-size: 20px;
    letter-spacing: 2px;
    line-height: calc(24 / 20);
    font-weight: bold;
    font-family: 'Ubuntu', sans-serif;
    padding: 6.5px 24px;
    color: #E85959;
}

@media screen and (max-width: 1024px) {
    .estate-payment-block__result-input {
        min-width: 192px;
        height: 40px;
    }
}

.estate-payment-block__result-unit {
    font-weight: 500;
    font-size: 14px;
    line-height: calc(24 / 14);
}

.estate-payment-block__note {
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: calc(24 / 14);
}

@media screen and (max-width: 520px) {
    .estate-payment-block__row {
        column-gap: 15px;

    }

    .estate-payment-block__input {
        min-width: 170px;
}

       .estate-payment-block__result-input {
        min-width: 170px;
    }

        .estate-payment-block__result-value {
        column-gap: 15px;
    }

        .estate-payment-block__result-row {
        column-gap: 25px;
    }

    .estate-payment-block__result-label {
    max-width: 70px;
    }
    .estate-payment-block {
    flex-wrap: nowrap;
    }

}


/* お問合せ */
.estate-contact {
    background-color: #E85959;
    padding: 35px 15px;
    color: #FFFFFF;
    margin-bottom: 96.78px;
}

@media screen and (max-width: 1024px) {
    .estate-contact.layout-sp {
        padding: 16px 15px;
        margin-bottom: 53.58px;
        display: block!important;
        margin-right: -32px;
        margin-left: -32px;
    }
}

.estate-contact__inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.estate-contact__tel-block {
    display: flex;
    align-items: center;
    column-gap: 8.72px;
    margin-right: 30.69px;
}

@media screen and (max-width: 1275px) {
    .estate-contact__tel-block {
        margin-right: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .estate-contact__tel-block {
        margin-right: 8px;
    }
}

.estate-contact__tel-ico {
    width: 47.59px;
    height: 47.6px;
}

.estate-contact__tel {
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 48px;
    letter-spacing: 2.4px;
    line-height: calc(138 / 48);
}

@media screen and (max-width: 1275px) {
    .estate-contact__tel {
        font-size: 38px;
    }
}

@media screen and (max-width: 1024px) {
    .estate-contact__tel {
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ffffff;
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }

    .estate-contact__tel svg {
        width: 24.9px;
        height: 59.55px;
        fill: #E85959;
    }
}

.estate-contact__info {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 2.4px;
    line-height: calc(20 / 16);
    margin-right: 31px;
}

@media screen and (max-width: 1275px) {
    .estate-contact__info {
        margin-right: 14px;
    }
}

.estate-contact__actions {
    display: flex;
    align-items: center;
    column-gap: 36px;
}

@media screen and (max-width: 1275px) {
    .estate-contact__actions {
        column-gap: 24px;
    }
}

@media screen and (max-width: 1024px) {
    .estate-contact__actions {
        column-gap: 8px;
    }
}

.estate-contact__action-btn {
    max-width: 276px;
    position: relative;
    padding: 19px 100px 19px 98px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    line-height: calc(32 / 18);
    letter-spacing: 1.8px;
    color: #E85959;
    background-color: #fff;
    white-space: nowrap;
}

@media screen and (max-width: 1275px) {
    .estate-contact__action-btn {
        padding: 9.5px 50px 9.5px 49px;
    }
}

@media screen and (max-width: 1275px) {
    .estate-contact__action-btn {
        padding: 12px 34px;
    }
}

.estate-contact__action-btn::after {
    content: '';
    background-color: #E85959;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    right: 12%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
    .estate-contact__action-btn::after {
        display: none;
    }
}

/* 周辺地図 */
.estate-map {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 99.99px;
}

.estate-map__title {
    margin-bottom: 80.5px;
}

.estate-map__frame iframe {
    aspect-ratio: 1400/436;
}

@media screen and (max-width: 1024px) {
    .estate-map {
        margin-bottom: 59.96px;
    }

    .estate-map__title {
        margin-bottom: 24px;
    }

    .estate-map__frame iframe {
        aspect-ratio: 327/240;
    }
}

/* 物件詳細サマリー */
.estate-summary {
    max-width: 1400px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 133px;
}

.estate-summary__title {
    margin-bottom: 52.63px;
}

@media screen and (max-width: 1024px) {
    .estate-summary {
        margin-bottom: 82.24px;
    }

    .estate-summary__title {
        margin-bottom: 24px;
    }
}

.estate-summary__list {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1.6px;
    line-height: 2;
    border-top: 1px solid #888888;
    margin-bottom: 24.34px;
}

@media screen and (max-width: 1024px) {
    .estate-summary__list {
        letter-spacing: 0.8px;
        margin-bottom: unset;
    }
}

.estate-summary__row {
    border-bottom: 1px solid #888888;
    display: flex;
}

@media screen and (max-width: 1024px) {
    .estate-summary__row {
        flex-direction: column;
    }
}

.estate-summary__label {
    background-color: #F4F4F4;
    width: 160px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {
    .estate-summary__label {
        width: 100%;
        padding: 12px 16px;
        display: flex;
        align-items: center;
    }
}

.estate-summary__value {
    padding: 12px 25px;
    display: flex;
    align-items: center;
    flex: 1;
}

@media screen and (max-width: 1024px) {
    .estate-summary__value {
        padding: 12px 16px;
    }
}

.estate-summary__cols {
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 1024px) {
    .estate-summary__cols {
        flex-direction: column;
    }
}

.estate-summary__cols .estate-summary__row {
    width: 50%;
}

@media screen and (max-width: 1024px) {
    .estate-summary__cols .estate-summary__row {
        width: 100%;
    }
}

.estate-summary__info {
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: calc(28 / 14);
    font-weight: 500;
}

/* recommend */
.recommend {
    background-color: #F4F4F4;
    padding: 94.88px 30px 100.74px 30px;
}

@media screen and (max-width: 1024px) {
    .recommend {
        background-color: #F4F4F4;
        padding: 42.82px 32px 59.68px 32px;
        overflow: hidden;
    }
}

.recommend__inner {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
}

.recommend__header img{
    max-width: 250px;
}

@media screen and (max-width: 1024px) {
    .recommend__header {
        margin-bottom: 40px;
    }
}

/* まちスポット一覧 */
.spot {
    padding: 116.47px 30px 170.45px 30px;
}

@media screen and (max-width: 1024px) {
    .spot {
        padding: 42.82px 32px 105px 32px;
        overflow: hidden;
    }
}

.spot__inner {
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
}

.spot__header {
    margin-bottom: 50.61px;
}

@media screen and (max-width: 1024px) {
    .spot__header {
        margin-bottom: 39.99px;
    }
}

/* 事務所情報 */
.estate-show__office .office-info {
    padding-right: 32px;
    padding-left: 32px;
    margin-bottom: 235px;
}

/* SP時の物件詳細スライダー調整 */
@media screen and (max-width: 1024px) {
    .estate-detail-slider {
        margin-right: -32px;
        margin-bottom: 20px;
    }

    .estate-detail-slider-wrapper .common-slider .slick-list {
        margin-right: unset !important;
    }

    .estate-detail-slider-wrapper .slick-dotted.slick-slider.common-slider {
        margin-bottom: 10px;
    }

    .estate-detail-slider-wrapper .common-slider .slick-slide img {
        margin-bottom: 0;
    }

    .estate-show__office .office-info {
    margin-bottom: 120px;
}
}

/* 物件一覧
---------------------*/
.estate-list-wrapper .dash-head {
    margin-bottom: 64px;
}

@media screen and (max-width: 1024px) {
    .estate-list-wrapper .dash-head {
        margin-bottom: 37.7px;
    }
}

.estate-list__category-links-inner {
    text-align: center;
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 2;
    margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
    .estate-list__category-links-inner {
        text-align: left;
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }

    .estate-list__category-links-inner a {
        display: flex;
        align-items: center;
        column-gap: 8px;
    }

    .estate-list__category-links-inner a::after {
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: 1px solid #222222;
        border-right: 1px solid #222222;
        transform: rotate(45deg);
    }
}

.estate-list__conditions-outer {
    margin-right: -32px;
    margin-left: -32px;
    background-color: #F4F4F4;
    margin-bottom: 40.45px;
}

@media screen and (max-width: 1024px) {
    .estate-list__conditions-outer {
        margin-bottom: 60px;
    }
}

.estate-list__conditions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 13px;
    padding-bottom: 11px;
}

@media screen and (max-width: 1024px) {
    .estate-list__conditions {
        flex-direction: column;
        padding-right: 32px;
        padding-left: 32px;
        padding-top: 40px;
        padding-bottom: 42px;
    }
}

.estate-list__conditions-current {
    flex: 1;
}

.estate-list__conditions-current dl {
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: 2;
    display: flex;
    font-weight: 400;
}

@media screen and (max-width: 1024px) {
    .estate-list__conditions-current dl {
        display: block;
    }
}

.estate-list__conditions-current dl dt {
    font-weight: 400;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {

    .estate-list__conditions-current dl dt,
    .estate-list__conditions-current dl dd {
        display: inline;
    }
}

.estate-list__conditions-actions {
    display: flex;
    justify-content: flex-end;
    column-gap: 16px;
}



.estate-list__btn:first-child {
    padding-left: 25px;
    padding-right: 44px;
}

.estate-list__btn:last-child {
    padding-left: 28px;
    padding-right: 37px;
}



.estate-list__sort-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.estate-list__btn {
        position: relative;
        isolation: isolate;

        width: 144px;
        height: 40px;
        border-radius: 100px;
        padding: 10px 30px 10px 20px;

        display: flex;
        justify-content: center;
        align-items: center;

        font-family: "Zen Kaku Gothic New", sans-serif;

        /* 色（反転用） */
        --btn-fg: #EB8E22;
        --btn-fg-hover: #fff;
        --btn-bg: #fff;
        --btn-bg-hover: #EB8E22;

        color: var(--btn-fg);
        font-weight: bold;
        font-size: 14px;
        line-height: 32px;
        letter-spacing: .01em;
        text-align: center;

        background: var(--btn-bg);
        border: 1px solid #EB8E22;

        cursor: pointer;
        overflow: hidden;

        transition: color .0s ease;
}

/* ===== 右端のドット ===== */
.estate-list__btn::after{
        content: "";
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--btn-fg);
        transition: background-color .25s ease;
        z-index: 1;
        pointer-events: none;
}

/* ===== dot起点で広がる背景 ===== */
.estate-list__btn::before{
        content: "";
        position: absolute;
        inset: 0;
        background: var(--btn-bg-hover);
        clip-path: circle(0px at calc(100% - 18px) 50%);
        transition: clip-path .45s cubic-bezier(.4,0,.2,1);
        z-index: -1;
        pointer-events: none;
}

/* hover時：円が広がる */
.estate-list__btn:hover::before,
    .estate-list__btn:focus-visible::before{
    clip-path: circle(
        800px at calc(100% - 18px) 50%
    );
}

/* hover時：文字色反転 */
.estate-list__btn:hover,
.estate-list__btn:focus-visible{
        color: var(--btn-fg-hover);
        outline: none;
}

/* hover時：ドット色反転 */
.estate-list__btn:hover::after,
.estate-list__btn:focus-visible::after{
        background-color: var(--btn-fg-hover);
}



@media screen and (max-width: 1024px) {
    .estate-list__count span:not(.layout-pc) {
        font-size: 32px;
        letter-spacing: 3.2px;
        line-height: calc(56 / 32);
        display: inline-block;
        margin-right: -4px;
        margin-left: -4px;
    }
}

.estate-list__sort dl {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.estate-list__sort dl dt {
    font-weight: 500;
}

.estate-list__sort select {
    width: 155px;
    height: 30px;
    border: 1px solid #707070;
    border-radius: 1px;
    padding-left: 12px;
    padding-right: 12px;
    color: #888888;
}

.estate-list__list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 51px;
    row-gap: 60px;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1024px) {
    .estate-list__list {
        row-gap: 30px;
        margin-bottom: 40px;
    }
}

.estate-list__list>.common-estate-card {
    width: calc((100% - 102px) / 3);
}

@media screen and (max-width: 1024px) {
    .estate-list__list>.common-estate-card {
        width: calc((100% - 51px) / 2);
    }
}

@media screen and (max-width: 783px) {
    .estate-list__list>.common-estate-card {
        width: 100%;
        border-bottom: 1px solid #CCCCCC;
        padding-bottom: 30px;
    }
}

/* 検索モーダル */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    justify-content: center;
    align-items: center;
    z-index: 9990;
}

@media screen and (max-width: 1024px) {
    .modal-overlay {
        top: 68px;
    }
}

/* 背景(疑似要素) */
.modal-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .19);
    z-index: 1;
}

/* モーダル本体 */
.modal-content {
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 16px 16px 112px 16px;
    width: 90%;
    max-width: 1400px;
    height: 82vh;
    overflow-y: auto;
    border-radius: 10px;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (max-width: 1024px) {
    .modal-content {
        padding: 16px 16px 125px 16px;
    }
}

.modal-content-header {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1.2px;
    line-height: calc(36 / 24);
    color: #EB8E22;
    margin-top: 11px;
    margin-bottom: 23px;
}

@media screen and (max-width: 1024px) {
    .modal-content-header {
        font-size: 20px;
        letter-spacing: 1px;
        line-height: calc(36 / 12);
        margin-bottom: 0;
        margin-top: 0;
    }
}

.modal-content .close-modal-btn {
    position: absolute;
    background: transparent;
    border: none;
    cursor: pointer;
    right: 30px;
    top: 33px;
    width: 20px;
    height: 20px;
}

@media screen and (max-width: 1024px) {
    .modal-content .close-modal-btn {
        width: 18px;
        height: 18px;
        right: 17px;
        top: 33px;
    }
}

.modal-content .close-modal-btn::before,
.modal-content .close-modal-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: #333;
    /* ← 色変更可 */
    transform-origin: center;
}

/* 1本目（45度） */
.modal-content .close-modal-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* 2本目（-45度） */
.modal-content .close-modal-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-overlay .search-action {
    bottom: 9vh;
    bottom: 0;
}

@media screen and (max-width: 1024px) {
    .modal-overlay .search-action {
        bottom: calc(9vh - 34px);
        bottom: 0;
    }

    .modal-overlay .box-select-group .search-feature-block__check span {
        min-width: 150px;
        white-space: nowrap;
    }
}

/* お気に入り一覧 */
.favorite-wrapper .dash-head__title {
    margin-bottom: 47px;
}

.favorite-wrapper .dash-head__text {
    font-weight: 500;
}

.favorite-wrapper .favorite-action-block {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 1024px) {
    .favorite-wrapper .favorite-action-block {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }
}

.favorite-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

@media screen and (max-width: 1024px) {
    .favorite-actions {
        flex-direction: column;
        gap: 16px;
    }
}

.favorite-actions__check-all-label {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: .8px;
    line-height: calc(28 / 16);
    color: #EB8E22;
    border-radius: 26px;
    border: 1px solid #EB8E22;
    padding-right: 35px;
    padding-left: 35px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .favorite-actions__check-all-label {
        font-size: 14px;
    }
}

.favorite-actions__check-all-label input {
    appearance: checkbox !important;
    -webkit-appearance: checkbox !important;
    display: inline-block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0;
}

.favorite-actions__contact {
    padding-right: 31px;
    padding-left: 31px;
    height: 40px;
    color: #ffffff;
    background-color: #E85959;
    border-radius: 22px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 2;
    display: flex;
    align-items: center;
    gap: 11px;
}

@media screen and (max-width: 1024px) {
    .favorite-actions__contact {
        font-size: 14px;
    }
}

.favorite-actions__contact::after {
    content: '';
    width: 9px;
    height: 9px;
    background-color: #ffffff;
    border-radius: 50%;
}

/* 検索一覧画面の0件時お問合せ */
.estate-list__empty {
    background-color: #F8F4ED;
    padding: 40px 16px 53px 16px;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.8px;
    line-height: 2;
    text-align: center;
    margin-top: 80px;
    margin-bottom: 80px;
}

@media screen and (max-width: 1024px) {
    .estate-list__empty {
        margin-right: -32px;
        margin-left: -32px;
        padding-right: 32px;
        padding-left: 32px;
    }
}

.estate-list__empty-title {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 3.2px;
    line-height: calc(36 / 32);
    margin-bottom: 24px;
}

@media screen and (max-width: 1024px) {
    .estate-list__empty-title {
        font-size: 24px;
        line-height: calc(36 / 24);
        letter-spacing: 2.4px;
    }
}
@media screen and (max-width: 519px) {
  .nowrap {
    white-space: nowrap;
  }
}
 .catchphrase-title__icon{
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: bold;
  fill: #222;
     max-height: 60px;
    width: auto;
}
.estate-list__empty-text {
    display: block;
    margin-bottom: 33px;
}

.estate-list__empty-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-bottom: 42px;
}

.estate-list__empty-link {
    width: 240px;
    height: 48px;
    border-radius: 24px;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.estate-list__empty-link::after {
    content: '';
    width: 9px;
    height: 9px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    right: 21px;
    top: 50%;
    transform: translateY(-50%);
}

.estate-list__empty-link--search {
    background-color: #2B9B7D;
}

.estate-list__empty-link--contact {
    background-color: #E85959;
}
.popup-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #f4962b;
    color: #fff;
    padding: 28px 40px;
    border-radius: 16px;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    min-width: 360px;
    max-width: 80%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
    z-index: 9999;
    transform: translate(-50%, -50%) scale(0.9); /* ふわっと出る準備 */
}

.popup-message.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); /* ふわっと拡大 */
}

