@charset "utf-8";

/* =========================
   ランドプラン：サブヘッダー
   ========================= */

/* 画像 260px ＋ その下にはみ出す見出し */
.landplan-subhead {
  position: relative;
  padding-top: 215px;   /* h1 の開始位置 */
  padding-bottom: 70px; /* リード分の余白 */
  background-color: #fff;
  overflow: visible;
}

/* 上 260px だけ背景画像を敷く */
.landplan-subhead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-image: url("../images/landplan/subhead.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* 中身は最大幅 1000px・左寄せ */
.landplan-subhead__overlay {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.landplan-subhead__inner {
  text-align: left;
}

/* h1 */
.landplan-subhead__title {
  font-size: 68px;
  letter-spacing: 0.18em;
  color: #211e23;
  line-height: 1.2;
}

/* リードテキスト */
.landplan-subhead__lead {
  margin-top: 10px;
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* =========================
   サブヘッダー SP 調整
   ========================= */
@media (max-width: 768px) {
  .landplan-subhead {
    padding-top: 160px;
    padding-bottom: 50px;
  }

  .landplan-subhead::before {
    height: 220px;
  }

  .landplan-subhead__overlay {
    padding: 0 16px;
    box-sizing: border-box;
  }

  .landplan-subhead__title {
    font-size: 34px;
    letter-spacing: 0.08em;
  }

  .landplan-subhead__lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.06em;
  }
}

/* =========================
   ランドプラン：メインビジュアル（1st section）
   ========================= */

.landplan-hero{
  background:#fff;
  padding: 0;          /* ← 上余白0 */
  margin-top: -120px;           /* 念のため */
}

/* セクション内を“キャンバス”にして重ねる */
.landplan-hero__inner{
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;     /* 左右だけ */
  box-sizing: border-box;
}

/* 建物画像：トリミングしない（そのまま） */
.landplan-hero__image{
  width: 100%;
}

.landplan-hero__image img{
  display:block;
  width:100%;
  height:auto;         /* ← トリミング無し */
}

/* 左の縦テキスト：近く＆大きく */
.landplan-hero__text{
  position:absolute;
  left: 10vw;          /* もっと近く */
  top: 160px;          /* 少し上へ */
  width: 150px;        /* 少し大きく */
  z-index: 5;
}

.landplan-hero__text img{
  display:block;
  width:100%;
  height:auto;
}

/* =========================
   SP
   ========================= */
@media (max-width: 768px){

  .landplan-hero{
    margin-top: 0;
  }

  .landplan-hero__inner{
    padding: 0;              /* 画像をフルで見せる */
    max-width: none;
    position: relative;
  }

  /* 建物：SP画像に置き換え */
  .landplan-hero__image img{
    content: url("../images/landplan/main_sp.png");
    width: 100%;
    height: auto;
    display: block;
  }

  /* テキスト：重ねる（左の青空に配置） */
  .landplan-hero__text{
    position: absolute;      /* ← static をやめる */
    left: 6vw;               /* 端から少し */
    top: 1vw;               /* 画面幅に追従 */
    width: 25vw;             /* ← 指定どおり */
    z-index: 5;
    margin: 0;               /* 既存の余白を無効化 */
  }

  .landplan-hero__text img{
    width: 100%;
    height: auto;
    display: block;
  }
}


/* =========================
   ランドプラン：要素02（c1 / c2）
   ========================= */

.landplan-block02{
  padding: 90px 0 0;
}

.landplan-block02__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 上：中央 */
.landplan-block02__top{
  display: flex;
  justify-content: center;
}

.landplan-block02__top img{
  display: block;
  width: min(1200px, 100%);
  height: auto;
}

/* 下：左に寄せ（left:10vw相当） */
.landplan-block02__bottom{
  margin-top: 0px;
}

.landplan-block02__bottom img{
  display: block;
  width: min(980px, 100%);
  height: auto;
}

/* SP：寄せすぎると切れるので中央に戻す */
@media (max-width: 768px){
  /* 要素02：下画像をSP用に差し替え */
  .landplan-block02__bottom img{
    content: url("../images/landplan/c2_sp.png");
    width: 100%;
    height: auto;
    margin-left: 0;   /* SPは左寄せ解除して自然に */
  }
  .landplan-block02{
    padding: 60px 0 0;
  }

  .landplan-block02__bottom{
    margin-top: 0px;
  }

  .landplan-block02__bottom img{
    margin-left: 0;
    width: 100%;
  }
}

/* =========================
   ランドプラン：要素03（特徴一覧）
   ========================= */

.landplan-features{
  padding: 90px 0 0;
}

.landplan-features__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.landplan-features__title{
  color: #9c8556;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.landplan-features__desc{
  margin-top: 10px;
  color: #3b393a;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
}

.landplan-features__note{
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* 上段 */
.landplan-features__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.landplan-features__topText{
  flex: 1;
  min-width: 0;
}

.landplan-features__topImages{
  width: 440px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.landplan-features__photo img{
  display: block;
  width: 100%;
  height: auto;
}

.landplan-features__cap{
  margin-top: 6px;
  font-size: 12px;
  color: #8a8a8a;
  text-align: right;
}

/* 下段：2カラム */
.landplan-features__grid{
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px 70px;
}

.landplan-features__item{
  display: flex;
  align-items: center;
  gap: 22px;
}

.landplan-features__text{
  flex: 1;
  min-width: 0;
}

.landplan-features__image{
  width: 200px;
  flex: 0 0 200px;
}

.landplan-features__image img{
  display: block;
  width: 100%;
  height: auto;
}

/* 注釈 */
.landplan-features__footnotes{
  margin-top: 40px;
  color: #3b393a;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

/* SP */
@media (max-width: 768px){
  .landplan-features{
    padding: 60px 0 0;
  }

  .landplan-features__top{
    display: block;
  }

  .landplan-features__topImages{
    width: 100%;
    margin-top: 18px;
  }

  .landplan-features__grid{
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 40px;
  }

  .landplan-features__item{
    align-items: flex-start;
  }

  .landplan-features__image{
    width: 160px;
    flex-basis: 160px;
  }
}

@media (max-width: 768px){

  /* 見出しを18pxに */
  .landplan-features__title{
    font-size: 22px;
  }
  .landplan-features__title br{
	  display: none;
  }


  /* 横並び → 縦並び（上テキスト / 下画像） */
  .landplan-features__item{
    flex-direction: column;
    gap: 14px;
  }

  .landplan-features__image{
    width: 100%;
    flex: none;
  }

  .landplan-features__cap{
    text-align: right;
  }
}
