/* ==========================================
   reno/bloom-cort/bloom-cort.css
   ブルームコートページ固有スタイル
   ========================================== */

/* ------------------------------------------
   変数（bloom-cort専用）
   ------------------------------------------ */
:root {
  --bc-bg:       #F8F3ED;
  --bc-page-bg:  #F8F3ED;
  --bc-white:    #ffffff;
  --bc-text:     #2c1a0e;
  --bc-brown:    #5c3a2a;
  --bc-gold:     #c9a84c;
  --bc-btn:      #A67744;
  --bc-tag-bg:   #e8ede8;
  --bc-tag-text: #4a6741;
  --bc-radius:   6px;
}

.reno-page ul,
.reno-page ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.reno-page {
  background: var(--bc-page-bg);
}

.reno-page .reno-section--bg,
.reno-page .reno-section--white {
  background: var(--bc-page-bg);
}

@media screen and (min-width: 1025px) {
  .reno-page .reno-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ウォーターマーク */
.bc-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Jost', sans-serif;
  font-size: clamp(80px, 15vw, 220px);
  font-weight: 700;
  color: rgba(140, 110, 80, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* パンくず（h2-block の上・ヒーローから100pxの余白） */
.bc-bread-top {
  padding: 25px var(--reno-ph) 0;
  font-size: 12px;
  color: #999;
}

/* ------------------------------------------
   紹介セクション テキスト
   ------------------------------------------ */

/* ロゴ：width260px・左寄せ */
.reno-about__logo {
  width: 260px;
  height: auto;
  align-self: flex-start;
}

/* catch + title のグループ：内側のgapは小さめ */
.bc-about__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 明朝体 20px 文字間隔5% */
.bc-about__catch {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #4a3728;
}

/* ゴシック 24px 文字間隔5% */
.bc-about__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: #4a3728;
}

/* ゴシック 16px 文字間隔10% */
.bc-about__body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 2;
  color: #4a3728;
}

/* ------------------------------------------
   一覧セクション 見出し
   ------------------------------------------ */
.bc-list-head {
  margin-bottom: 100px;
  text-align: center;
}

.bc-label {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--bc-btn);
  margin-bottom: 10px;
}

/* reno-headingより一回り大きい：clamp比例スケール */
.bc-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--bc-brown);
  line-height: 1.6;
  margin-bottom: 14px;
}

.bc-lead {
  font-size: 13px;
  color: #777;
  line-height: 1.9;
}

/* ------------------------------------------
   一覧セクション 物件カード
   ------------------------------------------ */
.bc-cards {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.bc-card {
  --bc-card-accent: #CF819B;
  --bc-card-soft: #F2DCDB;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 480px;
  border-radius: 0;
  overflow: hidden;
}

.bc-cards > .bc-card:nth-child(3n+2) {
  --bc-card-accent: #3D83B5;
  --bc-card-soft: #DDEBF4;
}

.bc-cards > .bc-card:nth-child(3n) {
  --bc-card-accent: #85B937;
  --bc-card-soft: #E3F0D1;
}

.bc-card--rev .bc-card__img  { order: 2; }
.bc-card--rev .bc-card__body { order: 1; }

.bc-card__img {
  overflow: hidden;
}

.bc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bc-card:hover .bc-card__img img {
  transform: scale(1.03);
}

.bc-card__body {
  background: #F1EAE1;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

/* エリア（シンプルテキスト） */
.bc-card__area {
  font-size: 13px;
  color: #999;
}

/* 物件名 */
.bc-card__name {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  color: var(--bc-brown);
  line-height: 1.4;
}

/* キャッチコピー */
.bc-card__catch {
  font-size: 14px;
  font-weight: 500;
  color: var(--bc-card-accent);
  line-height: 1.7;
}

/* 説明文 */
.bc-card__desc {
  font-size: 13px;
  line-height: 2;
  color: #555;
}

/* スペック（ピル型バッジ横並び） */
.bc-card__specs-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-start;
}

.bc-card__spec-item {
  flex: 0 0 calc((100% - 24px) / 4);
  max-width: calc((100% - 24px) / 4);
  text-align: center;
  padding: 8px 20px;
  border-radius: 999px;
  background: var(--bc-card-soft);
  color: #333333;
  font-size: 13px;
}

/* アクセス情報 */
.bc-card__access {
  display: flex;
  gap: 32px;
  justify-content: space-evenly;
}

.bc-card__access-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bc-card__access-time {
  font-size: 12px;
  font-weight: 500;
  color: var(--bc-btn);
}

.bc-card__access-label {
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* 価格ブロック */
.bc-card__price-block {
  padding: 16px 20px;
  background: var(--bc-card-soft);
  border-left: 3px solid var(--bc-card-accent);
}

.bc-card__price-label {
  display: block;
  font-size: 11px;
  color: #999;
  margin-bottom: 4px;
}

.bc-card__price {
  font-family: 'Jost', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 500;
  color: var(--bc-text);
}

.bc-card__btns {
  display: flex;
  gap: 12px;
}

.bc-card__btns > a {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 28px;
  border: 1px solid var(--bc-btn);
  border-radius: 3px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.bc-card__btns > a:first-child {
  background: var(--bc-btn);
  color: #fff;
}

.bc-card__btns > a:last-child {
  background: transparent;
  color: var(--bc-btn);
}

.bc-card__btns > a.is-fill {
  background: var(--bc-btn);
  color: #fff;
}

.bc-card__btns > a.is-outline {
  background: transparent;
  color: var(--bc-btn);
}

.bc-card__btns > a:first-child:hover {
  background: #C49A6A;
  border-color: #C49A6A;
  color: #fff;
}

.bc-card__btns > a:last-child:hover {
  background: var(--bc-btn);
  border-color: var(--bc-btn);
  color: #fff;
}

.bc-card__btns > a.is-fill:hover {
  background: #C49A6A;
  border-color: #C49A6A;
  color: #fff;
}

.bc-card__btns > a.is-outline:hover {
  background: var(--bc-btn);
  border-color: var(--bc-btn);
  color: #fff;
}

.bc-card__btns > a svg {
  flex-shrink: 0;
}

/* レスポンシブ */

/* タブレット：縦並び・画像70%中央揃え・横長比率 */
@media screen and (max-width: 1024px) {
  .bc-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bc-card--rev .bc-card__img,
  .bc-card--rev .bc-card__body {
    order: unset;
  }

  .bc-card__img {
    width: 70%;
    margin-inline: auto;
  }

  .bc-card__img img {
    aspect-ratio: 4 / 3;
    height: auto;      /* PCの height:100% を上書き */
  }

  .bc-card__body { padding: 36px 28px; }
}

/* スマホ：画像は全幅 */
@media screen and (max-width: 767px) {
  .bc-card__img {
    width: 100%;
  }

  .bc-card__body { padding: 28px 20px; gap: 16px; }

  .bc-card__btns { flex-direction: column; }
  .bc-card__btns > a { width: 100%; }
}

/* ------------------------------------------
   土地選びサポート（4カードグリッド）
   ------------------------------------------ */
.bc-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.bc-grid4__card {
  background: #efe9e2;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bc-grid4__icon {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.bc-grid4__icon svg,
.bc-grid4__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bc-grid4__body {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}

.bc-grid4__title {
  font-size: clamp(20px, 1.1vw, 24px);
  font-weight: 500;
  color: #111;
  line-height: 1.45;
  text-align: center;
  margin: 0;
}

.bc-grid4__text {
  font-size: 16px;
  line-height: 1.95;
  color: #6d6660;
  text-align: left;
  margin: 0;
}

/* ------------------------------------------
   最新の土地情報（2カラムCTA）
   ------------------------------------------ */
.bc-cta2col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: clamp(44px, 5vw, 96px);
  align-items: center;
}

.bc-cta2col__content {
  width: min(100%, 540px);
  justify-self: start;
}

.bc-cta2col__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.bc-cta2col__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #363636;
  letter-spacing: 0.03em;
  line-height: 1.55;
  margin-bottom: 0;
}

.bc-cta2col__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #3f4c60;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.reno-page .bc-cta2col__list {
  margin-bottom: clamp(28px, 3.2vw, 42px);
  border-bottom: 1px solid #c7c4be;
}

.bc-cta2col__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 8px;
  border-top: 1px solid #c7c4be;
  color: #3f4c60;
}

.bc-cta2col__list li::before {
  content: none;
}

.bc-cta2col__icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
}

.bc-cta2col__item-text {
  display: block;
  font-size: clamp(15px, 1.1vw, 21px);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.bc-cta2col__btn {
  position: relative;
  width: 100%;
  min-height: 60px;
  border-radius: 12px;
  font-size: clamp(16px, 1.15vw, 20px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  padding: 14px 70px 14px 32px;
  justify-content: center;
}

.bc-cta2col__content .bc-cta2col__btn {
  background: var(--bc-btn);
  border-color: var(--bc-btn);
  color: #ffffff;
}

.bc-cta2col__content .bc-cta2col__btn:hover {
  background: #C49A6A;
  border-color: #C49A6A;
  color: #ffffff;
}

.bc-cta2col__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 28px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.bc-cta2col__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bc-page-bg);
  border-radius: var(--bc-radius);
}

.bc-cta2col__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-mask-image: none;
  mask-image: none;
  clip-path: none;
  border-radius: 0;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
  .bc-grid4 { grid-template-columns: repeat(2, 1fr); }
  .bc-grid4__title { font-size: clamp(19px, 2.2vw, 24px); }
  .bc-grid4__text {
    font-size: 15px;
    line-height: 1.85;
  }

  .bc-cta2col {
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 4vw, 48px);
  }

  .bc-cta2col__title {
    font-size: clamp(26px, 3vw, 34px);
    margin-bottom: 0;
  }

  .bc-cta2col__text {
    font-size: 15px;
    line-height: 1.65;
  }

  .bc-cta2col__intro {
    margin-bottom: 26px;
  }

  .bc-cta2col__list li {
    gap: 12px;
    padding: 12px 2px;
  }

  .bc-cta2col__icon {
    width: 24px;
    height: 24px;
  }

  .bc-cta2col__item-text {
    font-size: clamp(14px, 1.45vw, 16px);
  }

  .bc-cta2col__btn {
    min-height: 54px;
    font-size: 18px;
    padding: 12px 56px 12px 24px;
  }

  .bc-cta2col__btn::after {
    right: 22px;
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 767px) {
  .reno-h2-block {
    margin: 50px 0;
  }

  .reno-h2-block__en {
    font-size: 68px;
  }

  .reno-h2-block__ja {
    font-size: 28px;
  }

  .bc-list-head {
    margin-bottom: 50px;
  }

  .bc-cta2col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bc-cta2col__content {
    width: 100%;
    max-width: none;
  }

  .bc-cta2col__title {
    font-size: 28px;
    margin-bottom: 0;
  }

  .bc-cta2col__text {
    font-size: 15px;
    line-height: 1.7;
  }

  .bc-cta2col__intro {
    margin-bottom: 20px;
  }

  .bc-cta2col__list li {
    padding: 11px 0;
  }

  .bc-cta2col__item-text {
    font-size: 15px;
  }

  .bc-cta2col__btn {
    min-height: 52px;
    font-size: 16px;
    padding-inline: 20px 54px;
  }

  .bc-cta2col__media {
    max-width: 560px;
    margin-inline: auto;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
  }
}

@media screen and (max-width: 480px) {
  .bc-grid4 { grid-template-columns: 1fr; }
  .bc-grid4__body { padding: 22px 18px 24px; }
  .bc-grid4__title {
    font-size: 20px;
    line-height: 1.5;
  }
  .bc-grid4__text { font-size: 14px; }
}
