/* ================================
   ピックアップ物件 スライダー
   ================================ */

.property {
  padding: 60px 0;
  overflow: hidden;
}

.property__inner {
  width: 100%;
}

/* 見出し */
.property__heading {
  text-align: center;
  margin-bottom: 32px;
}

.property__heading-title {
  display: inline-block;
  text-align: center;
  font-size: 24px;
  letter-spacing: .15em;
  font-weight: 700;
  color: #003b44; /* サンクレイドル系の濃いグリーン寄り */
  margin: 0;
  padding-bottom: 8px;
  position: relative;
}

.property__heading-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56px;
  height: 2px;
  background-color: #c19e55; /* ゴールド系ライン */
  transform: translateX(-50%);
}

.property__heading-sub {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #777;
}

/* リスト周り */
.property__list-scroll {
  max-width: 1200px;
  margin: 0 auto;
}

.property__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* slick 調整 */
.property__list .slick-list {
  overflow: visible; /* 両端チラ見せ */
}

.property__list .slick-track {
  display: flex;
  align-items: stretch;
}

.property__list .slick-slide {
  height: auto;
}

/* カード */
.property__item {
  box-sizing: border-box;
  padding: 0 16px;
}

.property__item-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* 画像：角丸なしでピシッと揃える */
.property__item-link-img {
  width: 100%;
  aspect-ratio: 16 / 10; /* 必要に応じて調整 */
  margin: 0;
  overflow: hidden;
}

.property__item-link-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 0; /* 角丸なし */
}

/* テキスト部分 */
.property__item-link-body {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.property__item-link-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.property__item-link-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
  color: #111;
}

/* タグ */
.property__item-link-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.property__item-link-tag-item {
  margin: 0;
}

.property__item-link-tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f0f2f8;
  color: #003b44;
}

/* 説明テキスト（…はPHP側で制御） */
.property__item-link-text-add {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  color: #333;
}

/* 空メッセージ */
.property__empty {
  text-align: center;
  color: #666;
  margin-top: 32px;
}

/* ▼ slick 矢印：トンマナ寄せて大きめに */
.property__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #003b44;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .2s, color .2s, border-color .2s;
  z-index: 2;
}

.property__arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #003b44;
  border-right: 2px solid #003b44;
  transform: rotate(45deg);
}

.property__arrow--prev {
  left: 12px;
}

.property__arrow--prev::before {
  transform: rotate(-135deg);
}

.property__arrow--next {
  right: 12px;
}

.property__arrow:hover {
  background-color: #003b44;
}

.property__arrow:hover::before {
  border-color: #fff;
}

/* dots（SP用） */
.property__list .slick-dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.property__list .slick-dots li {
  margin: 0;
}

.property__list .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background-color: #ccc;
  font-size: 0;
}

.property__list .slick-dots .slick-active button {
  background-color: #003b44;
}

.property__item-link {
  opacity: 1;
  transition: .3s;
}
.property__item-link:hover {
  opacity: .7;
  transition: .3s;
}

/* PC：3枚固定寄り */
@media screen and (min-width: 1024px) {
  .property__list-scroll {
    max-width: 1200px;
  }

  .property__list .slick-slide {
    width: 360px !important; /* ここを変えるとカード幅が変わる */
  }

  .property__item {
    padding: 0 18px;
  }
}

/* SP：1.5枚見せ */
@media screen and (max-width: 767px) {
  .property__heading-title {
    font-size: 16px;
  }
  .property__heading-sub {
    font-size: 10px;
  }
  .property {
    padding: 40px 0;
  }

  .property__list-scroll {
    max-width: 100%;
    padding: 0;
  }

  .property__item {
    padding: 0 8px;
  }

  .property__item-link-body {
    padding: 12px 12px 16px;
  }

  .property__item-link-title {
    font-size: 15px;
  }
}