/* ============================================================
   株式会社アキズファイブ 公式サイト 共通スタイル v2
   ------------------------------------------------------------
   コンセプト: 社名「ファイブ」にちなむ五枚の花びらモチーフ
   ・見出し: Zen Maru Gothic(丸ゴシック=家庭的な温かさ)
   ・本文: Noto Sans JP(読みやすさ)
   ・配色: 温かいクリーム地 × 深いモスグリーン × 柿色
   ・写真: 花びら型の有機的な角丸で柔らかさを表現
============================================================ */
:root {
  --cream: #faf5ea;
  --cream-deep: #f1e9d6;
  --white: #ffffff;
  --green: #5f9440;
  --green-dark: #3f6b26;
  --green-deep: #2e5219;
  --green-pale: #ecf3e2;
  --orange: #e8912d;
  --orange-dark: #cf7614;
  --orange-pale: #fbeeda;
  --text: #3a3630;
  --text-light: #6f6a60;
  --line: #e4dcc8;
  --radius: 18px;
  --petal: 58% 42% 55% 45% / 46% 54% 44% 56%;
  --shadow: 0 6px 24px rgba(95, 80, 40, .10);
  --shadow-soft: 0 3px 12px rgba(95, 80, 40, .07);
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 2;
  font-size: 16px;
  letter-spacing: .05em;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: none; transition: opacity .2s, background .2s, transform .2s; }
a:hover { opacity: .85; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 4px; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; }

.inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- スクロールで表示(reveal) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 花びらモチーフ ---------- */

/* ---------- 写真プレースホルダー ---------- */
.photo {
  position: relative;
  background: var(--cream-deep);
  border-radius: var(--radius);
  overflow: hidden;
}
.photo img { position: relative; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; gap: 22px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo svg { width: 46px; height: 46px; transition: transform .5s; }
.logo:hover svg { transform: rotate(36deg); }
.logo-text { line-height: 1.35; }
.logo-text .co { font-size: 11px; color: var(--green-dark); display: block; letter-spacing: .12em; }
.logo-text .name { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--text); }

.gnav { margin-left: auto; }
.gnav-head, .gnav-cta { display: none; }
.gnav ul { display: flex; gap: 4px; align-items: center; }
.gnav a {
  color: var(--text); font-size: 14.5px; font-weight: 500;
  padding: 8px 13px; border-radius: 999px; display: block;
}
.gnav a:hover, .gnav a[aria-current="page"] { background: var(--green-pale); color: var(--green-dark); opacity: 1; }

.header-cta { display: flex; gap: 10px; align-items: center; }
.btn-reserve, .btn-contact {
  display: inline-block; padding: 11px 20px; border-radius: 999px;
  color: #fff !important; font-weight: 700; font-size: 14px; white-space: nowrap;
  box-shadow: var(--shadow-soft);
}
.btn-reserve { background: var(--green); }
.btn-contact { background: var(--orange); }
.btn-reserve:hover { background: var(--green-dark); opacity: 1; }
.btn-contact:hover { background: var(--orange-dark); opacity: 1; }
.header-tel { text-align: center; line-height: 1.35; white-space: nowrap; }
.header-tel .num { font-size: 20px; font-weight: 700; color: var(--green-dark); letter-spacing: .02em; }
.header-tel .note { font-size: 10.5px; color: var(--text-light); }

/* ハンバーガー(SPのみ) */
.menu-toggle {
  display: none;
  width: 48px; height: 48px; border: none; background: var(--green);
  border-radius: 14px; cursor: pointer; position: relative; margin-left: auto; flex-shrink: 0;
}
.menu-toggle span { position: absolute; left: 13px; right: 13px; height: 2px; background: #fff; border-radius: 2px; transition: .25s; }
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 23px; }
.menu-toggle span:nth-child(3) { top: 30px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* ---------- ヒーロー(フルスクリーン写真) ---------- */
.hero {
  position: relative; overflow: hidden;
  height: min(88vh, 760px); min-height: 520px;
  border-radius: 0 0 32px 32px; background: var(--cream-deep);
}
.hero-media { position: absolute; inset: 0; border-radius: 0; }
.hero-media img { animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgba(35, 28, 12, .55) 0%, rgba(35, 28, 12, .12) 38%, rgba(0, 0, 0, 0) 60%);
}
.hero-body {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  max-width: 1080px; margin: 0 auto; padding: 0 24px 96px;
}
.hero-catch {
  color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(28px, 4vw, 46px); line-height: 1.75; letter-spacing: .1em;
  text-shadow: 0 2px 20px rgba(20, 14, 0, .45);
}
.hero-place {
  display: inline-block; margin-top: 18px;
  background: rgba(255, 255, 255, .92); color: var(--green-deep);
  border-radius: 999px; padding: 9px 22px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .08em;
  box-shadow: var(--shadow-soft);
}

/* ---------- 数字で見る(stat) ---------- */
.stats { margin-top: 0; padding-top: 0; position: relative; z-index: 5; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: var(--white); border-radius: 24px; box-shadow: var(--shadow);
  padding: 26px 24px; margin-top: -54px;
}
.stat { text-align: center; padding: 6px 4px; }
.stat + .stat { border-left: 1px dashed var(--line); }
.stat .label { font-size: 12.5px; color: var(--text-light); letter-spacing: .1em; }
.stat .value { font-family: var(--font-head); font-size: 30px; color: var(--green-dark); line-height: 1.3; }
.stat .value small { font-size: 14px; }
.stat .note { font-size: 11.5px; color: var(--text-light); }

/* ---------- セクション共通 ---------- */
.section { padding: 96px 0; }
.section--white { background: var(--white); border-radius: 44px; margin: 0 12px; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head .en {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--orange-dark); font-size: 12px; font-weight: 700;
  letter-spacing: .34em; text-transform: uppercase; margin-bottom: 12px;
}
.section-head .en::before, .section-head .en::after {
  content: ""; width: 26px; height: 1px; background: var(--orange);
}
.section-head h2 { font-size: clamp(23px, 3.2vw, 32px); line-height: 1.7; }
.section-head h2 .accent { color: var(--green-dark); }
.section-head .sub { font-size: 14px; color: var(--text-light); margin-top: 10px; }

.lead { max-width: 720px; margin: 0 auto; text-align: center; }

.btn-more {
  display: inline-block; margin-top: 30px; padding: 14px 52px;
  background: var(--green); color: #fff !important; border-radius: 999px;
  font-weight: 700; box-shadow: var(--shadow);
  position: relative;
}
.btn-more::after { content: "→"; margin-left: 10px; display: inline-block; transition: transform .2s; }
.btn-more:hover { background: var(--green-dark); opacity: 1; }
.btn-more:hover::after { transform: translateX(4px); }

/* ---------- お部屋カード(居間/食堂/居室) ---------- */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.room-card {
  background: var(--white); border-radius: 22px; box-shadow: var(--shadow-soft);
  overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room-card .photo { height: 210px; border-radius: 0; }
.room-card .body { padding: 22px 24px 28px; }
.room-card h3 {
  font-size: 19px; color: var(--green-dark); margin-bottom: 8px;
  display: flex; align-items: center; gap: 9px;
}
.room-card p { font-size: 14.5px; color: var(--text-light); line-height: 1.9; }

/* ---------- こだわり(交互レイアウト) ---------- */
.feature { display: flex; align-items: center; gap: 56px; margin-top: 72px; }
.feature:nth-of-type(even) { flex-direction: row-reverse; }
.feature .photo { flex: 0 1 46%; aspect-ratio: 5/4; border-radius: 26px; }
.feature .photo, .feature .photo img { border-radius: 26px; }
.feature:nth-of-type(odd) .photo { box-shadow: 18px 18px 0 var(--green-pale); }
.feature:nth-of-type(even) .photo { box-shadow: -18px 18px 0 var(--orange-pale); }
.feature .text { flex: 1 1 56%; position: relative; }
.feature .num {
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--orange-dark); letter-spacing: .24em; margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.feature .num::after { content: ""; flex: 0 0 46px; height: 1px; background: var(--orange); }
.feature h3 { font-size: clamp(20px, 2.4vw, 25px); line-height: 1.75; margin-bottom: 16px; }
.feature p { color: var(--text-light); font-size: 15.5px; }

/* ---------- 施設紹介 ---------- */
.facility-card {
  background: var(--white); border-radius: 26px; box-shadow: var(--shadow);
  display: flex; overflow: hidden; margin-top: 48px;
}
.facility-card .photo { flex: 1 1 44%; min-height: 320px; border-radius: 0; }
.facility-card .body { flex: 1 1 56%; padding: 40px 44px; }
.facility-card h3 { font-size: 26px; color: var(--green-dark); }
.facility-card .addr { font-size: 14px; color: var(--text-light); margin: 4px 0 18px; }
.price-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.price { font-family: var(--font-head); font-size: 32px; font-weight: 700; color: var(--orange-dark); }
.price small { font-size: 14px; color: var(--text-light); font-weight: 400; font-family: var(--font-body); }
.badge-full {
  background: var(--orange-pale); color: var(--orange-dark); font-size: 13px; font-weight: 700;
  padding: 5px 16px; border-radius: 999px; border: 1px solid var(--orange);
}
.facility-card .spec { margin-top: 18px; font-size: 14.5px; color: var(--text-light); }
.spec li { padding-left: 22px; position: relative; line-height: 1.9; margin-bottom: 4px; }
.spec li::before {
  content: ""; position: absolute; left: 2px; top: .72em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--green);
}
.fee-note {
  margin-top: 44px; background: var(--green-pale); border-radius: 22px; padding: 30px 36px;
}
.fee-note h4 { color: var(--green-dark); margin-bottom: 10px; font-size: 17px; }
.fee-note li { font-size: 14.5px; padding-left: 1.2em; text-indent: -1.2em; color: var(--text-light); }
.fee-note li::before { content: "・"; }

/* ---------- 入居までの流れ ---------- */
.flow { max-width: 780px; margin: 48px auto 0; position: relative; }
.flow::before {
  content: ""; position: absolute; left: 33px; top: 24px; bottom: 24px;
  width: 2px; background: repeating-linear-gradient(to bottom, var(--green) 0 6px, transparent 6px 12px);
  opacity: .5;
}
.flow-step { display: flex; gap: 28px; padding: 16px 0; position: relative; }
.flow-step .icon {
  flex: 0 0 68px; width: 68px; height: 68px; border-radius: 50%;
  background: var(--green); color: #fff; display: flex; flex-direction: column;
  align-items: center; justify-content: center; font-weight: 700; z-index: 1;
  box-shadow: 0 0 0 6px var(--cream); font-family: var(--font-head);
}
.section--white .flow-step .icon { box-shadow: 0 0 0 6px var(--white); }
.flow-step .icon small { font-size: 9.5px; font-weight: 400; letter-spacing: .12em; }
.flow-step .icon .n { font-size: 21px; line-height: 1.1; }
.flow-step:last-child .icon { background: var(--orange); }
.flow-step .body { background: var(--cream); border-radius: 18px; padding: 20px 26px; flex: 1; }
.flow-step h3 { font-size: 17.5px; color: var(--green-dark); margin-bottom: 4px; }
.flow-step p { font-size: 14.5px; color: var(--text-light); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white); border-radius: 18px; box-shadow: var(--shadow-soft);
  margin-bottom: 14px; overflow: hidden;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 56px 20px 24px;
  font-weight: 700; font-size: 15.5px; position: relative; line-height: 1.7;
  display: flex; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--green-pale);
  color: var(--green-dark); display: flex; align-items: center; justify-content: center;
  font-weight: 700; transition: transform .25s;
}
.faq details[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq .q-mark, .faq .a-mark {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; color: #fff; line-height: 1;
}
.faq .q-mark { background: var(--green); }
.faq .a-mark { background: var(--orange); }
.faq .answer { padding: 0 24px 22px; display: flex; gap: 12px; font-size: 14.5px; color: var(--text-light); }
.faq .answer p { flex: 1; }

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 44px; margin: 0 12px; color: #fff;
}
.cta .section-head .en { color: #f5d9a8; }
.cta .section-head h2 { color: #fff; }
.cta-box { display: flex; gap: 24px; justify-content: center; align-items: stretch; flex-wrap: wrap; }
.cta-btn {
  flex: 1 1 280px; max-width: 380px; text-align: center; padding: 28px 20px;
  border-radius: 22px; font-family: var(--font-head); font-size: 21px; font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}
.cta-btn.reserve { background: #fff; color: var(--green-dark) !important; }
.cta-btn.contact { background: var(--orange); color: #fff !important; }
.cta-btn:hover { transform: translateY(-4px); opacity: 1; }
.cta-btn small { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 400; opacity: .85; margin-top: 2px; }
.cta-tel { text-align: center; margin-top: 30px; }
.cta-tel a { color: #fff; }
.cta-tel .num { font-family: var(--font-head); font-size: 36px; font-weight: 700; letter-spacing: .03em; }
.cta-tel .note { font-size: 13px; opacity: .85; }

/* ---------- 新着情報 ---------- */
.news-list { max-width: 780px; margin: 0 auto; }
.news-list li { border-bottom: 1px dashed var(--line); }
.news-list a, .news-list .row {
  display: flex; gap: 22px; padding: 20px 10px; color: var(--text); align-items: baseline;
  border-radius: 12px;
}
.news-list a:hover { background: var(--white); opacity: 1; }
.news-list time { color: var(--green-dark); font-weight: 700; font-size: 14px; white-space: nowrap; font-family: var(--font-head); }
.news-list .cat {
  font-size: 11.5px; background: var(--green-pale); color: var(--green-dark);
  border-radius: 999px; padding: 3px 12px; white-space: nowrap; font-weight: 700;
}

/* ---------- 下層ページ共通 ---------- */
.page-title {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff; text-align: center; padding: 64px 20px 60px; border-radius: 0 0 36px 36px;
}
.page-title::after {
  content: ""; position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  width: 44px; height: 3px; border-radius: 3px; background: var(--orange);
}
.page-title h1 { font-size: clamp(25px, 3.4vw, 34px); letter-spacing: .14em; position: relative; }
.page-title .en { font-size: 12.5px; letter-spacing: .32em; opacity: .8; text-transform: uppercase; position: relative; }
.breadcrumb { max-width: 1080px; margin: 16px auto 0; padding: 0 24px; font-size: 13px; color: var(--text-light); }

/* テーブル */
.def-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-soft); }
.def-table th, .def-table td { padding: 20px 24px; border-bottom: 1px solid var(--line); text-align: left; font-size: 15px; vertical-align: top; line-height: 1.9; }
.def-table th { width: 220px; background: var(--green-pale); color: var(--green-dark); font-weight: 700; font-family: var(--font-head); }
.def-table tr:last-child th, .def-table tr:last-child td { border-bottom: none; }

/* ---------- オンラインショップ ---------- */
.shop-note { text-align: center; color: var(--text-light); font-size: 14.5px; margin-bottom: 40px; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.product-card {
  background: var(--white); border-radius: 22px; box-shadow: var(--shadow-soft);
  overflow: hidden; display: flex; flex-direction: column; transition: transform .3s, box-shadow .3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .photo { aspect-ratio: 1/1; border-radius: 0; }
.product-card .body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.product-card .desc { font-size: 13.5px; color: var(--text-light); flex: 1; }
.product-card .price { font-size: 21px; margin-top: 10px; }
.product-card .price small { font-size: 12px; }
.product-card .buy {
  margin-top: 14px; text-align: center; background: var(--orange); color: #fff !important;
  border-radius: 999px; padding: 11px; font-weight: 700; font-size: 14px;
}
.product-card .buy:hover { background: var(--orange-dark); opacity: 1; }
.shop-empty { text-align: center; color: var(--text-light); padding: 70px 0; }

/* ---------- フォーム ---------- */
.form-wrap { max-width: 720px; margin: 0 auto; background: var(--white); border-radius: 26px; box-shadow: var(--shadow); padding: 44px; }
.form-row { margin-bottom: 24px; }
.form-row label { display: block; font-weight: 700; margin-bottom: 7px; font-size: 15px; }
.req {
  color: #fff; background: var(--orange); font-size: 11px; margin-left: 8px;
  padding: 2px 10px; border-radius: 999px; vertical-align: 2px;
}
input[type="text"], input[type="email"], input[type="tel"], select, textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: var(--font-body); font-size: 15px; background: var(--cream);
  transition: border-color .2s, background .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--green); background: #fff; outline: none; }
textarea { min-height: 170px; resize: vertical; }
.form-submit { text-align: center; margin-top: 32px; }
.form-submit button {
  padding: 15px 70px; background: var(--green); color: #fff; border: none;
  border-radius: 999px; font-size: 17px; font-weight: 700; cursor: pointer;
  font-family: var(--font-head); box-shadow: var(--shadow); transition: background .2s, transform .2s;
}
.form-submit button:hover { background: var(--green-dark); transform: translateY(-2px); }

/* ---------- フッター ---------- */
.footer { background: var(--green-deep); color: #fff; margin-top: 96px; padding: 64px 0 0; border-radius: 36px 36px 0 0; }
.footer a { color: #fff; }
.footer-inner { max-width: 1080px; margin: 0 auto; padding: 0 24px; display: flex; gap: 48px; flex-wrap: wrap; }
.footer-brand .logo-text .co { color: #b9d19c; }
.footer-brand .logo-text .name { color: #fff; }
.footer-brand p { font-size: 13.5px; opacity: .88; margin-top: 14px; line-height: 2; }
.footer-nav { display: flex; gap: 56px; flex-wrap: wrap; margin-left: auto; }
.footer-nav ul li { margin-bottom: 12px; font-size: 14px; }
.footer-nav ul li a { opacity: .92; }
.footer-nav ul li a { border-bottom: 1px solid transparent; padding-bottom: 2px; }
.footer-nav ul li a:hover { border-bottom-color: rgba(255,255,255,.5); opacity: 1; }
.copyright { text-align: center; font-size: 12px; padding: 28px 10px; margin-top: 44px; border-top: 1px solid rgba(255, 255, 255, .16); opacity: .8; }

/* ---------- SP固定バー ---------- */
.sp-bar { display: none; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 1080px) {
  .gnav ul { gap: 0; }
  .gnav a { padding: 8px 9px; font-size: 13.5px; }
  .header-tel { display: none; }
}
@media (max-width: 900px) {
  body { font-size: 15.5px; padding-bottom: 74px; }
  .menu-toggle { display: block; }
    .gnav { display: none; }
  .header-cta { display: none; }

  .hero { height: 76vh; min-height: 460px; max-height: 640px; border-radius: 0 0 22px 22px; }
  .hero-body { padding: 0 20px 84px; }
  .hero-catch { font-size: clamp(24px, 6.6vw, 30px); letter-spacing: .06em; line-height: 1.8; }
  .hero-place { font-size: 12px; padding: 8px 16px; margin-top: 14px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 8px; padding: 24px 14px; border-radius: 20px; margin-top: -44px; }
  .stat + .stat { border-left: none; }
  .stat:nth-child(even) { border-left: 1px dashed var(--line); }
  .stat .value { font-size: 25px; }

  .section { padding: 64px 0; }
  .section--white, .cta { border-radius: 28px; margin: 0 8px; }
  .section-head { margin-bottom: 36px; }

  .rooms { grid-template-columns: 1fr; gap: 20px; }
  .room-card .photo { height: 190px; }

  .feature, .feature:nth-of-type(even) { flex-direction: column; gap: 26px; margin-top: 56px; }
  .feature .photo { width: min(88%, 400px); aspect-ratio: 4/3; }
  .feature:nth-of-type(odd) .photo { box-shadow: 12px 12px 0 var(--green-pale); }
  .feature:nth-of-type(even) .photo { box-shadow: -12px 12px 0 var(--orange-pale); }

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

  .facility-card { flex-direction: column; border-radius: 22px; }
  .facility-card .photo { min-height: 230px; }
  .facility-card .body { padding: 28px 24px; }
  .price { font-size: 27px; }
  .fee-note { padding: 24px 22px; }

  .flow::before { left: 27px; }
  .flow-step { gap: 18px; }
  .flow-step .icon { flex: 0 0 56px; width: 56px; height: 56px; }
  .flow-step .icon .n { font-size: 18px; }
  .flow-step .body { padding: 16px 18px; }

  .faq summary { padding: 17px 50px 17px 18px; font-size: 14.5px; }
  .faq .answer { padding: 0 18px 18px; }

  .cta-btn { font-size: 18px; padding: 22px 16px; }
  .cta-tel .num { font-size: 30px; }

  .def-table th, .def-table td { display: block; width: 100%; }
  .def-table th { padding: 12px 18px; font-size: 13.5px; }
  .def-table td { padding: 14px 18px 18px; font-size: 14.5px; border-bottom: none; }
  .def-table tr { border-bottom: 1px solid var(--line); display: block; }

  .form-wrap { padding: 30px 20px; border-radius: 20px; }
  .footer { margin-top: 64px; padding-top: 44px; border-radius: 26px 26px 0 0; }
  .footer-nav { margin-left: 0; gap: 28px; }
  .copyright { padding-bottom: 22px; }

  /* SP固定バー(電話・見学予約) */
  .sp-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
    box-shadow: 0 -4px 16px rgba(60, 45, 10, .15);
  }
  .sp-bar a {
    flex: 1; text-align: center; padding: 15px 6px 16px; color: #fff !important;
    font-weight: 700; font-size: 14.5px; line-height: 1.35;
  }
  .sp-bar a small { display: block; font-size: 10px; font-weight: 400; opacity: .85; }
  .sp-bar .bar-tel { background: var(--green-dark); }
  .sp-bar .bar-reserve { background: var(--orange); }
}


/* ---------- SPドロワーメニュー(ヘッダーから独立) ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 900; background: rgba(30, 40, 18, .45);
  opacity: 0; visibility: hidden; transition: opacity .28s, visibility .28s;
}
.drawer-backdrop.show { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 950;
  width: min(84vw, 360px); height: 100dvh;
  background: #fff; box-shadow: -8px 0 32px rgba(40, 30, 5, .18);
  transform: translateX(105%); transition: transform .3s ease;
  display: flex; flex-direction: column; overflow-y: auto;
  padding: 0 22px calc(24px + env(safe-area-inset-bottom));
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0 12px; border-bottom: 1px solid var(--line);
}
.drawer-head .logo-text .co { display: block; font-size: 10.5px; color: var(--green-dark); letter-spacing: .12em; }
.drawer-head .logo-text .name { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--text); }
.menu-close {
  width: 42px; height: 42px; border: none; background: var(--green-pale);
  border-radius: 50%; cursor: pointer; position: relative; flex-shrink: 0;
}
.menu-close::before, .menu-close::after {
  content: ""; position: absolute; left: 12px; right: 12px; top: 50%;
  height: 2px; background: var(--green-dark); border-radius: 2px;
}
.menu-close::before { transform: rotate(45deg); }
.menu-close::after { transform: rotate(-45deg); }
.drawer ul { padding: 8px 0; }
.drawer ul a {
  display: flex; align-items: center; color: var(--text);
  font-size: 15.5px; font-weight: 500; padding: 15px 6px;
  border-bottom: 1px solid var(--line);
}
.drawer ul a::after {
  content: ""; margin-left: auto; width: 8px; height: 8px;
  border-top: 2px solid var(--green); border-right: 2px solid var(--green);
  transform: rotate(45deg);
}
.drawer ul a[aria-current="page"] { color: var(--green-dark); font-weight: 700; }
.drawer-cta { margin-top: auto; padding-top: 20px; display: grid; gap: 10px; }
.drawer-cta .d-tel {
  display: block; text-align: center; background: var(--green-pale);
  border-radius: 16px; padding: 13px 10px; line-height: 1.5;
}
.drawer-cta .d-tel .num { font-family: var(--font-head); font-size: 21px; font-weight: 700; color: var(--green-dark); display: block; }
.drawer-cta .d-tel .note { font-size: 11px; color: var(--text-light); }
.drawer-cta .d-reserve, .drawer-cta .d-contact {
  display: block; text-align: center; border-radius: 999px; padding: 14px 10px;
  font-weight: 700; font-size: 15px; color: #fff !important;
}
.drawer-cta .d-reserve { background: var(--green); }
.drawer-cta .d-contact { background: var(--orange); }
body.menu-open { overflow: hidden; }
@media (min-width: 901px) {
  .drawer, .drawer-backdrop { display: none; }
}
