/* ===== ベース ===== */
:root{
  --ivory:#faf7f0;
  --ivory-deep:#f2ede1;
  --grege:#b9ac96;
  --grege-dark:#8d7f68;
  --green:#5f7360;
  --green-deep:#42513f;
  --ink:#3b3a34;
  --ink-soft:#6a675d;
  --line:#e4ddcd;
  --white:#fffdf8;
  --shadow:0 10px 30px rgba(80,72,55,.12);
  --radius:14px;
}

*{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
  margin:0;
  font-family:"Zen Kaku Gothic New","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
  color:var(--ink);
  background:var(--ivory);
  line-height:1.85;
  font-size:16px;
  overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto;}
h1,h2,h3,p,dl,dd,figure,ul{margin:0;}
ul{list-style:none;padding:0;}
a{color:inherit;}

.wrap{
  width:100%;
  max-width:1080px;
  margin:0 auto;
  padding-left:20px;
  padding-right:20px;
}
.wrap.narrow{max-width:760px;}

/* ===== ヘッダー ===== */
.site-header{
  background:var(--white);
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:20;
}
.header-inner{
  display:flex;
  align-items:baseline;
  gap:12px;
  padding-top:12px;
  padding-bottom:12px;
  flex-wrap:wrap;
}
.brand{
  font-family:"Shippori Mincho",serif;
  font-size:1.15rem;
  font-weight:600;
  letter-spacing:.08em;
  color:var(--green-deep);
}
.brand-sub{
  font-size:.78rem;
  color:var(--ink-soft);
}

/* ===== ファーストビュー ===== */
.hero{
  position:relative;
  min-height:78vh;
  display:flex;
}
.hero-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 45%;
}
.hero-overlay{
  position:relative;
  width:100%;
  display:flex;
  align-items:flex-end;
  background:linear-gradient(to top,rgba(40,36,28,.72) 0%,rgba(40,36,28,.28) 45%,rgba(40,36,28,.12) 100%);
}
.hero-content{
  padding-top:56px;
  padding-bottom:44px;
  color:#fff;
}
.hero-catch{
  font-family:"Shippori Mincho",serif;
  font-weight:600;
  font-size:clamp(1.55rem,5.8vw,2.8rem);
  line-height:1.5;
  text-shadow:0 2px 16px rgba(0,0,0,.35);
  letter-spacing:.04em;
}
.hero-lead{
  margin-top:18px;
  font-size:clamp(1.05rem,3.6vw,1.5rem);
  font-weight:700;
  letter-spacing:.04em;
}
.hero-note{
  margin-top:6px;
  font-size:clamp(.9rem,3vw,1.1rem);
  letter-spacing:.03em;
}
.hero-price{
  margin-top:22px;
  display:inline-flex;
  align-items:baseline;
  gap:14px;
  flex-wrap:wrap;
  background:rgba(255,253,248,.16);
  border:1px solid rgba(255,255,255,.4);
  border-radius:999px;
  padding:8px 20px;
  backdrop-filter:blur(2px);
}
.hero-price-main{font-size:1.15rem;font-weight:700;letter-spacing:.03em;}
.hero-price-main .yen{font-size:.85rem;margin-left:2px;}
.hero-price-sub{font-size:.85rem;opacity:.9;}

/* ===== セクション共通 ===== */
.section{padding:64px 0;}
.section-alt{background:var(--ivory-deep);}
.section-title{
  font-family:"Shippori Mincho",serif;
  font-weight:600;
  font-size:clamp(1.35rem,4.6vw,1.9rem);
  color:var(--green-deep);
  text-align:center;
  letter-spacing:.06em;
  margin-bottom:8px;
}
.section-title::after{
  content:"";
  display:block;
  width:44px;
  height:2px;
  background:var(--grege);
  margin:16px auto 0;
}
.section-note{
  text-align:center;
  font-size:.85rem;
  color:var(--ink-soft);
  margin-bottom:32px;
}
.section-title + .section-note{margin-top:14px;}
.subhead{
  font-family:"Shippori Mincho",serif;
  font-size:1.05rem;
  font-weight:600;
  color:var(--green-deep);
  margin:36px 0 0;
  text-align:center;
  letter-spacing:.04em;
}

/* ===== 主な魅力 ===== */
.feature-grid{
  margin-top:36px;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
}
.feature-card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px 22px 24px;
  box-shadow:var(--shadow);
}
.feature-card.is-primary{
  border-color:var(--green);
  border-width:2px;
}
.feature-label{
  display:inline-block;
  font-size:.72rem;
  letter-spacing:.12em;
  color:#fff;
  background:var(--green);
  border-radius:999px;
  padding:3px 12px;
  margin-bottom:12px;
}
.feature-head{
  font-family:"Shippori Mincho",serif;
  font-size:1.2rem;
  font-weight:600;
  color:var(--ink);
  margin-bottom:6px;
}
.feature-desc{font-size:.92rem;color:var(--ink-soft);}

/* ===== 紹介文 ===== */
.story-text{margin-top:32px;}
.story-text p{margin-bottom:20px;font-size:1rem;}
.story-text p:last-child{margin-bottom:0;}

/* ===== 特に伝えたいこと ===== */
.point-list{
  margin-top:36px;
  display:grid;
  gap:20px;
}
.point-item{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.point-item img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  cursor:zoom-in;
}
.point-body{padding:20px 22px 24px;}
.point-body h3{
  font-family:"Shippori Mincho",serif;
  font-size:1.12rem;
  font-weight:600;
  color:var(--green-deep);
  margin-bottom:8px;
}
.point-body p{font-size:.94rem;color:var(--ink-soft);}

/* ===== ギャラリー ===== */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.gallery-item{
  margin:0;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.gallery-item img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  cursor:zoom-in;
  transition:transform .4s ease;
}
.gallery-item img:hover{transform:scale(1.04);}
.gallery-item figcaption{
  font-size:.8rem;
  color:var(--ink-soft);
  text-align:center;
  padding:9px 8px 11px;
}

/* ===== 間取り ===== */
.floorplan{
  margin:32px auto 0;
  max-width:520px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.floorplan img{
  width:100%;
  cursor:zoom-in;
  border-radius:8px;
}
.floorplan figcaption{
  margin-top:14px;
  text-align:center;
  font-size:.88rem;
  color:var(--ink-soft);
}
.floorplan-points{
  margin:24px auto 0;
  max-width:520px;
  display:grid;
  gap:8px;
}
.floorplan-points li{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 16px;
  font-size:.92rem;
  position:relative;
  padding-left:34px;
}
.floorplan-points li::before{
  content:"";
  position:absolute;
  left:16px;
  top:1.15em;
  width:7px;height:7px;
  border-radius:50%;
  background:var(--green);
}

/* ===== 設備 ===== */
.equip-columns{
  margin-top:32px;
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.equip-group{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:20px 22px;
  box-shadow:var(--shadow);
}
.equip-head{
  font-family:"Shippori Mincho",serif;
  font-size:1.05rem;
  font-weight:600;
  color:var(--green-deep);
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--line);
}
.equip-list{display:grid;gap:7px;}
.equip-list li{
  font-size:.92rem;
  position:relative;
  padding-left:22px;
}
.equip-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:700;
}
.equip-photos{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
}
.equip-photos figure{
  margin:0;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.equip-photos img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  cursor:zoom-in;
}
.equip-photos figcaption{
  font-size:.78rem;
  color:var(--ink-soft);
  text-align:center;
  padding:8px;
}

/* ===== こんな方におすすめ ===== */
.target-list{
  margin-top:32px;
  display:grid;
  gap:10px;
}
.target-list li{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px 16px 12px 40px;
  font-size:.95rem;
  position:relative;
  box-shadow:var(--shadow);
}
.target-list li::before{
  content:"◇";
  position:absolute;
  left:16px;
  color:var(--green);
}

/* ===== 物件概要 ===== */
.overview-table{
  margin-top:32px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.subhead + .overview-table{margin-top:16px;}
.overview-table .row{
  display:grid;
  grid-template-columns:104px 1fr;
}
.overview-table .row + .row{border-top:1px solid var(--line);}
.overview-table dt{
  background:var(--ivory-deep);
  padding:12px 14px;
  font-size:.85rem;
  font-weight:700;
  color:var(--green-deep);
}
.overview-table dd{
  padding:12px 14px;
  font-size:.92rem;
  word-break:break-word;
}
.overview-note{
  margin-top:14px;
  font-size:.8rem;
  color:var(--ink-soft);
  text-align:center;
}

/* ===== 地図 ===== */
.map-embed{
  margin-top:28px;
  width:100%;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  line-height:0;
}
.map-embed iframe{
  width:100%;
  height:60vw;
  max-height:460px;
  min-height:300px;
  border:0;
  display:block;
}
.map-note{
  margin-top:12px;
  text-align:center;
  font-size:.85rem;
}
.map-note a{color:var(--green-deep);text-decoration:underline;}
.map-address{
  margin-top:16px;
  text-align:center;
  font-size:1rem;
  font-weight:700;
  letter-spacing:.04em;
}
.access-detail{
  text-align:center;
  font-size:.9rem;
  color:var(--ink-soft);
  margin-top:4px;
}

/* ===== 締めのメッセージ ===== */
.closing{
  background:var(--green-deep);
  color:#f6f2e8;
  text-align:center;
  padding:72px 0;
}
.closing-catch{
  font-family:"Shippori Mincho",serif;
  font-weight:600;
  font-size:clamp(1.3rem,4.6vw,2rem);
  letter-spacing:.06em;
  line-height:1.6;
}
.closing-text{
  margin-top:20px;
  font-size:.98rem;
  color:#d9d3c2;
}

/* ===== フッター ===== */
.site-footer{
  background:var(--ink);
  color:#d7d2c6;
  text-align:center;
  padding:30px 0;
}
.footer-brand{
  font-family:"Shippori Mincho",serif;
  letter-spacing:.1em;
  font-size:1rem;
}
.footer-addr{font-size:.8rem;margin-top:4px;color:#a9a495;}

/* ===== ライトボックス ===== */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(28,25,19,.92);
  z-index:100;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.lightbox[hidden]{display:none;}
.lb-figure{
  margin:0;
  max-width:100%;
  max-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
}
.lb-figure img{
  max-width:100%;
  max-height:82vh;
  width:auto;
  object-fit:contain;
  border-radius:6px;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.lb-figure figcaption{
  color:#efe9db;
  font-size:.88rem;
  text-align:center;
}
.lb-close,.lb-nav{
  position:absolute;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  cursor:pointer;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s;
}
.lb-close:hover,.lb-nav:hover{background:rgba(255,255,255,.28);}
.lb-close{
  top:16px;right:16px;
  width:44px;height:44px;
  font-size:1.8rem;
  line-height:1;
}
.lb-nav{
  top:50%;
  transform:translateY(-50%);
  width:48px;height:48px;
  font-size:2rem;
  line-height:1;
}
.lb-prev{left:12px;}
.lb-next{right:12px;}

/* ===== タブレット以上 ===== */
@media(min-width:600px){
  .gallery-grid{grid-template-columns:repeat(3,1fr);gap:14px;}
  .gallery-item.wide{grid-column:span 2;}
  .gallery-item.wide img{aspect-ratio:16/9;}
  .feature-grid{grid-template-columns:repeat(2,1fr);}
  .equip-columns{grid-template-columns:repeat(2,1fr);}
  .equip-photos{grid-template-columns:repeat(3,1fr);}
  .overview-table .row{grid-template-columns:150px 1fr;}
  .point-list{grid-template-columns:repeat(2,1fr);}
  .target-list{grid-template-columns:repeat(2,1fr);}
}

/* ===== PC ===== */
@media(min-width:960px){
  body{font-size:17px;}
  .section{padding:88px 0;}
  .gallery-grid{grid-template-columns:repeat(4,1fr);}
  .gallery-item.wide{grid-column:span 2;}
  .feature-grid{grid-template-columns:repeat(3,1fr);}
  .equip-columns{grid-template-columns:repeat(3,1fr);}
  .equip-photos{grid-template-columns:repeat(6,1fr);}
  .point-list{grid-template-columns:repeat(3,1fr);}
  .hero{min-height:82vh;}
}

@media(hover:none){
  .gallery-item img:hover{transform:none;}
}
