@charset "UTF-8";
/* ===============================================================
  page-header-property部分   ■ BEGIN ■
=============================================================== */
.page-header-property-title {
  background: url(../../images/pictures/pic-white-wallpaper.webp) no-repeat center / 100%;
  border-bottom: 2px solid var(--mstyle-main-color);
  padding: 50px 0 0 0;
}

.page-header-property-title .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header-property-title .left {
  display: flex;
  align-items: center;
}

.page-header-property-title .left .title-icon {
  width: 80px;
}

.page-header-property-title .left .container p {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--fz-12);
  font-weight: 700;
  line-height: normal;
  background: var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 4px 20px;
}

.page-header-property-title .left .container h1 {
  font-size: var(--fz-24);
  font-weight: 700;
  line-height: normal;
}

.page-header-property-title .right {
  --svg-width: 32px;
  --svg-color: var(--mstyle-text-color);
  --btn-transition: all .7s cubic-bezier(0.25,0.46,0.45,0.94);
  display: flex;
  gap: 0 34px;
  font-size: var(--fz-12);
  line-height: normal;
}

.page-header-property-title .right .copy-url,
.page-header-property-title .right .favorite {
  position: relative;
}

.page-header-property-title .right .btn,
.page-header-property-title .right .favorite {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}

.page-header-property-title .right .btn.show-wrapper {
  --svg-color: var(--mstyle-main-color);
}

.page-header-property-title .right .btn.show-wrapper svg {
  opacity: 1;
  transition: var(--btn-transition);
}

.page-header-property-title .right .btn svg {
  opacity: .6;
  transition: var(--btn-transition);
}

.page-header-property-title .right .copy-message {
  width: 150%;
  color: var(--mstyle-red-color);
  text-align: center;
  user-select: none;
  opacity: 0;
  transition: var(--btn-transition);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.page-header-property-title .right .copy-message.show {
  opacity: 1;
  top: -20px;
}

.page-header-property-title .right .simplefavorite-button {
  opacity: .6;
  transition: var(--btn-transition);
}

.page-header-property-title .right .simplefavorite-button svg {
  transition: var(--btn-transition);
}

.page-header-property-title .right .simplefavorite-button.active {
  --svg-color: var(--mstyle-main-color);
  opacity: 1;
}

.page-header-property-title .right .favorite-message {
  width: 150%;
  color: var(--mstyle-red-color);
  text-align: center;
  user-select: none;
  opacity: 0;
  transition: var(--btn-transition);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.page-header-property-title .right .favorite-message.show {
  opacity: 1;
  top: -20px;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .page-header-property-title .wrapper {
    gap: 0 30px;
    margin: 0 0 5px 0;
  }
  .page-header-property-title .left .container p {
    padding: 2px 16px;
  }
  .page-header-property-title .left .container h1 {
    font-size: var(--fz-20);
  }
  .page-header-property-title .left {
    align-items: flex-end;
  }
  .page-header-property-title .left .title-icon {
    flex-shrink: 0;
    width: 60px;
  }
  .page-header-property-title .right {
    flex-shrink: 0;
  }
}

@media screen and (max-width:768px) {
  .page-header-property-title {
    padding: 40px 0 0 0;
  }
  .page-header-property-title .wrapper {
    position: relative;
  }
  .page-header-property-title .left {
    align-items: flex-end;
    margin: 0 0 8px 0;
  }
  .page-header-property-title .left .title-icon {
    flex-shrink: 0;
    width: 18%;
  }
  .page-header-property-title .left .container p {
    font-size: var(--fz-10);
    padding: 2px 16px;
  }
  .page-header-property-title .left .container h1 {
    font-size: var(--fz-16);
    line-height: 107%;
  }
  .page-header-property-title .right {
    --svg-width: 24px;
    gap: 0 12px;
    position: absolute;
    right: 0;
    top: -14px;
  }
  .page-header-property-title .right .copy-url .btn-title,
  .page-header-property-title .right .favorite .btn-title {
    display: none;
  }
}

/* ===============================================================
  page-header-property部分   ■ END ■
=============================================================== */


/* ===============================================================
  画像モーダル部分（検索結果のモーダルとは異なるので独自にスタイリング）   ■ BEGIN ■
=============================================================== */
.modal-v2 .modal-content {
  width: 100%;
  height: 85dvh;
  text-align: center;
  overflow-y: visible;
}

.modal-v2 .modal-close {
  --svg-width: 20px;
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.modal-v2 .modal-image {
  width: auto;
  border-radius: var(--base-radius);
  margin: 0 0 10px 0;
}

.modal-v2 .comment {
  display: block;
  width: 80%;
  max-height: calc(1em * 2.5);
  font-size: var(--fz-14);
  line-height: 1.5em;
  overflow-y: auto;
  word-break: break-word;
  padding: 0 4px 0 0;
  margin: 0 auto;
}

/* comment が空じゃない時 */
.modal-v2:has(.comment:not(:empty)) .modal-image {
  height: 92%;
}

/* comment が空の時（現状のやつ） */
.modal-v2:has(.comment:empty) .modal-image {
  width: 100%;
  height: 100%;
  margin: 0;
}


@media (max-width: 1023px) and (min-width: 769px) {
  .modal-v2 .modal-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 86%;
  }
  .modal-v2:has(.comment:not(:empty)) .modal-image {
    height: 85%;
  }
  .modal-v2:has(.comment:empty) .modal-image {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width:768px) {
  .modal-v2 .modal-content {
    position: absolute;
    width: 95%;
    height: auto;
    margin: 0 auto;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
  }
  .modal-v2 .modal-close {
    top: 2px;
    right: 5px;
  }
  .modal-v2 .modal-image {
    width: 100%;
    height: auto;
  }
}
/* ===============================================================
  モーダル部分   ■ END ■
=============================================================== */

/* ===============================================================
  購入の流れモーダル部分   ■ BEGIN ■
=============================================================== */
.flow-modal {
  place-items: center;
}

.flow-modal .modal-content {
  width: 90%;
  height: 85dvh;
  padding: 60px 50px 0 68px;
  margin: 0;
}

.flow-modal .flow-modal-close {
  --svg-width: 28px;
  --svg-color: var(--mstyle-text-color);
  position: fixed;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  right: 25px;
  top: 25px;
  background: var(--white-color);
  border-radius: 50%;
}

.flow-modal .buy-flow > div {
  display: flex;
  gap: 0 50px;
  margin: 0 0 56px 0;
}

.flow-modal .buy-flow .pic-area {
  position: relative;
}

.flow-modal .buy-flow .pic-area .step {
  position: absolute;
  width: 125px;
  top: -46px;
  left: -45px;
}

.flow-modal .buy-flow .pic-area .pic {
  width: 250px;
  height: 100%;
  border-radius: var(--base-radius);
  overflow: hidden;
}

.flow-modal .buy-flow .text {
  position: relative;
}

.flow-modal .buy-flow .title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 5px 0;
}

.flow-modal .buy-flow .title-area h3 {
  --svg-width: 32px;
  --svg-va: -7px;
  font-size: var(--fz-24);
  font-weight: 700;
}

.flow-modal .buy-flow .text p {
  margin: 0 0 20px 0;
}

.flow-modal .buy-flow .tips {
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  padding: 25px 20px;
}

.flow-modal .buy-flow .tips h4 {
  display: inline-block;
  font-weight: 700;
  background: var(--white-color);
  border-radius: var(--base-radius);
  padding: 4px 16px;
  margin: 0 0 8px 0;
}

.flow-modal .buy-flow .tips h4 svg {
  --svg-width: 28px;
  --svg-color: var(--mstyle-main-color);
  --svg-va: -7px;
  margin: 0 7px 0 0;
}

.flow-modal .buy-flow .tips li {
  padding: 0 0 0 38px;
  position: relative;
}

.flow-modal .buy-flow .tips li::before {
  position: absolute;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mstyle-text-color);
  left: 20px;
  bottom: 50%;
  transform: translate(0, 50%);
}

.flow-modal .only-sp {
  display: none;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .flow-modal .buy-flow>div {
    gap: 0 25px;
    margin: 0 0 78px 0;
  }
  .flow-modal .buy-flow>div:last-child {
    margin: 0;
  }
  .flow-modal .buy-flow .pic-area .step {
    width: 108px;
    top: -50px;
    left: -17px;
  }
  .flow-modal .buy-flow .pic-area .pic {
    width: 228px;
  }
  .flow-modal .buy-flow .text::after {
    width: 130px;
    bottom: -30px;
    right: 0;
  }
  .flow-modal .buy-flow .tips li {
    line-height: normal;
    padding: 0 0 0 26px;
  }
  .flow-modal .buy-flow .tips li + li {
    margin: 8px 0 0 0;
  }
  .flow-modal .buy-flow .tips li::before {
    top: 8px;
    left: 12px;
    bottom: auto;
    transform: none;
  }
}

@media screen and (max-width:768px) {
  .flow-modal .modal-content {
    width: 95%;
    padding: 20px 15px 20px 15px;
  }
  .flow-modal .flow-modal-close {
    --svg-width: 20px;
    width: 30px;
    height: 30px;
    right: 17px;
    top: 12px;
  }
  .flow-modal .buy-flow {
    --btn-large-any-color: var(--white-color);
    --btn-large-any-bgcolor: var(--mstyle-text-color);
    width: 100%;
    max-width: 348px;
    background: none;
    padding: 0;
    margin: 0 auto 0 auto;
  }

  .flow-modal .buy-flow>div {
    align-items: center;
    flex-direction: column;
    background: var(--mstyle-main-color);
    border-radius: var(--base-radius);
    padding: 0 0 60px 0;
    margin: 0 0 125px 0;
    position: relative;
  }

  .flow-modal .buy-flow>div::before {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 360 / 119;
    background-image: url(../../images/illust/illust-step-back-sp.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: initial;
  }

  .flow-modal .buy-flow>div::after {
    position: absolute;
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 360 / 119;
    background-image: var(--step-bg-bottom);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    bottom: -77px;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .flow-modal .buy-flow .flow-1 {
    --step-bg-bottom: url(../../images/illust/illust-step-1-sp.webp);
    padding: 26px 0 45px 0;
  }

  .flow-modal .buy-flow .flow-2 {
    --step-bg-bottom: url(../../images/illust/illust-step-2-sp.webp);
  }

  .flow-modal .buy-flow .flow-3 {
    --step-bg-bottom: url(../../images/illust/illust-step-3-sp.webp);
  }

  .flow-modal .buy-flow .flow-4 {
    --step-bg-bottom: url(../../images/illust/illust-step-4-sp.webp);
  }

  .flow-modal .buy-flow .flow-5 {
    --step-bg-bottom: url(../../images/illust/illust-step-5-sp.webp);
  }
  .flow-modal .buy-flow .flow-1::before {
    content: none;
  }

  .flow-modal .buy-flow .pic-area .step {
    display: none;
  }

  .flow-modal .buy-flow .pic-area {
    width: 80%;
  }

  .flow-modal .buy-flow .pic-area .pic {
    width: 100%;
    overflow: visible;
    position: relative;
  }

  .flow-modal .buy-flow .pic-area .pic img {
    border-radius: inherit;
  }

  .flow-modal .buy-flow .text {
    width: 88%;
    padding: 30px 0 10px 0;
  }

  .flow-modal .buy-flow .text::after {
    content: none;
  }

  .flow-modal .buy-flow .text p {
    width: 100%;
    color: var(--white-color);
  }
  .flow-modal .buy-flow .tips {
    font-size: var(--fz-14);
    padding: 20px 15px;
  }
  .flow-modal .buy-flow .tips h4 svg {
    --svg-width: 20px;
    --svg-va: -5px;
  }
  .flow-modal .buy-flow .tips li {
    line-height: normal;
    padding: 0 0 0 26px;
  }
  .flow-modal .buy-flow .tips li + li {
    margin: 8px 0 0 0;
  }
  .flow-modal .buy-flow .tips li::before {
    top: 8px;
    left: 12px;
    bottom: auto;
    transform: none;
  }

  .flow-modal .buy-flow .title-area h3 {
    --svg-width: 28px;
    --svg-color: var(--white-color);
    color: var(--white-color);
    font-size: var(--fz-20);
  }
  .flow-modal .only-sp {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 50px 0;
    position: relative;
  }
  .flow-modal .only-sp::before {
    position: absolute;
    content: "";
    display: block;
    width: 80px;
    aspect-ratio: 1;
    background: url(../../images/illust/illust-o-bunch-flower.webp) no-repeat center / contain;
    right: 5px;
    top: -80px;
  }
}

@media screen and (max-width:375px) {
  .flow-modal .buy-flow>div::after {
    bottom: -70px;
  }
}

/* ===============================================================
  購入の流れモーダル部分   ■ END ■
=============================================================== */


/* ===============================================================
  おすすめ物件カード  property-cards  ■ BEGIN ■
  /favorite/, /buy-property/, トップページにも記載あり
=============================================================== */
.property-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 80px 60px;
  margin: 0 0 100px 0;
}

.property-card {
  display: flex;
  align-items: stretch;
  background: var(--white-color);
  position: relative;
}

.property-card .card-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--base-radius);
  box-shadow: var(--box-shadow-card);
  position: relative;
  transition: var(--transition-main);
}

@media (hover: hover) {
  .property-card .card-wrapper:hover {
    transform: translate(1px, 1px);
    box-shadow: var(--box-shadow-card-hov);
  }
}

.property-cards:has(.no-favorite-text) {
  display: block;
}

.property-card .btn-wrapper {
  flex-grow: 1;
  display: block;
}

.property-card .main-pic {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--mstyle-light-green-color);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.property-card .main-pic .no-image {
  padding: 8%;
}

.property-card .property-name {
  display: grid;
  place-items: center;
  min-height: 64px;
  color: var(--white-color);
  font-weight: 700;
  line-height: 125%;
  background: var(--mstyle-main-color);
  padding: 12px 28px;
}

.property-card .property-name span {
  display: -webkit-box; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card .wrapper {
  width: 80%;
  padding: 0 0 22px 0;
  margin: 0 auto;
}

.property-card .property-price {
  font-size: var(--fz-12);
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  background: var(--mstyle-light-green-color);
  border-radius: 0 0 8px 8px;
  padding: 12px 20px;
  margin: 0 0 22px 0;
}

.property-card .property-price .price {
  font-size: var(--fz-24);
  font-weight: 700;
  margin: 0 0 0 3px;
}

.property-card .property-meta {
  --svg-width: 16px;
  --svg-va: -3px;
  font-size: var(--fz-12);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: .02em;
  padding: 0 0 16px 0;
  margin: 0 0 16px 0;
  position: relative;
}

.property-card .property-meta::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--mstyle-main-color);
  border-radius: 5px;
  bottom: 0;
  left: 0;
}

.property-card .property-meta > li + li {
  margin: 6px 0 0 0;
}

.property-card .property-meta .flex {
  display: flex;
  align-items: flex-start;
  gap: 0 5px;
}

.property-card .property-meta .flex > svg {
  flex-shrink: 0;
}

.property-card .property-meta .clamp {
  display: -webkit-box; 
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card .property-meta-sub {
  display: flex;
  align-items: center;
  gap: 0 22px;
}

.property-card .comment {
  height: 54px;
  font-size: var(--fz-12);
  font-weight: 500;
  line-height: 150%;
  letter-spacing: .02em;
}

.property-card .comment span {
  display: -webkit-box; 
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.property-card .btn {
  display: block;
  font-size: var(--fz-12);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: .02em;
  text-align: center;
  background: var(--mstyle-sub-grey-color);
  border-radius: 0 0 8px 8px;
  padding: 6px 0;
}

.property-card .btn svg {
  --svg-width: 20px;
  --svg-va: -5.5px;
  margin: 0 0 0 6px;
}

.property-card .update-date {
  --svg-width: 12px;
  --svg-va: -2px;
  position: absolute;
  font-size: var(--fz-10);
  line-height: 150%;
  letter-spacing: .02em;
  bottom: -20px;
  right: 0;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .property-cards {
    margin: 0 0 200px 0;
  }
}

@media screen and (max-width:768px) {
  .property-cards {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    gap: 60px 50px;
    width: 85%;
    margin: 0 auto 50px auto;
  }
  .property-card .property-price {
    padding: 12px 12px;
  }
}

/* ===============================================================
  おすすめ物件カード  property-cards  ■ END ■
=============================================================== */


/* ===============================================================
  賃貸用 おすすめ物件カード  property-cards  ■ BEGIN ■
  /favorite/, /rent-property/, トップページにも記載あり
=============================================================== */
.property-rent-card .property-price {
  padding: 12px 28px;
  margin: 0 0 8px 0;
}

.property-rent-card .property-name {
  background: var(--mstyle-sub-brown-color);
}

.property-rent-card .property-price {
  background: var(--mstyle-light-brown-color);
}

.property-rent-card .property-price .price-2 {
  font-size: 1.1em;
  margin: 0 0 0 3px;
}

.property-rent-card .property-price .price-2 .title {
  margin: 0 1px 0 0;
}

.property-rent-card .property-sub-price {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  margin: 0 0 20px 0;
}

.property-rent-card .property-sub-price .container {
  display: flex;
  align-items: center;
  gap: 0 4px;
}

.property-rent-card .property-sub-price .icon {
  width: 24px;
  height: 24px;
  font-size: var(--fz-12);
  text-align: center;
  line-height: 24px;
  background: var(--mstyle-light-brown-color);
  border-radius: calc(var(--base-radius) / 2);
}

.property-rent-card .property-sub-price :is(.gratuity_month, .deposite_month) {
  font-size: var(--fz-14);
}

.property-rent-card .property-meta::after {
  background: var(--mstyle-sub-brown-color);
}

@media screen and (max-width:768px) {
}

/* ===============================================================
  賃貸用 おすすめ物件カード  property-cards  ■ END ■
=============================================================== */


/* ===============================================================
  本体部分   ■ BEGIN ■
=============================================================== */
/* ------------------- 共通 -------------------- */
.property-sec-margin {
  margin: 0 0 100px 0;
}

.mb35 {
  margin-bottom: 35px;
}

/* phpファイルにif (!$related_query->have_posts())のstyleタグで直接記述
main::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 150px;
  background: var(--mstyle-light-grey-color);
  bottom: -150px;
  left: 0;
  z-index: 0;
} */

@media screen and (max-width:768px) {
  .property-sec-margin {
    margin: 0 0 50px 0;
  }
  .mb35 {
    margin-bottom: 30px;
  }
  .scroll-btn {
      bottom: 10px;
      right: 15px;
  }
}

/* ------------------- fv -------------------- */
.main-property-detail {
  --btn-large-any-color: var(--white-color);
  --btn-large-any-bgcolor: var(--mstyle-sub-color);
}

.fv {
  background: var(--mstyle-light-grey-color);
  padding: 20px 0 95px 0;
}

.fv .wrapper {
  display: flex;
  justify-content: space-between;
  gap: 0 70px;
  margin: 0 0 95px 0;
}

.fv .property-gallery {
  width: 500px;
}

.fv .main-image-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--base-radius);
  background: var(--white-color);
  margin: 0 0 23px 0;
  position: relative;
}

.fv .main-image {
  border-radius: var(--base-radius);
  box-shadow: var(--box-shadow-card);
  cursor: pointer;
}

.fv .main-image.no-image {
  padding: 8%;
  pointer-events: none;
  cursor: default
}

.fv .main-comment {
  position: absolute;
  width: 100%;
  color: var(--white-color);
  font-size: var(--fz-12);
  line-height: normal;
  letter-spacing: .02em;
  background: var(--mstyle-text-color);
  border-radius: 0 0 8px 8px;
  padding: 7px 14px;
  left: 0;
  bottom: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fv .main-comment:empty {
  display: none;
}

.fv :is(.prev-btn, .next-btn) {
  position: absolute;
  --svg-width: 18px;
  --svg-color: var(--white-color);
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: var(--mstyle-main-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.fv .prev-btn { 
  left: -15px;
  rotate: 180deg;
  transform: translateY(50%);
}

.fv .next-btn {
  right: -15px;
}

.fv .thumbs {
  display: flex;
  justify-content: space-between;
  gap: 0 8px;
  /* overflow-x: auto;  スマホ版の時に必要かな？*/
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.fv .thumbs::-webkit-scrollbar {
  display: none;
}

.fv .thumb {
  width: 154px;
  aspect-ratio: 3 /2 ;
  background: var(--white-color);
  border: 0 solid var(--mstyle-main-color);
  border-radius: var(--base-radius);
  box-shadow: var(--box-shadow-card);
  transition: var(--transition-main);
  cursor: pointer;
}

.fv .thumb.active {
  border-width: 4px;
}

.fv .right {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 38px 0;
}

.fv .main-info {
  display: flex;
  flex-direction: column;
  gap: 13px 0;
}

.fv .main-info .description-wrapper {
  display: flex;
  align-items: center;
  gap: 0 36px;
  line-height: normal;
}

.fv .main-info dt {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  width: 112px;
  color: var(--mstyle-main-color);
  font-size: var(--fz-14);
  font-weight: 700;
  border-radius: var(--base-radius);
  border: 2px solid var(--mstyle-main-color);
  padding: 4px 14px;
}

.fv .main-info .price-title {
  align-self: auto;
}

.fv .main-info dd {
  width: 306px;
}

.fv .main-info dd .bus-line {
  margin: -4px 0 0 0;
}

.fv .main-info .price {
  color: var(--mstyle-main-color);
  font-size: var(--fz-32);
  font-weight: 700;
  margin: 0 8px 0 0;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .fv .wrapper {
    align-items: center;
    flex-direction: column;
    gap: 20px 0;
  }
}

@media screen and (max-width:768px) {
  .fv {
    padding: 20px 0 50px 0;
  }
  .fv .wrapper {
    align-items: center;
    flex-direction: column;
    gap: 22px 0;
    margin: 0 0 50px 0;
  }
  .fv .wrapper .left {
    width: 95%;
  }
  .fv .property-gallery {
    width: auto;
  }
  .fv :is(.prev-btn, .next-btn) {
    --svg-width: 16px;
    width: 26px;
    height: 26px;
  }
  .fv .right {
    width: 88%;
  }
  .fv .main-info {
    gap: 20px 0;
  }
  .fv .main-info .description-wrapper {
    align-items: start;
    flex-direction: column;
    gap: 3px 0;
  }
  .fv .main-info dt {
    width: auto;
    color: var(--mstyle-text-color);
    font-size: var(--fz-18);
    font-weight: 700;
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: none;
    padding: 0 0 0 22px;
    margin: 0 0 -2px 0;
    position: relative;
  }
  .fv .main-info dt::before {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    aspect-ratio: 1;
    background: var(--mstyle-text-color);
    border-radius: 3px;
    bottom: 5px;
    left: 2px;
  }
  .fv .main-info dd {
    width: auto;
    font-size: var(--fz-16);
  }
}

/* -------------------  内見予約ボタン ■ BEGIN ■  -------------------- */
.viewing-reserve {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 16px;
  background: var(--white-color);
  border-radius: var(--base-radius);
  padding: 15px 25px;
}

.viewing-reserve .icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white-color);
  font-size: var(--fz-12);
  line-height: 1.3;
  letter-spacing: .07em;
  background: var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 8px 8px;
}

.viewing-reserve .tel {
  --svg-color: var(--mstyle-red-color);
  --svg-width: 22px;
  --svg-va: -3px;
}

.viewing-reserve .tel span {
  display: block;
  font-size: var(--fz-10);
  line-height: 123%;
  padding: 0 0 0 26px;
  margin: 0 0 2px 0;
}

.viewing-reserve .tel a {
  color: var(--mstyle-red-color);
  font-size: 23.14px;
  font-weight: 700;
  line-height: normal;
}

.viewing-reserve .btn button {
  --svg-color: var(--white-color);
  --svg-width: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--white-color);
  font-size: var(--fz-14);
  font-weight: 700;
  line-height: normal;
  background: var(--mstyle-red-color);
  padding: 8px 35px 8px 20px;
  border-radius: 23px;
  position: relative;
  transition: var(--transition-main);
}

.viewing-reserve .btn button .small {
  font-size: .71em;
  padding: 0 7px 1px 1px;
}

.viewing-reserve .btn button svg {
  position: absolute;
  top: 5px;
  right: 12px;
}

@media (hover: hover) {
  .viewing-reserve .btn button:hover {
    opacity: .75;
  }
}

@media screen and (max-width:768px) {
  .viewing-reserve {
    display: none;
  }
}
/* -------------------  内見予約ボタン ■ END ■  -------------------- */

.fv .request-docs-btn {
  --svg-color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0 8px;
  min-width: 316px;
  color: var(--white-color);
  font-size: var(--fz-14);
  font-weight: 500;
  line-height: normal;
  text-align: center;
  background: var(--mstyle-sub-color);
  border-radius: 38px 58px 5px 38px;
  box-shadow: var(--box-shadow-btn);
  padding: 20px 52px 20px 52px;
  transition: var(--transition-main);
  white-space: nowrap;
}

@media (hover: hover) {
  .fv .request-docs-btn:hover {
    opacity: .75;
    box-shadow: var(--box-shadow-btn-hov);
    transform: translate(1px, 1px);
  }
}


@media screen and (max-width:768px) {
  .fv .thumbs {
    gap: 0 14px;
    overflow-x: auto;
  }
  .fv .thumb {
    width: 111px;
  }
  .fv .request-docs-btn {
    min-width: 280px;
  }
}


/* ------------------- sec-comment -------------------- */
.sec-comment {
  line-height: normal;
  background: var(--mstyle-light-green-color);
  padding: 50px 0;
  margin: 0 0 85px 0;
  position: relative;
}

.sec-comment::after {
  position: absolute;
  content: "";
  display: block;
  width: 125px;
  aspect-ratio: 1;
  background: url(../../images/illust/illust-g-man-explain.webp) no-repeat center / contain;
  bottom: -48px;
  right: 62px;
}

.sec-comment .inner {
  padding: 0 35px;
}

.sec-comment h2 {
  --svg-width: 24px;
  --svg-color: var(--mstyle-main-color);
  --svg-va: -6px;
  display: inline-block;
  color: var(--mstyle-main-color);
  font-weight: 700;
  border: 2px solid var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 8px 14px;
  margin: 0 0 10px 0;
}

.sec-comment h2 svg {
  margin: 0 8px 0 0;
}

.sec-comment li {
  --svg-width: 20px;
  --svg-va: -3px;
  padding: 0 0 0 25px;
  position: relative;
}

.sec-comment li svg {
  position: absolute;
  left: 0;
  top: 2px;
}

.sec-comment .feature-2 {
  margin: 10px 0 0 0;
}

@media screen and (max-width:768px) {
  .sec-comment {
    padding: 35px 0;
    margin: 0 0 50px 0;
  }
  .sec-comment .inner {
    padding: 0;
  }
  .sec-comment::after {
    width: 110px;
    bottom: -64px;
    right: 21px;
  }
}


/* ------------------- page-navi -------------------- */
.page-navi {
  width: 92%;
  max-width: 1336px;
  border-top: 2px solid var(--mstyle-main-color);
  border-bottom: 2px solid var(--mstyle-main-color);
  padding: 35px 0;
  margin: 0 auto 85px auto;
}

.page-navi ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(117px, 1fr));
  gap: 20px 34px;
}

.page-navi li {
  aspect-ratio: 1;
  transition: var(--transition-main);
}

@media (hover: hover) {
  .page-navi li:hover {
    opacity: .7;
  }
}

.page-navi li a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--mstyle-light-grey-color);
  border-radius: var(--base-radius);
}

.page-navi .upper-svg {
  width: 32px;
  fill: var(--mstyle-main-color);
  margin: 6px 0 0 0;
}

.page-navi .btn-text {
  font-size: var(--fz-14);
  font-weight: 500;
  line-height: normal;
  border-bottom: 2px solid var(--mstyle-main-color);
  margin: 0 0 4px 0;
}

.page-navi .lower-svg {
  width: 16px;
  rotate: 90deg;
}

@media screen and (max-width:768px) {
  .page-navi ul {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px 15px;
  }
  .page-navi {
    padding: 30px 0;
    margin: 0 auto 50px auto;
  }
}

/* ------------------- sec-map -------------------- */
.sec-map .map-embed iframe { 
  width: 100%;
  height: 309px;
  border-radius: var(--base-radius);
  vertical-align: baseline;
}

.sec-map .map-address {
  --svg-width: 20px;
  --svg-va: -5px;
  font-size: var(--fz-14);
}

.sec-map .map-address a svg {
  --svg-width: 16px;
  --svg-va: -3px;
  margin: 0 0 0 3px;
}


/* ------------------- sec-equipment -------------------- */
.sec-equipment .equipment-groups {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px 35px;
  line-height: normal;
}

.sec-equipment .equipment-groups .equipment-group {
  min-height: 250px;
  background: var(--mstyle-light-grey-color);
  border-radius: var(--base-radius);
  border-top: 12px solid var(--mstyle-main-color);
  padding: 35px 20px;
}

.sec-equipment .equipment-group .wrapper {
  color: var(--mstyle-main-color);
  font-weight: 500;
  text-align: center;
  margin: 0 0 23px 0; 
}

.sec-equipment .equipment-group .icon {
  width: 40px;
  fill: var(--mstyle-main-color);
}

.sec-equipment .equipment-group li {
  font-size: var(--fz-14);
}

.sec-equipment .equipment-group li + li {
  margin: 9px 0 0 0;
}

.sec-equipment .equipment-group li svg {
  --svg-width: 16px;
  --svg-va: -3px;
  margin: 0 3px 0 0;
}

@media screen and (max-width:768px) {
  .sec-equipment .equipment-groups {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
  }
  .sec-equipment .equipment-groups .equipment-group {
    min-height: auto;
    border-top: none;
    border-left: 12px solid var(--mstyle-main-color);
    padding: 20px 18px;
  }
  .sec-equipment .equipment-group .wrapper {
    display: flex;
    align-items: center;
    gap: 0 8px;
    margin: 0 0 6px 0;
  }
  .sec-equipment .equipment-group .icon {
    width: 30px;
  }
  .sec-equipment .equipment-group h3 {
    font-weight: 700;
  }
  .sec-equipment .equipment-group ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 20px;
  }
  .sec-equipment .equipment-group li + li {
    margin: 0;
  }
}


/* ------------------- sec-gallery -------------------- */
.sec-gallery {
  background: var(--mstyle-light-grey-color);
  padding: 35px 0 100px 0;
}

.sec-gallery .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px 40px;
}

.sec-gallery .gallery-item figure {
  background: var(--white-color);
  border-radius: var(--base-radius);
  position: relative;
}

.sec-gallery .gallery-item figure::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgba(51, 51, 51, 0.75) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path fill='white' d='M11.692 13.667h-1.59q-0.425 0-0.713-0.288t-0.287-0.713 0.287-0.712 0.713-0.287h1.59v-1.59q0-0.425 0.288-0.713t0.713-0.287 0.712 0.287 0.287 0.713v1.59h1.59q0.425 0 0.713 0.288t0.287 0.713-0.287 0.712-0.713 0.287h-1.59v1.59q0 0.425-0.288 0.713t-0.713 0.287-0.712-0.287-0.287-0.713v-1.59zM12.692 20.82q-3.418 0-5.786-2.367t-2.368-5.785 2.367-5.787 5.785-2.369 5.787 2.368 2.369 5.786q0 1.428-0.479 2.728t-1.28 2.261l7.672 7.672q0.277 0.277 0.283 0.696t-0.283 0.709-0.703 0.29-0.702-0.29l-7.672-7.672q-1 0.826-2.3 1.292t-2.69 0.467zM12.692 18.821q2.577 0 4.365-1.789t1.789-4.365-1.789-4.365-4.365-1.789-4.365 1.789-1.789 4.365 1.789 4.365 4.365 1.789z'/></svg>") no-repeat center/72px 72px;
  border-radius: var(--base-radius);
  opacity: 0;
  transform: translate(0, 15px);
  transition: var(--transition-main);
  pointer-events: none;
}

@media (hover: hover) {
  .sec-gallery .gallery-item figure:hover::before {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.sec-gallery .gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: var(--base-radius);
  box-shadow: var(--box-shadow-card);
  cursor: pointer;
}

.sec-gallery .gallery-type {
  font-size: var(--fz-14);
  font-weight: 500;
  line-height: normal;
  margin: 8px 0 0 0;
}

.scroll-hint {
  display: none;
}

@media screen and (max-width:768px) {
  .sec-gallery {
    padding: 45px 0 50px 0;
  }
  .sec-gallery .gallery {
    display: flex;
    gap: 0 15px;
  }
  .sec-gallery .gallery-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
  .sec-gallery .gallery-item figure {
    background: var(--white-color);
  }

  /* ------------------- ギャラリー画像のスワイプ -------------------- */
  .swipe-js {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    -ms-overflow-style: none;  /* IE, Edge */
    scrollbar-width: none;     /* Firefox */
    position: relative;
  }
  .swipe-js::-webkit-scrollbar {
    display: none;  /* Chrome, Safari */
  }
  .scroll-hint {
    --svg-width: 32px;
    --svg-color: var(--white-color);
    position: absolute;
    top: 11%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 125px;
    height: 125px;
    background-color: #33333355;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--white-color);
    font-size: var(--fz-14);
    font-weight: 700;
    text-align: center;
    border-radius: var(--base-radius);
    z-index: 10;
    animation: blink 2s ease-in-out infinite;
    pointer-events: none;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
}
/* 表の横スクロールは768px以下のみ */
@media (min-width: 769px) {
  .swipe-js {
      display: none;
  }
}


/* ------------------- sec-overview -------------------- */
.sec-overview {
  line-height: normal;
}

.sec-overview :is(.base-info, .building-info, .land-info) {
  margin: 0 0 50px 0;
}

.sec-overview h3 {
  display: inline-block;
  color: var(--white-color);
  font-weight: 700;
  background: var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 8px 16px;
  margin: 0 0 18px 0;
  position: relative;
}

.sec-overview h3::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 28px;
  background: var(--mstyle-main-color);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  rotate: 154deg;
  bottom: -19px;
  right: 5px;
  z-index: -1;
}

.sec-overview .base-info div {
  display: flex;
  align-items: center;
}

.sec-overview .base-info div > dt {
  align-self: stretch;
  display: grid;
  place-items: center;
  width: 183px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  background: var(--mstyle-light-green-color);
  border-bottom: 2px solid var(--white-color);
}

.sec-overview .base-info div > dd {
  width: calc(100% - 183px);
  line-height: normal;
  border-right: 2px solid var(--mstyle-light-green-color);
  border-bottom: 2px solid var(--mstyle-light-green-color);
  padding: 24px 18px 24px 18px;
}

.sec-overview .base-info div:first-child > dt {
  border-top: 2px solid var(--mstyle-light-green-color);
  border-radius: 8px 0 0 0;
}

.sec-overview .base-info div:last-child > dt {
  border-bottom: 2px solid var(--mstyle-light-green-color);
  border-radius: 0 0 0 8px;
}

.sec-overview .base-info div:first-child > dd {
  border-top: 2px solid var(--mstyle-light-green-color);
  border-radius: 0 8px 0 0;
}

.sec-overview .base-info div:last-child > dd {
  border-radius: 0 0 8px 0;
}

.sec-overview .base-info .bus-line {
  display: inline-block;
  padding: 0 0 0 5px;
}

.sec-overview .not {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

.sec-overview .multiple-column {
  display: flex;
  align-items: center;
}

.sec-overview .multiple-column > dt {
  align-self: stretch;
  display: grid;
  place-items: center;
  width: 183px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  background: var(--mstyle-light-green-color);
  border-bottom: 2px solid var(--white-color);
}

.sec-overview .multiple-column > dd {
  align-self: stretch;
  display: flex;
  align-items: center;
  width: calc(100% - 183px);
  line-height: normal;
  border-right: 2px solid var(--mstyle-light-green-color);
  border-bottom: 2px solid var(--mstyle-light-green-color);
  padding: 24px 18px 24px 18px;
}

.sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:first-child > dt {
  border-top: 2px solid var(--mstyle-light-green-color);
  border-radius: 8px 0 0 0;
}

.sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:first-child > dd {
  border-top: 2px solid var(--mstyle-light-green-color);
}

.sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:nth-child(2) > dd {
  border-top: 2px solid var(--mstyle-light-green-color);
  border-radius: 0 8px 0 0;
}

.sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:nth-last-child(2) > dt {
  border-bottom: 2px solid var(--mstyle-light-green-color);
  border-radius: 0 0 0 8px;
}

.sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:last-child > dt {
  border-bottom: 2px solid var(--mstyle-light-green-color);
}

.sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:last-child > dd {
  border-radius: 0 0 8px 0;
}

@media screen and (max-width:768px) {
  .sec-overview h3 {
    font-size: var(--fz-14);
    padding: 6px 22px 8px 22px;
  }
  .sec-overview :is(.base-info, .building-info, .land-info) {
    margin: 0 0 30px 0;
  }
  .sec-overview .base-info div > dt,
  .sec-overview .multiple-column > dt {
    width: 100px;
    font-size: var(--fz-12);
  }
  .sec-overview .base-info div > dd,
  .sec-overview .multiple-column > dd {
    font-size: var(--fz-12);
    font-weight: 500;
    width: calc(100% - 100px);
    padding: 12px 13px;
  }
  .sec-overview .base-info .bus-line {
    padding: 0;
  }
  .sec-overview .not {
    display: block;
  }
  .sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:nth-last-child(2) > dt {
    border-bottom: 2px solid var(--white-color);
    border-radius: 0;
  }
  .sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:last-child > dt {
    border-radius: 0 0 0 8px;
  }
  .sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:nth-child(2) > dd {
    border-top: none;
    border-radius: 0;
  }
  .sec-overview :is(.building-info, .land-info, .other-info) .multiple-column:first-child > dd {
    border-radius: 0 8px 0 0;
  }
}


/* ------------------- sec-environment -------------------- */
.sec-environment ul {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  line-height: normal;
}

.sec-environment li {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.sec-environment .distance-wrapper {
  display: flex;
  align-items: center;
}

.sec-environment .distance-wrapper .icon {
  --svg-width: 24px;
  --svg-va: -3px;
}

.sec-environment .distance-wrapper .distance {
  min-width: 80px;
  font-size: var(--fz-14);
  text-align: center;
  border-bottom: 2px solid var(--mstyle-main-color);
  padding: 1px 16px;
}

.sec-environment .wrapper {
  display: flex;
  align-items: center;
  gap: 0 30px;
}

.sec-environment .category {
  width: 153px;
  font-size: var(--fz-14);
  font-weight: 700;
  text-align: center;
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  padding: 8px 0;
}

@media screen and (max-width:768px) {
  .sec-environment ul {
    gap: 20px 0;
  }
  .sec-environment li {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px 0;
  }
  .sec-environment .distance-wrapper {
    gap: 0 6px;
    border-bottom: 2px solid var(--mstyle-main-color);
  }
  .sec-environment .distance-wrapper .distance {
    min-width: auto;
    border: none;
    padding: 0;
  }
  .sec-environment .category {
    width: 126px;
    font-weight: 500;
    padding: 3px 0;
  }
  .sec-environment .wrapper {
    gap: 0 15px;
  }
}

/* ------------------- sec-simulation -------------------- */
.sec-simulation {
  background: url(../../images/pictures/pic-white-wallpaper.webp) repeat-y center / 100%;
  padding: 45px 0 150px 0;
}

.sec-simulation .loan-simulation {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 0 0 100px 0;
}

.sec-simulation .loan-simulation ul {
  flex-shrink: 0;
  width: 455px;
}

.sec-simulation .loan-simulation ul .description {
  font-size: var(--fz-14);
  font-weight: 700;
  text-align: center;
  padding: 8px 0;
  background: var(--mstyle-sub-grey-color);
  border-radius: 8px 8px 0 0;
}

.sec-simulation .loan-simulation li:not(.description) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 30px;
}

.sec-simulation .loan-simulation li .wrapper {
  display: flex;
  align-items: center;
  gap: 0 15px;
}

.sec-simulation .loan-simulation li .numbering {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  color: var(--white-color);
  font-size: 1.2em;
  font-weight: 700;
  background: var(--mstyle-text-color);
  border-radius: 50%;
}

.sec-simulation .loan-simulation li .input-wrapper span {
  display: inline-block;
  width: 32px;
  font-weight: 700;
}

.sec-simulation .loan-simulation li input {
  width: 135px;
  font-size: var(--fz-24);
  font-weight: 700;
  text-align: center;
  background: var(--mstyle-light-green-color);
  border-radius: var(--base-radius);
  border: 2px solid var(--mstyle-main-color);
  margin: 0 8px 0 0;
}

.sec-simulation .loan-simulation ul li:not(.description):nth-child(2n) {
  background: var(--mstyle-light-grey-color);
}

.sec-simulation .loan-simulation ul li:not(.description):nth-child(2n+1) {
  background: var(--white-color);
}

.sec-simulation .loan-simulation li:last-child {
  border-radius: 0 0 8px 8px;
}

.sec-simulation .loan-simulation input[type=number]::-webkit-outer-spin-button,
.sec-simulation .loan-simulation input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.sec-simulation .loan-simulation input[type=number] {
  -moz-appearance: textfield;  /* Firefox のスピンボタン非表示 */
}

.sec-simulation .simulation-result {
  --svg-width: 40px;
  --svg-color: var(--white-color);
  width: 384px;
  color: var(--white-color);
  background: var(--mstyle-main-color);
  border-radius: var(--base-radius);
  padding: 38px 38px 46px 38px;
  position: relative;
}

.sec-simulation .simulation-result .icon-double-arrow {
  --svg-width: 80px;
  --svg-color: var(--mstyle-text-color);
  position: absolute;
  bottom: 50%;
  left: -136px;
  transform: translate(0, 50%);
}

.sec-simulation .simulation-result .wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: var(--fz-24);
  font-weight: 700;
  margin: 0 0 20px 0;
}

.sec-simulation .simulation-result .result {
  width: 307px;
  color: var(--mstyle-text-color);
  font-weight: 700;
  text-align: center;
  background: var(--white-color);
  border-radius: 80px;
  padding: 22px 0 14px 0;
  margin: 0 auto 13px auto;
}

.sec-simulation .simulation-result .result .amount {
  font-size: var(--fz-40);
  margin: 0 6px 0 0;
}

.sec-simulation .simulation-result .result .unit {
  font-size: var(--fz-24);
  vertical-align: 2.5px;
}

.sec-simulation .simulation-result .attention {
  font-size: var(--fz-14);
  line-height: 130%;
}

.sec-simulation .lined-btn-area button {
  --svg-va: -3px;
  width: 316px;
}

.sec-simulation .lined-btn-area button svg {
  margin: 0 0 0 6px;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .sec-simulation .loan-simulation {
    align-items: center;
    flex-direction: column;
    gap: 120px 0;
  }
  .sec-simulation .simulation-result .icon-double-arrow {
    top: -108px;
    bottom: initial;
    left: 50%;
    transform: translate(0, 50%);
    rotate: 90deg;
  }
}

@media screen and (max-width:768px) {
  .sec-simulation {
    padding: 35px 0 50px 0;
  }
  .sec-simulation .loan-simulation {
    align-items: center;
    flex-direction: column;
    gap: 120px 0;
    margin: 0 0 50px 0;
  }
  .sec-simulation .loan-simulation ul {
    width: 96%;
    margin: 0 auto;
  }
  .sec-simulation .loan-simulation li:not(.description) {
    padding: 18px 22px;
  }
  .sec-simulation .loan-simulation li .wrapper {
    gap: 0 10px;
  }
  .sec-simulation .loan-simulation li .numbering {
    flex-shrink: 0;
    width: 24px;
    line-height: normal;
    font-size: var(--fz-14);
  }
  .sec-simulation .loan-simulation li .input-name {
    flex-shrink: 0;
    line-height: normal;
  }
  .sec-simulation .loan-simulation li .input-name .small {
    display: block;
    font-size: var(--fz-12);
    margin: 0 0 0 -7px;
  }
  .sec-simulation .loan-simulation li input {
    width: 112px;
    margin: 0 4px 0 0;
  }
  .sec-simulation .loan-simulation li .input-wrapper span {
    width: 28px;
    font-size: var(--fz-14);
  }
  .sec-simulation .simulation-result .icon-double-arrow {
    --svg-width: 60px;
    top: -99px;
    bottom: initial;
    left: 50%;
    transform: translate(0, 50%);
    rotate: 90deg;
  }
  .sec-simulation .simulation-result {
    --svg-width: 32px;
    width: 96%;
    padding: 25px 32px 30px 32px;
    margin: 0 auto;
  }
  .sec-simulation .simulation-result .wrapper {
    font-size: var(--fz-20);
    margin: 0 0 15px 0;
  }
  .sec-simulation .simulation-result .result {
    width: 250px;
    padding: 16px 0 10px 0;
    margin: 0 auto 10px auto;
  }
  .sec-simulation .simulation-result .attention {
    font-size: var(--fz-12);
  }
  .sec-simulation .simulation-result .result .amount {
    font-size: var(--fz-32);
  }
  .sec-simulation .simulation-result .result .unit {
    font-size: var(--fz-16);
  }
  .sec-simulation .lined-btn-area button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0 8px;
    min-width: 280px;
    width: auto;
    height: 58px;
    white-space: nowrap;
  }
}

/* ------------------- sec-contact -------------------- */
.sec-contact {
  background: var(--mstyle-light-grey-color);
  padding: 45px 0 150px 0;
}

.sec-contact .title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  line-height: normal;
  margin: 0 0 65px 0;
}

.sec-contact .title .upper {
  color: var(--mstyle-main-color);
  font-size: var(--fz-24);
  font-weight: 700;
  padding: 0 0 8px 0;
  margin: 0 0 18px 0;
  position: relative;
}

.sec-contact .title .upper::before {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: var(--mstyle-main-color);
  rotate: -43.75deg;
  bottom: 0;
  left: calc(50% + -2px);
}

.sec-contact .title .upper::after {
  position: absolute;
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: var(--mstyle-main-color);
  rotate: 43.75deg;
  bottom: 0;
  right: calc(50% + -2px);
}

.sec-contact .title .upper span {
  position: relative;
}

.sec-contact .title .upper span br {
  display: none;
}

.sec-contact .title .upper span::before {
  position: absolute;
  content: "";
  display: block;
  width: calc(50% - 8px);
  height: 2px;
  background: var(--mstyle-main-color);
  bottom: -4px;
  left: 0;
}

.sec-contact .title .upper span::after {
  position: absolute;
  content: "";
  display: block;
  width: calc(50% - 8px);
  height: 2px;
  background: var(--mstyle-main-color);
  bottom: -4px;
  right: 0;
}

.sec-contact .title .lower {
  --svg-width: 80px;
  --svg-va: -20px;
  font-size: var(--fz-56);
  font-weight: 700;
  line-height: normal;
}

.sec-contact .title .lower h2 {
  display: inline-block;
}

.sec-contact .description-wrapper {
  text-align: center;
}

.sec-contact .description {
  display: inline-block;
  margin: 0 0 90px 0;
  position: relative;
}

.sec-contact .description::before {
  position: absolute;
  content: "";
  display: block;
  width: 150px;
  aspect-ratio: 1;
  background: url(../../images/illust/illust-g-man-smartphone) no-repeat center / contain;
  bottom: 50%;
  left: -150px;
  transform: translate(0, 50%);
}

.sec-contact .contact-module {
  margin: 0 0 150px 0;
}

.sec-contact .contact-module .contact-info-area :is(.mail-area, .tel-area) {
  background: var(--white-color);
}

.sec-contact .btn-wrapper button {
  min-width: 316px;
  color: var(--white-color);
  font-size: var(--fz-14);
  font-weight: 500;
  line-height: normal;
  text-align: center;
  border-radius: 38px 58px 5px 38px;
  box-shadow: var(--box-shadow-btn);
  white-space: nowrap;
  padding: 20px 52px 20px 52px;
  transition: var(--transition-main);
  position: relative;
}

@media (hover: hover) {
  .sec-contact .btn-wrapper button:hover {
    opacity: .75;
    box-shadow: var(--box-shadow-btn-hov);
    transform: translate(1px, 1px);
  }
}

.sec-contact .btn-wrapper .viewing-reservation-btn {
  background: var(--mstyle-red-color);
}

.sec-contact .btn-wrapper .request-docs-btn {
  background: var(--mstyle-sub-color);
}

.sec-contact .btn-wrapper button svg {
  --svg-color: var(--white-color);
  --svg-va: -3.5px;
  margin: 0 0 0 5px;
}

.sec-contact .last-message {
  width: 78%;
  margin: 0 auto 60px auto;
}

.sec-contact .staff-pic {
  width: 362px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}

@media (max-width: 1023px) and (min-width: 769px) {
  .sec-contact .title .lower {
    --svg-width: 52px;
    --svg-va: -12px;
    font-size: var(--fz-40);
  }
  .sec-contact .lined-btn-area {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(316px, 1fr));
    flex-wrap: wrap;
    gap: 60px 35px;
  }
  .sec-contact .btn-wrapper button {
    display: block;
    width: 100%;
  }
  .sec-contact .lined-btn-area a {
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  .sec-contact {
    padding: 35px 0 50px 0;
  }
  .sec-contact .title {
    margin: 0 0 30px 0;
  }
  .sec-contact .title .upper {
    font-size: var(--fz-16);
  }
  .sec-contact .title .upper span {
    display: block;
    width: 210px;
  }
  .sec-contact .title .upper span br {
    display: inline;
  }
  .sec-contact .title .lower {
    --svg-width: 40px;
    --svg-va: -10px;
    font-size: clamp(1.5em, 0.429em + 5.36vw, 3em);
  }
  .sec-contact .description {
    margin: 0 0 73px 0;
  }
  .sec-contact .btn-wrapper button {
    min-width: 280px;
  }
  .sec-contact .contact-module {
    margin: 0 0 100px 0;
  }
  .sec-contact .last-message {
    width: 100%;
    margin: 0 auto 20px auto;
  }
  .sec-contact .staff-pic {
    width: 80%;
  }
}

/* ------------------- comparable-conditions -------------------- */
.comparable-conditions {
  margin: var(--main-mar-last);
}



/* ------------------- follow-btn -------------------- */
.only-sp {
  display: none;
}

@media screen and (max-width:768px) {
  .only-sp {
    display: flex;
  }
  .follow-btn {
    --svg-width: 16px;
    --svg-color: var(--white-color);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 123%;
    z-index: 100;
  }
  .follow-btn .tel,
  .follow-btn .docs {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
    color: var(--white-color);
    font-size: var(--fz-14);
    background: var(--mstyle-red-color);
    padding: 13.5px 0;
  }
  .follow-btn .tel .left,
  .follow-btn .docs .left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px 0;
  }
  .follow-btn .tel .left .lower {
    --svg-va: -3px;
    font-weight: 700;
    letter-spacing: .03em;
  }
  .follow-btn .docs .left .lower {
    --svg-va: -4px;
    font-weight: 700;
    letter-spacing: .03em;
  }
  .follow-btn .tel .left .lower svg,
  .follow-btn .docs .left .lower svg {
    margin: 0 3px 0 0;
  }
  .follow-btn .docs {
    background: var(--mstyle-sub-color);
  }
}
/* ===============================================================
  本体部分   ■ END ■
=============================================================== */


/* ===============================================================
  賃貸専用スタイル mainタグにonly-rentを付与して区別   ■ BEGIN ■
=============================================================== */
.only-rent {
  margin: 0;
}

.only-rent .page-header-property-title .left .container p {
  font-weight: 500;
  background: var(--mstyle-sub-brown-color);
}

.only-rent .fv .main-info dd .sub {
  display: inline-block;
  font-size: calc(1em * (17 / 16));
  margin: 0 2px 0 0;
}

.only-rent .page-navi .inner {
  width: 75%;
}

.only-rent .sec-overview .not {
  position: relative;
}

.only-rent .ab-column {
  position: absolute;
  display: flex;
  align-items: center;
  width: 100%;
  bottom: 0;
  left: 0;
}

.only-rent .ab-column dt {
  align-self: stretch;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 183px;
  font-weight: 700;
  background: var(--mstyle-light-green-color);
  border-radius: 0 0 0 8px;
}

.only-rent .ab-column dd {
  width: calc(100% - 183px);
  font-size: var(--fz-14);
  border-right: 2px solid var(--mstyle-light-green-color);
  border-bottom: 2px solid var(--mstyle-light-green-color);
  border-radius: 0 0 8px 0;
  padding: 24px 18px 24px 18px;
}

.only-rent .sec-overview .cost-info {
  margin: 0 0 50px 0;
}

.only-rent .sec-overview .cost-info .multiple-column:first-child > dt {
  border-top: 2px solid var(--mstyle-light-green-color);
  border-radius: 8px 0 0 0;
}

.only-rent .sec-overview .cost-info .multiple-column:first-child > dd {
  border-top: 2px solid var(--mstyle-light-green-color);
}

.only-rent .sec-overview .cost-info .multiple-column:nth-child(2) > dd {
  border-top: 2px solid var(--mstyle-light-green-color);
  border-radius: 0 8px 0 0;
}

.only-rent .sec-overview .cost-info .multiple-column:nth-last-child(2) > dt {
  border-radius: 0;
  border-bottom: 2px solid var(--mstyle-light-green-color);
}

@media screen and (max-width:768px) {
  .only-rent .sec-overview .cost-info .multiple-column:first-child > dd {
    border-radius: 0 8px 0 0;
  }
  .only-rent .sec-overview .cost-info .multiple-column:nth-child(2) > dd {
    border-top: none;
    border-radius: 0;
  }
  .only-rent .ab-column {
    position: initial;
  }
  .only-rent .ab-column dt {
    width: 100px;
    font-size: var(--fz-12);
    border-top: 2px solid var(--white-color);
  }
  .only-rent .ab-column dd {
    width: calc(100% - 100px);
    font-size: var(--fz-12);
    font-weight: 500;
    padding: 12px 13px;
  }
}