@charset "utf-8";

/* =========================
  Base
========================= */
:root{
  --bg: #fff;
	--bgsub: #f2eee8;
  --line: rgba(120, 95, 70, .35);
  --txt: #3b342e;
  --accent: #d67743;
  --fz-base: clamp(14px, 3.6vw, 16px);
  --fz-h2: clamp(18px, 4.8vw, 26px);
}

html, body{
  height: 100%;
}
html{
  overflow-x: clip; /* 右余白（横スクロール）対策：clipが効かない環境はhiddenでもOK */
}
body{
  margin: 0;
  font-size: var(--fz-base);
  color: var(--txt);
  background: var(--bg);
  /* overflow-x: hidden; */
  font-family: "Noto Serif JP", "Noto Serif", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", "MS Mincho",
    serif;
  font-weight: 400;
  font-optical-sizing: auto;
	letter-spacing: 0.1em;
}
*, *::before, *::after { box-sizing: border-box; }
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

/* メニュー展開中のスクロール抑制（必要十分） */
body.is-menuOpen{
  overflow: hidden;
  touch-action: none;
}

.fGothic {
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "YuGothic",
    "游ゴシック体",
    "Hiragino Kaku Gothic ProN",
    "メイリオ",
    sans-serif;
}

/* =========================
  Header (fixed)
========================= */
#siteHeader{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.siteLogo{ margin: 0; line-height: 0; }
.siteLogo img {
	width: min(34vw, 220px);
	height: auto;
}

/* ハンバーガー */
.menuToggle{
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.menuToggle__icon{
  position: relative;
  width: 28px; height: 2px;
  background: #2a2521;
  display: inline-block;
  transition: background .2s ease;
}
.menuToggle__icon::before,
.menuToggle__icon::after{
  content:"";
  position: absolute;
  left: 0;
  width: 28px; height: 2px;
  background: #2a2521;
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}
.menuToggle__icon::before{ top: -8px; }
.menuToggle__icon::after{ top: 8px; }

/* open時 × */
.is-menuOpen .menuToggle__icon{ background: transparent; }
.is-menuOpen .menuToggle__icon::before{ top: 0; transform: rotate(45deg); }
.is-menuOpen .menuToggle__icon::after{ top: 0; transform: rotate(-45deg); }

/* =========================
  Backdrop
========================= */
.menuBackdrop{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 900; /* nav(1000)より下 */
}
.is-menuOpen .menuBackdrop{
  opacity: 1;
  pointer-events: auto;
}

/* =========================
  Global Nav (overlay)
========================= */
.hedMenu{
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--bg);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 18px 16px 24px;
  z-index: 1000;
}

.is-menuOpen .hedMenu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* メニュー上段 */
.hedMenuFirst{
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
  margin-bottom: 18px;
}
.hmf01{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.hmf01 a{
  display: flex;
  align-items: center;
  justify-content: left;
  min-height: 52px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(14px, 4vw, 18px);
  letter-spacing: .06em;
}
.hmf01 li.hmf01Book a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/commons/icon_nav_book.svg") no-repeat center / contain;
  flex-shrink: 0;
}
.hmf01 li.hmf01Modelhouse a::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/commons/icon_nav_modelhouse.svg") no-repeat center / contain;
  flex-shrink: 0;
}
.hmf02Tit{
  display: flex;
  align-items: center;
  gap: 8px; /* アイコンと文字の間 */
  margin: 10px 0;
  font-size: clamp(14px, 4vw, 18px);
  letter-spacing: .06em;
}

.hmf02Tit::before{
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/commons/icon_nav_inquiry.svg") no-repeat center / contain;
  flex-shrink: 0;
}
.hmf02{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hmf02 a{
  display: block;
  text-align: center;
  padding: 14px 6px;
  border-bottom: 1px solid var(--line);
  line-height: 1.25;
}

.hmfCall{
  margin-top: 18px;
  text-align: center;
  padding: 16px 10px;
}

/* 電話番号 */
.hmfCall a{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 7.6vw, 34px);
  letter-spacing: .04em;
  color: #736357;
}

/* 電話アイコン */
.hmfCall a::before{
  content: "";
  width: 26px;
  height: 26px;
  background: url("../img/commons/icon_tel.svg") no-repeat center / contain;
  flex-shrink: 0;
}

/* 補足テキスト */
.hmfCall p{
  margin: 8px 0 0;
  font-size: 12px;
  opacity: .85;
}


/* 下段 */
.hedMenuSecond{ padding-bottom: 24px; }
.hms01 > li{ border-bottom: 1px solid var(--line); }

/* サブ持ち行：右側ボタンの分だけ余白を確保 */
.hms01 > li > a{
  display: block;
  padding: 16px 56px 16px 0;
  font-size: clamp(16px, 4.4vw, 20px);
  letter-spacing: .06em;
}

/* サブ開閉ボタン（右端 + / -） */
.hasSub{ position: relative; }
.hasSub > .subToggle{
  position: absolute;
  right: 0;
  top: 0;
  height: 56px;
  width: 56px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.hasSub > .subToggle::before,
.hasSub > .subToggle::after{
  content:"";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #6b5a49;
  transform: translate(-50%, -50%);
}
.hasSub > .subToggle::after{
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s ease;
}
.hasSub.is-open > .subToggle::after{ opacity: 0; } /* - 表示 */

/* サブメニュー */
.hms01Sub{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.hasSub.is-open .hms01Sub{
  max-height: 520px;
}
.hms01Sub a{
  display: block;
  padding: 12px 0 12px 10px;
  font-size: 14px;
  opacity: .9;
}

/* 見出し群 */
.hms02Tit{
  margin: 22px 0 10px;
  font-size: 11px;
  opacity: .75;
}
.hms02Tit::before {
	content: "▼";
}
.hms02{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
.hms02 li, .hms02Full li{
  border-bottom: 1px solid var(--line);
}
.hms02 a, .hms02Full a{
  display: block;
  padding: 14px 0;
}

/* =========================
  Main offset (fixed header分)
========================= */
main{
	/* padding-top: 72px; */
}

/* =========================
  FV
========================= */
.homeFv{
	position: relative;
	overflow: hidden;
}
.homeFvInner{
  position: relative;
  height: min(55vh, 470px);
}
.homeFvInner::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;              /* 1pxの隙間対策 */
  height: clamp(30px, 8vw, 160px);
  background: var(--bg);
  z-index: 2;
  /* 三角形（中央が頂点） */
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* 背景2レイヤー（クロスフェード + 右→左パン） */
.fvBg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;

  /* 100% 50% → 下基準に */
  background-position: 50% 100%;

  opacity: 0;
  transition: opacity 1.2s ease;
  will-change: background-position, opacity;
  animation: fvPan 18s linear infinite;
  z-index: 1;
}

.fvBg.is-active{ opacity: 1; }

@keyframes fvPan{
  from{ background-position: 100% 100%; }
  to{ background-position: 0% 100%; }
}

.fvCatch {
  position: absolute;
  right: 18px;
  /* top: 36px; */
	top: 98px;
  writing-mode: vertical-rl;
  font-size: clamp(23px, 4.6vw, 44px);
	font-weight: 500;
  letter-spacing: .2em;
  margin: 0;
  color: #000;
  text-shadow: 0 1px 0 rgba(255,255,255,.25);
	z-index: 3;
}
.fvCatch span.fvc1 {
	display: inline-block;
	text-indent: 1.0em;
}
.fvCatch span.fvc2 {
	display: inline-block;
	text-indent: 3.0em;
}

/* FV下の黒帯 */
.homeFvTxt{
  background: #fff;
  padding: 28px 16px 34px;
	text-align: center;
}
.homeFvTxt h3 {
	margin: 0 0 14px;
  font-size: var(--fz-h2);
	font-weight: 500;
  color: #000;
  letter-spacing: .06em;
}
.homeFvTxt p{
	margin: 0 0 18px;
  color: #000;
  /* color: rgba(255,255,255,.9); */
  line-height: 1.9;
}
.homeFvTxt ul {
	color: #B69659;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
	margin: auto 10%;
}
.homeFvTxt figure{ margin: 0; text-align: center; }
.homeFvTxt figcaption{
  margin-top: 6px;
  font-size: 13px;
	font-weight: 500;
	letter-spacing: 0;
}
.homeFvTxt figcaption span {
  display: block;
  font-size: 11px;
  opacity: .9;
}

/* =========================
  PC目安
========================= */
@media (min-width: 900px){
  #siteHeader{ height: 88px; padding: 16px 28px; }
  /* main{ padding-top: 88px; } */
  .hedMenu{ inset: 88px 0 0 0; padding: 26px 32px; }
  .homeFvInner{ height: min(80vh, 820px); }
}


/* =========================
  Home FV + News
========================= */
.homeFvNews{
  background: #fff;
}

/* ---------- TOPICS ---------- */
.hfnTopics{
  padding: 24px 16px 18px;
}

.hfnTopics h2{
  margin: 0 0 14px;
  font-size: clamp(14px, 3.5vw, 26px);
  letter-spacing: .12em;
  font-weight: 600;
}

.hfntEntry{
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  align-items: start;
}

.hfntEntryImg{
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e6e6e6; /* 画像未設定時のプレースホルダ */
}

.hfntEntryImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hfntEntryDitail{
  min-width: 0;
}

.hfntDate{
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #a98f62; /* 日付の金っぽい色 */
  font-size: 12px;
  letter-spacing: .06em;
}

.hfntDate time{
  font-variant-numeric: tabular-nums;
}

.hfntDate span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  padding: 0 12px;
  background: #c83b5b; /* NEW */
  color: #fff;
  font-size: 12px;
  letter-spacing: .08em;
}

.hfntTit{
  margin: 0;
  padding-bottom: 10px;
  color: #14110f;
  font-size: clamp(14px, 3.5vw, 20px);
  line-height: 1.55;
  letter-spacing: .04em;
}

/* ---------- Banners（修正版） ---------- */
.htnBnr ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 18px 0 0;
}

.htnBnr li{
  min-height: 170px;
}

.htnBnr li.htnBnrKimitsu { background: #F2EEE8; border-right: 1px solid #fff; }
.htnBnr li.htnBnrModelhouse { background: #F2EEE8; }

.htnBnr a{
  /* “上下中央”は維持しつつ、要素間の広がりを抑える */
  display: flex;
  flex-direction: column;
  justify-content: center; /* 縦中央 */
  align-items: center;     /* 横中央 */
  gap: 10px;               /* ここで間隔を管理（emの伸びを排除） */

  text-align: center;
  padding: 22px 14px;
  color: #736357;
  height: 100%;
}

.htnBnrTit{
  margin: 0;               /* em余白をやめる */
  font-size: clamp(18px, 4.8vw, 30px);
  letter-spacing: .08em;
  font-weight: 600;
  line-height: 1.15;       /* 行間を締める */
}

.htnBnrSub{
  margin: 0;               /* em余白をやめる */
  font-size: clamp(11px, 2.8vw, 16px);
  letter-spacing: .12em;
  opacity: .95;
  line-height: 1.25;       /* サブも締める */
}

.htnBnrBtn{
  margin-top: 6px;         /* gap + 追加でちょい下げたい時だけ */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35em 1.2em;
  border-radius: 999px;
  background: #736357;
  color: #fff;
  font-size: 10px;
  line-height: 1;          /* ボタン内の行間も締める */
  letter-spacing: 0;
  white-space: nowrap;     /* 折り返しで縦に伸びるのを防ぐ */
}


/* hover（PC） */
@media (hover:hover){
  .htnBnr a:hover .htnBnrBtn{
    transform: translateY(-1px);
  }
}

/* ---------- PC目安 ---------- */
@media (min-width: 900px){
  .homeFvNews{
    padding: 0;
  }

  .hfnTopics{
    padding: 34px 32px 20px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .hfntEntry{
    grid-template-columns: 160px 1fr;
    gap: 18px;
  }

  .htnBnr ul{
    max-width: 1100px;
    margin: 24px auto 0;
  }

  .htnBnr li{
    min-height: 210px;
  }
}



/* =========================
  Home About
========================= */
.homeAbout{
  background: #fff;
  padding: 44px 0 56px;
}

.homeAboutInner{
  width: min(92vw, 980px);
  margin: 0 auto;
}

/* 見出し */
.homeAboutTit{
  margin-bottom: 22px;
}

.haTitSub{
  margin: 0 0 14px;
  font-size: clamp(12px, 3.0vw, 14px);
  letter-spacing: .14em;
  opacity: .9;
}

.homeAboutTit h2{
  margin: 0;
  font-size: clamp(18px, 4.6vw, 34px);
  line-height: 1.55;
  letter-spacing: .06em;
}

/* 画像共通 */
.homeAbout figure{
  margin: 0;
}

.homeAbout img{
  width: 100%;
  height: auto;
  display: block;
}

/* 画像01（大きい1枚） */
.homeAboutImg01{
  margin: 26px 0;
}

/* テキストブロック（繰り返し出てくる） */
.homeAboutTxt{
  margin: 26px 0;
}

.homeAboutTxt p{
  margin: 0 0 16px;
  font-size: clamp(13px, 3.3vw, 16px);
  line-height: 2.1;
  letter-spacing: .06em;
}

.homeAboutTxt p:last-child{
  margin-bottom: 0;
}

/* 画像02（2枚並び：左が大きめ、右が小さめ下がり） */
.homeAboutImg02{
  margin: 28px 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: end;
}

.homeAboutImg02 figure:nth-child(2){
  transform: translateY(26px); /* 右の写真を少し下げる */
}

/* 2枚目の下げ分の余白を確保（次の要素と被らないように） */
.homeAboutImg02 + .homeAboutTxt{
  margin-top: 44px;
}



/* =========================
  Home Features
========================= */
.homeFeatures{
	position: relative;
  background: var(--bgsub);
  padding: 44px 0 56px;
}
.homeFeatures::before{
  content: "";
  position: absolute;
  top: -30px; /* 三角の高さ分だけ上に出す */
  left: 0;
  width: 100%;
  height: 30px;
  background: #f3efe7;

  clip-path: polygon(
    50% 0%,
    0% 100%,
    100% 100%
  );
}
.homeFeaturesInner{
  width: min(84vw, 720px);
  margin: 0 auto;
}

.hfTit{
  margin: 0 0 14px;
  font-size: clamp(18px, 4.6vw, 34px);
  letter-spacing: .06em;
  line-height: 1.45;
	/* padding: 0 8vw; */
}

.homeFeaturesInner > p{
  margin: 0 0 22px;
  line-height: 1.95;
	/* padding: 0 8vw; */
}

/* --- each block --- */
.hf01, .hf02, .hf03{
  margin-top: 26px;
  padding-top: 24px;
}

.hfImg{
  position: relative;
  overflow: hidden;
	margin-left: -8vw;
    margin-right: -8vw;
}
.hfImg img{
  width: 100%;
  height: auto;
  display: block;
}

.hfTit_h3{
  margin: 18px 0 14px;
  text-align: center;
  font-size: clamp(18px, 4.6vw, 24px);
	font-weight: 500;
  letter-spacing: .06em;
  line-height: 1.55;
}

/* --- point cards --- */
.hfPoint{
  margin: 0 0 14px;
}
.hfPoint ul{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hfPoint li a{
  display: block;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.hfPoint li a:active{
  transform: scale(.98);
}
.hfPoint img{
  width: 100%;
  height: auto;
  display: block;
}

/* --- body text in each block --- */
.hf01 > p,
.hf02 > p,
.hf03 > p{
  margin: 0;
  line-height: 2.0;
  opacity: .92;
  font-size: clamp(14px, 3.7vw, 16px);
}

/* =========================
  PC tweaks (optional)
========================= */
@media (min-width: 900px){
  .homeFeatures{
    padding: 70px 0 84px;
  }
  .homeFeaturesInner{
    width: min(88vw, 960px);
  }
  .hf01, .hf02, .hf03{
    margin-top: 40px;
    padding-top: 34px;
  }
  .hfPoint ul{
    gap: 18px;
  }
}



/* =========================
  Model House
========================= */
.homeModelhouse{
  background: #fff;
  padding: 56px 16px 60px;
  text-align: center;
}
.homeModelhouse::before{
  content:"";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  z-index: -1;          /* セクションの背面に敷く */
}

.hmTitSub{
  margin: 0 0 10px;
  letter-spacing: .12em;
  font-size: 12px;
  color: #2a2521;
  opacity: .85;
	text-align: center;
}

.hmTit{
  margin: 0 0 28px;
  font-size: clamp(18px, 4.6vw, 34px);
  letter-spacing: .08em;
	font-weight: 500;
}

/* --- Slider base --- */
.hmSlider{
  position: relative;
  margin: 0 auto 26px;
  overflow: hidden;
}

/* JSが生成するトラック */
.hmSliderTrack{
  display: flex;
  gap: 6px;
  will-change: transform;
  transition: transform .35s ease;
}

/* 画像（高さはデザインに合わせて調整） */
.hmSliderItem{
  flex: 0 0 calc(100% - 64px);       /* ★ 左右に32pxずつ peek */
}
.hmSliderItem img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}


/* PCで「複数枚が横に見える」感じに */
@media (min-width: 700px){
  .hmSliderItem{ flex-basis: 48%; }
  .hmSliderItem img{ height: 280px; }
}
@media (min-width: 1000px){
  .hmSliderItem{ flex-basis: 33.333%; }
  .hmSliderItem img{ height: 300px; }
}

/* --- Arrows --- */
.hmSliderArrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.hmSliderArrow:hover{ background: #fff; }
.hmSliderArrow:active{ transform: translateY(-50%) scale(.98); }

.hmSliderArrow--prev{ left: 10px; }
.hmSliderArrow--next{ right: 10px; }

.hmSliderArrow::before{
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #14110f;
  border-right: 2px solid #14110f;
  display: block;
}
.hmSliderArrow--prev::before{ transform: rotate(-135deg); }
.hmSliderArrow--next::before{ transform: rotate(45deg); }

/* --- Dots --- */
.hmSliderDots{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 14px 0 24px 0;
}
.hmSliderDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.25);
  cursor: pointer;
}
.hmSliderDot.is-active{
  background: rgba(0,0,0,.9);
}

/* 本文とボタン */
.hmTxt {
  margin: 0 auto 28px;
  max-width: 34em;
  line-height: 2;
  text-align: left;
}

.homeBtnGrn{
  display: flex;
  justify-content: center;
}
.homeBtnGrn a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #7ac943; /* 近似 */
  color: #fff;
  font-weight: 600;
  letter-spacing: .06em;
}




/* =========================
  Case
========================= */
.homeCase{
  background: #fff;
  padding: 56px 16px 60px;
  text-align: center;
	border-top: 1px solid var(--line);
}

.homeCaseSub{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .12em;
  opacity: .85;
}

.homeCaseTit{
  margin: 0 0 12px;
  font-size: clamp(20px, 5.2vw, 34px);
  letter-spacing: .08em;
  font-weight: 500;
}

.homeCaseTxt{
  margin: 0 0 26px;
  line-height: 2;
}

/* --- Slider base --- */
.homeCaseEntry{
  /* JSで .homeCaseTrack を中に作るので、自分は枠だけ */
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 0 10px;
}

/* JSが生成するトラック */
.homeCaseTrack{
  display: flex;
  gap: 26px;
  align-items: flex-start;
  will-change: transform;
  transition: transform .35s ease;
}

/* カード：1枚大きめ + 次がチラ見え */
.hceBox{
  flex: 0 0 78%;
  text-align: left;
}

@media (min-width: 700px){
  .hceBox{ flex-basis: 46%; }
}
@media (min-width: 1000px){
  .hceBox{ flex-basis: 32%; }
}

.hceBox > div{
  background: #ddd;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.hceBox img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hceArea{
  margin: 14px 0 6px;
  font-size: 12px;
  letter-spacing: .08em;
}

.hceTit{
  margin: 0;
  font-size: clamp(14px, 3.6vw, 22px);
  letter-spacing: .04em;
  line-height: 1.6;
  font-weight: 500;
}

/* --- Arrow --- */
.homeCaseArrow{
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}

.homeCaseArrow--prev{ left: 8px; }
.homeCaseArrow--next{ right: 8px; }

.homeCaseArrow::before{
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #14110f;
  border-right: 2px solid #14110f;
  display: block;
}
.homeCaseArrow--prev::before{ transform: rotate(-135deg); }
.homeCaseArrow--next::before{ transform: rotate(45deg); }

/* --- Segmented Dots（画像の下の“棒”） --- */
.homeCaseDots{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 10px;
  margin: 18px 0 28px;
  padding: 0 4px;
}
.homeCaseDot{
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(0,0,0,.15);
  cursor: pointer;
}
.homeCaseDot.is-active{
  background: rgba(0,0,0,.45);
}


/* 共通トラック（ModelHouse/Case両方で使う） */
.jsSliderTrack{
  display: flex;
  gap: 6px;
  will-change: transform;
}

/* 触ってる時だけ transition 切る（JSでも切ってるが保険） */
.is-dragging .jsSliderTrack{ transition: none !important; }

/* 共通 矢印・ドット（既存デザインに合わせて調整OK） */
.jsSliderArrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.25);
  background: rgba(255,255,255,.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
}
.jsSliderArrow--prev{ left: 10px; }
.jsSliderArrow--next{ right: 10px; }
.jsSliderArrow::before{
  content:"";
  width: 9px;
  height: 9px;
  border-top: 2px solid #14110f;
  border-right: 2px solid #14110f;
  display: block;
}
.jsSliderArrow--prev::before{ transform: rotate(-135deg); }
.jsSliderArrow--next::before{ transform: rotate(45deg); }

.jsSliderDots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin:14px 0 24px;
}
.jsSliderDot{
  width:8px;height:8px;border-radius:999px;border:0;
  background: rgba(0,0,0,.25);
}
.jsSliderDot.is-active{ background: rgba(0,0,0,.9); }



/* =========================
  House Type
========================= */
.homeHouseType{
  display: grid;
  grid-template-columns: 1fr;
}

/* 共通ブロック */
.homeHouseType > div{
  position: relative;
  padding: 56px 20px;
  color: #fff;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* 黒オーバーレイ */
.homeHouseType > div::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 0;
}

/* 中身は前面へ */
.homeHouseType h3,
.homeHouseType p,
.homeHouseType .hhtMore{
  position: relative;
  z-index: 1;
}

/* --- Order --- */
.hhtOrder{
  background-image: url("../img/top/bg_order.webp");
}

/* --- TELA --- */
.hhtTela{
  background-image: url("../img/top/bg_tela.webp");
}

/* タイトル */
.homeHouseType h3{
  margin: 0 0 16px;
  font-size: clamp(22px, 6.7vw, 26px);
  line-height: 1.4;
  letter-spacing: .06em;
	font-weight: 500;
}

/* テキスト */
.homeHouseType p{
  margin: 0 0 28px;
  font-size: clamp(13px, 3.6vw, 14px);
  line-height: 1.9;
  letter-spacing: .04em;
}

/* more */
.hhtMore a{
  display: inline-flex;
  align-items: center;
  font-size: clamp(11px, 3.1vw, 12px);
  letter-spacing: .08em;
  color: #fff;
  text-decoration: none;
}

/* more icon */
.hhtMore a::after{
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 8px;
  background: url("../img/top/icon_more.svg") no-repeat center / contain;
}



/* =========================
  Interview / Voice
========================= */
.homeInterview{
  background: #fff;
  padding: 56px 16px 60px;
  color: #2a2521;
}

.hiTitSub{
  margin: 0 0 10px;
  font-size: 3.1vw; /* 12px@390 */
  letter-spacing: .06em;
}

.hiTit{
  margin: 0 0 26px;
  font-size: 4.7vw; /* 18px@390 */
  letter-spacing: .08em;
  font-weight: 500;
}

/* ---- YouTube block ---- */
.hiYoutube{
  margin: 0 0 22px;
}
/* YouTube レスポンシブ */
.hiYoutubeFrame{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e6e6e6;
  overflow: hidden;
}

.hiYoutubeFrame iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* 動画が入る枠（iframeを入れてもOK） */
/* .hiYoutube::before{
  content:"";
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #e5e5e5;
} */

/* 動画の下のテキスト */
.hiYoutube .hiCat{
  margin: 18px 0 10px;
  font-size: 3.1vw; /* 12px */
  letter-spacing: .06em;
}

.hiYoutube .hiEntryTit{
  margin: 0;
  font-size: 3.6vw; /* 14px */
  line-height: 1.7;
  font-weight: 500;
}

/* 区切り線（動画ブロックの下） */
.hiYoutube{
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(42,37,33,.55);
}

/* ---- Posts list ---- */
.hiPost{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,.35);
}


.hiEntryImg{
  width: 96px;
  aspect-ratio: 1 / 1;
  background: #eee;
  overflow: hidden;
}

.hiEntryImg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hiEntryTxt{
  display: flex;
  flex-direction: column;
}

.hiCat{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .08em;
  opacity: .85;
}

.hiEntryTit{
  margin: 0;
  font-size: 14px;
	font-weight: 500;
  line-height: 1.7;
  flex-grow: 1; /* ← これが超重要 */
}


/* More */
.hiMore{
  margin-top: 8px;
  text-align: right;
}

.hiMore a{
  font-size: 12px;
  letter-spacing: .08em;
  text-decoration: none;
}

.hiMore a::after{
  content: ">";
  display: inline-block;
  transform: translateY(-.02em);
}

/* ボタン（既存 .homeBtnGrn を使う前提） */
.homeInterview .homeBtnGrn{
  margin-top: 26px;
}

/* ちょいPC調整（任意） */
@media (min-width: 900px){
  .hiTitSub{ font-size: 12px; }
  .hiTit{ font-size: 18px; }
  .hiYoutube .hiCat,
  .hiPost .hiCat{ font-size: 12px; }
  .hiYoutube .hiEntryTit,
  .hiPost .hiEntryTit{ font-size: 14px; }
  .hiMore a{ font-size: 12px; }
  .hiPost{
    grid-template-columns: 140px 1fr;
  }
  .hiEntryImg{
    width: 140px;
    height: 140px;
  }
}




/* =========================
  Message
========================= */
.homeMessage{
  position: relative;
  color: #fff;
  background: url("img/top/bg_message.webp") no-repeat center / cover;
  overflow: hidden;
}

/* 黒オーバーレイ（透過0.8） */
.homeMessage::before{
  content:"";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.8);
  z-index: 0;
}

.homeMessageInner{
  position: relative;
  z-index: 1;
  padding: 56px 16px 60px;
}

/* 390px基準：12px=3.1vw / 18px=4.7vw / 13px=3.4vw / 16px=4.2vw */
.hmTitSub{
  margin: 0 0 12px;
  font-size: clamp(12px, 3.1vw, 12px);
  letter-spacing: .12em;
  opacity: .9;
  text-align: center;
	color: #fff;
}

.hmTit{
  margin: 0 0 22px;
  font-size: clamp(18px, 4.7vw, 18px);
  letter-spacing: .10em;
  font-weight: 500;
  text-align: center;
}

.hmArea{
  font-size: clamp(13px, 3.4vw, 13px);
  line-height: 1.6;
  max-width: 34em;
  margin: 0 auto 18px;
	padding-left: 8vw;
	padding-right: 8vw;
}

.hmArea p{
  margin: 0 0 1.2em;
}
.hmArea p:last-child{ margin-bottom: 0; }

.hmMore{
  margin-top: 6px;
  text-align: right;
}
.hmMore a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 3.1vw, 12px);
  letter-spacing: .08em;
  opacity: .95;
}

/* More の > はあとでafter運用（今は仮） */
.hmMore a::after{
  content: ">";
  display: inline-block;
}

/* Blog button */
.BtnBlog{
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.BtnBlog a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(320px, 86vw);
  padding: 16px 22px;
  border-radius: 999px;
  background: #b79b5b; /* 近似 */
  color: #fff;
  font-size: clamp(16px, 4.2vw, 16px);
  letter-spacing: .08em;
  font-weight: 500;
}

/* PCで余白だけ少し調整（必要なら後で） */
@media (min-width: 900px){
  .homeMessageInner{ padding: 72px 32px 76px; }
  .hmArea{ max-width: 42em; }
}




/* =========================
  Home News
========================= */
.homeNews{
  background: #fff;
  padding: 56px 16px 64px;
}

.homeNewsTit{
  margin: 0 0 28px;
  text-align: center;
  font-size: clamp(18px, 4.7vw, 26px);
  letter-spacing: .12em;
  font-weight: 500;
}

/* 2つのブロック（スタッフ / TOPICS） */
.homeNewsStaff,
.homeNewsTopics{
  margin: 0 auto;
  max-width: 520px;
}

.homeNewsTopics{
  margin-top: 46px;
}

.hnsTit{
  margin: 0 0 18px;
  font-size: clamp(18px, 4.7vw, 24px);
  letter-spacing: .10em;
  font-weight: 500;
}

/* 記事1行 */
.hnEntry{
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.35);
}
.homeNewsStaff .hnEntry:first-of-type,
.homeNewsTopics .hnEntry:first-of-type{
  border-top: 0;
}

.hnEntryImg{
  width: 120px;
  flex: 0 0 120px;
}
.hnEntryImg img{
  width: 100%;
  height: 120px;
  display: block;
  object-fit: cover;
  background: #eee;
}

/* 右側（日時・タイトル・More） */
.hnEntryDitail{
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  padding-top: 2px;
}

/* 日付 + NEW */
.hnDate{
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(12px, 3.1vw, 14px);
  letter-spacing: .08em;
}
.hnDate time{
  font-variant-numeric: tabular-nums;
}
.hnDate span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .25em .65em;
  border-radius: 2px;
  background: #b3263c; /* 任意：既存のNEW色に合わせて */
  color: #fff;
  font-size: 11px;
  letter-spacing: .10em;
  line-height: 1;
}

/* タイトル */
.hnTit{
  margin: 0;
  font-size: clamp(13px, 3.4vw, 16px);
  letter-spacing: .06em;
  line-height: 1.9;
}

/* More */
.hnMore{
  justify-self: end;
  margin: 0;
  font-size: clamp(12px, 3.1vw, 14px);
  letter-spacing: .08em;
}
.hnMore a{
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hnMore a::after{
  content: ">";
  display: inline-block;
}

/* 下のボタン */
.homeNews .homeBtnGrn{
  margin-top: 22px;
}




/* =========================
  Footer CTA
========================= */
#footer{
  background: #fff;
	color: #000;
}

.fcta{
  padding: 56px 16px 44px;
  text-align: center;
}

/* 見出し・本文 */
.fcta h3{
  margin: 0 0 16px;
  font-size: 18px;
  letter-spacing: .08em;
  font-weight: 500;
}

.fcta > p{
  margin: 0 auto 24px;
  font-size: 13px;
  line-height: 2.2;
  letter-spacing: .06em;
}

/* 3つの導線 */
/* CTA リスト共通 */
.fcta ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.fcta ul.fctaCont li {
  background: #f1eee6;
  text-align: center;
}

.fcta ul li a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 10px 16px;
  font-size: 13px;
  color: #14110f;
  text-decoration: none;
}

/* アイコン共通 */
.fcta ul li a::before {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* 各アイコン指定 */
.fctaBook a::before {
  background-image: url("../img/commons/icon_nav_book.svg");
}

.fctaModelhouse a::before {
  background-image: url("../img/commons/icon_nav_modelhouse.svg");
}

.fctaInquiry a::before {
  background-image: url("../img/commons/icon_nav_inquiry.svg");
}

/* Click 表示（既存デザイン再現用・不要なら削除OK） */
.fcta ul.fctaCont li a::after {
  content: "Click";
  display: inline-block;
  margin-top: 8px;
  padding: 4px 14px;
  font-size: 12px;
  background: #fff;
  border-radius: 999px;
}


/* 来場予約ボタン */
.fctaBtn{
  display: flex;
  justify-content: center;
  margin: 28px 0 34px;
}

.fctaBtn a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: .10em;
  font-weight: 500;
}

/* 電話 */
.fcta h4{
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: .08em;
  font-weight: 600;
}

.fctaCall{
  margin: 0 auto 18px;
}

.fctaCall a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  color: #6a625b;
}

/* 電話番号（Lato想定） */
.fctaCall a span{
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 9.2vw, 48px);
  letter-spacing: .08em;
}

.fctaCall a::before{
  content: "";
  width: 26px;
  height: 26px;
  background: url("../img/commons/icon_tel.svg") no-repeat center / contain;
  flex-shrink: 0;
}

/* 受付時間 */
.fctaCall p{
  margin: 10px 0 0;
  font-size: 13px;
  letter-spacing: .06em;
  color: #6a625b;
}

/* SNS */
/* SNS */
.fctaSns ul{
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.fctaSns li{
  margin: 0;
}

/* a を「縦積み」にする（アイコン→文字） */
.fctaSns a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;              /* アイコンと文字の間 */
  padding: 0;            /* 背景不要 */
  background: none;      /* 背景不要 */
  color: #6b645e;        /* 既存トーンに合わせて調整OK */
  text-decoration: none;
  font-size: 13px;       /* 指定に合わせて */
  letter-spacing: .06em;
}

/* アイコン */
.fctaSns a::before{
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  background: no-repeat center / contain;
}

/* Instagram / YouTube で出し分け（クラスを li に付ける想定） */
.fctaSns .snsInstagram a::before{
  background-image: url("../img/commons/icon_instagram.svg");
}
.fctaSns .snsYoutube a::before{
  background-image: url("../img/commons/icon_youtube.svg");
}


/* コピーライト */
.copy{
  padding: 18px 16px 22px;
  text-align: center;
  font-size: 12px;
  color: rgba(0,0,0,.55);
  border-top: 1px solid rgba(0,0,0,.18);
}

/* 画面が狭い時の崩れ防止 */
@media (max-width: 360px){
  .fcta > ul{
    grid-template-columns: 1fr;
  }
  .fcta > ul li a{
    min-height: 90px;
  }
}



.bottomNav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #d67743;
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
  z-index: 999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
  font-family:
    "Noto Sans JP",
    -apple-system,
    BlinkMacSystemFont,
    "YuGothic",
    "游ゴシック体",
    "Hiragino Kaku Gothic ProN",
    "メイリオ",
    sans-serif;

  /* 初期は非表示 */
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 表示状態（JSで付けるのはこれ） */
.bottomNav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bottomNav ul {
  display: flex;
  width: 100%;
  justify-content: space-around;
  margin: 0;
  padding: 0;
}

.bottomNav li {
  list-style: none;
  text-align: center;
}

.bottomNav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  font-size: 11px;
  text-decoration: none;
}

.bottomNav i {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* ======== 各アイコン設定 ======== */
.icon-menu { background-image: url('commons/css/images/icon_menu.svg'); }
.icon-hometop { background-image: url('commons/css/images/icon_home.svg'); }
.icon-modelhouse { background-image: url('commons/css/images/icon_modelhouse.svg'); }
.icon-book { background-image: url('commons/css/images/icon_book.svg'); }
.icon-inquiry { background-image: url('commons/css/images/icon_inquiry.svg'); }



@media (min-width: 1000px){
  /* セクション全体の横幅を揃える（必要に応じて増減OK） */
  .homeModelhouse,
  .homeCase,
  .homeHouseType,
  .homeInterview,
  .homeMessage,
  .homeNews,
  #footer .fcta{
    padding-left: 24px;
    padding-right: 24px;
  }

  /* “中身だけ”を1100pxに揃える */
  .hmSlider,
  .homeCaseEntry,
  .homeHouseType,
  .homeInterview,
  .homeMessageInner,
  .homeNews,
  #footer .fcta{
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media (min-width: 1000px){
  .homeNews{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title title"
      "staff topics";
    gap: 56px;
    align-items: start;
  }

  .homeNewsTit{ grid-area: title; margin-bottom: 0; }
  .homeNewsStaff{ grid-area: staff; max-width: none; }
  .homeNewsTopics{ grid-area: topics; max-width: none; margin-top: 0;}

  /* PCでは「一覧を見る」ボタンが段落の流れに合うように少し上に */
  .homeNews .homeBtnGrn{ margin-top: 28px; }
}

@media (min-width: 1000px){
  .homeInterview{
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-areas:
      "sub sub"
      "tit tit"
      "yt  post1"
      "yt  post2"
      "btn btn";
    gap: 0px 40px;
    align-items: start;
  }

  .hiTitSub{ grid-area: sub; }
  .hiTit{ grid-area: tit; margin-bottom: 10px; }

  .hiYoutube{ grid-area: yt; }
  .homeInterview .hiPost:nth-of-type(1){ grid-area: post1; }
  .homeInterview .hiPost:nth-of-type(2){ grid-area: post2; }

  .homeInterview .homeBtnGrn{ grid-area: btn; margin-top: 20px; }
}

@media (min-width: 1000px){
  .bottomNav{ display:none !important; }
}
