@charset "UTF-8";
/* ============================================================
   i.トータルエステート サイトリニューアル
   共通スタイル + トップページ
   配色トークンは Figma「i.トータルエステート サイトデザイン v2」準拠
   ============================================================ */

:root {
  /* --- カラートークン（PC・SP共通） --- */
  --green-deep:   #003C24; /* ヘッダー・フッター・CTA帯・主ボタン */
  --green-forest: #1C6B45; /* 英字ラベル・強調テキスト・アイコン線 */
  --accent:       #B4CB00; /* 黄緑アクセント・見出し末尾の「.」 */
  --accent-line:  #C6D70F; /* カード下線 */
  --cream:        #F5F3EC; /* FV下地・セクション背景 */
  --line:         #E3E0D6; /* 枠線・区切り線 */
  --tint:         #EAF1EC; /* FitBox背景 */
  --text-soft:    #4A574F; /* 本文グレー（弱） */
  --text-body:    #1C2A22; /* 本文グレー（強） */
  --ink-faint:    #8A948E; /* 注記 */
  --white:        #FFFFFF;
  --line-on-green: rgba(255,255,255,0.22);

  /* --- フォント --- */
  --font-mincho: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-sans:   "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --font-en:     "Montserrat", var(--font-sans);
  --font-num:    "Bodoni Moda", "Bodoni MT", Didot, serif;

  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-card: 0 4px 16px rgba(0,60,36,0.07);
  --shadow-panel: 0 2px 12px rgba(0,60,36,0.06);

  --header-h: 64px;
}

/* ---------- リセット ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.9;
  font-feature-settings: "palt";
}
h1,h2,h3,h4,p,ul,ol,dl,dt,dd,figure { margin: 0; }
ul,ol { padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; }

/* ---------- 共通部品 ---------- */
.container { max-width: 1128px; margin-inline: auto; padding-inline: 24px; }

/* 表示切り替えユーティリティ */
.pc-only { display: none !important; }
.pc-only-inline { display: none !important; }
.sp-only { display: inline !important; }
.sp-only-inline { display: inline-block !important; }
@media (min-width: 768px) {
  .pc-only { display: inline !important; }
  .pc-only-inline { display: inline-block !important; }
  .sp-only, .sp-only-inline { display: none !important; }
}

.icon { display: inline-block; flex: none; }
.icon svg { display: block; width: 100%; height: 100%; }

/* ボタン */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans); font-weight: 500; line-height: 1.4;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn-primary { background: var(--green-deep); border: 1px solid var(--green-deep); color: var(--white); }
.btn-outline { background: var(--white); border: 1px solid var(--green-deep); color: var(--green-deep); }
.btn-inverse { background: var(--white); color: var(--green-deep); }
.btn-lg { padding: 16px 36px; font-size: 18px; letter-spacing: .04em; }
.btn-md { padding: 12px 28px; font-size: 16px; letter-spacing: .04em; }
.btn .icon { width: 20px; height: 20px; }

/* セクション見出し */
.sec-head { display: flex; flex-direction: column; gap: 10px; align-items: center; text-align: center; }
.sec-eyebrow {
  font-family: var(--font-en); font-weight: 600; font-size: 11px;
  letter-spacing: .14em; color: var(--green-forest); line-height: 1.4;
}
.sec-title {
  font-family: var(--font-mincho); font-weight: 600; font-size: 23px;
  letter-spacing: .06em; color: var(--green-deep); line-height: 1.6;
}
.sec-lead { font-size: 13px; letter-spacing: .02em; color: var(--text-soft); }
.sec-title .dot { color: var(--accent); }

@media (min-width: 768px) {
  .sec-head { gap: 12px; }
  .sec-eyebrow { font-size: 12px; }
  .sec-title { font-size: 28px; letter-spacing: .08em; }
  .sec-lead { font-size: 14px; letter-spacing: .03em; }
}

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--green-deep);
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: 20px;
}
.header-logo { display: flex; align-items: center; gap: 5px; }
.header-logo img { width: 30px; height: 30px; object-fit: contain; }
.header-logo .logo-text {
  font-family: var(--font-mincho); font-weight: 600; font-size: 12px;
  letter-spacing: .06em; color: var(--white); line-height: 1.4; white-space: nowrap;
}
.header-right { display: flex; align-items: center; gap: 12px; }
.header-cta-col { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.header-cta-label {
  font-weight: 500; font-size: 9px; line-height: 1.2; color: var(--white); white-space: nowrap;
}
.header-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--white); color: var(--green-deep);
  border-radius: 8px; padding: 7px 14px; min-width: 99px;
  font-weight: 500; font-size: 12px; line-height: 1.3; letter-spacing: .02em;
  transition: background-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.header-cta-btn .icon { width: 14px; height: 14px; }
.header-nav, .header-tel { display: none; }

/* ハンバーガー */
.menu-btn { display: flex; flex-direction: column; gap: 5px; padding: 8px 0; }
.menu-btn span { width: 22px; height: 2px; border-radius: 1px; background: var(--white); }

@media (min-width: 1000px) {
  :root { --header-h: 98px; }
  .site-header { padding-inline: clamp(24px, calc((100vw - 1080px) / 2), 180px) 24px; gap: 24px; }
  .header-logo { gap: 12px; }
  .header-logo img { width: 56px; height: 56px; }
  .header-logo .logo-text { font-size: 18px; letter-spacing: .08em; line-height: 1.6; }
  .menu-btn { display: none; }

  .header-nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
  .header-nav a {
    display: block; padding: 8px 12px;
    font-size: 14px; letter-spacing: .03em; line-height: 1.9; color: var(--white);
    border-bottom: 2px solid transparent;
  }
  .header-nav a:hover { border-bottom-color: rgba(180,203,0,.5); }
  .header-nav a.is-current { border-bottom-color: var(--accent); }

  .header-right { gap: 20px; }
  .header-tel { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
  .header-tel .tel-number {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--font-en); font-weight: 600; font-size: 22px;
    letter-spacing: .04em; color: var(--white); line-height: 1.3;
  }
  .header-tel .tel-number .icon { width: 18px; height: 18px; }
  .header-tel .tel-note { font-size: 10px; letter-spacing: .03em; line-height: 1.5; color: rgba(255,255,255,.92); }
  .header-tel .tel-note.holiday { color: #D1E0C2; }

  .header-cta-col { gap: 5px; }
  .header-cta-label { font-size: 11px; }
  .header-cta-btn {
    gap: 8px; border-radius: var(--radius-md); padding: 12px 28px;
    font-size: 16px; letter-spacing: .04em; line-height: 1.4; min-width: 0;
  }
  .header-cta-btn .icon { width: 20px; height: 20px; }
}

/* ============================================================
   SPメニュー（ドロワー）
   ============================================================ */
.sp-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--green-deep);
  display: flex; flex-direction: column; justify-content: space-between;
  padding-bottom: 32px;
  opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s;
}
.sp-menu.is-open { opacity: 1; visibility: visible; }
.sp-menu-topbar {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: 24px;
}
.sp-menu-topbar .header-logo { gap: 10px; }
.close-btn { width: 26px; height: 26px; padding: 0; color: var(--white); }
.close-btn svg { display: block; width: 100%; height: 100%; }
.sp-menu-nav { padding: 8px 24px 0; }
.sp-menu-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 20px;
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-weight: 500; font-size: 18px; letter-spacing: .03em; color: var(--white); line-height: 1;
}
.sp-menu-nav .icon { width: 18px; height: 18px; color: var(--white); }
.sp-menu-bottom { display: flex; flex-direction: column; gap: 22px; align-items: center; padding: 8px 24px 0; }
.sp-menu-bottom .btn-assess {
  width: 100%; background: var(--white); color: var(--green-deep);
  border-radius: 8px; padding-block: 15px; gap: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 500; font-size: 16px; letter-spacing: .04em; line-height: 1.4;
}
.sp-menu-bottom .btn-assess .icon { width: 18px; height: 18px; }
.sp-menu-contact { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.sp-menu-contact .tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-en); font-weight: 600; font-size: 22px; color: var(--white); line-height: 1;
}
.sp-menu-contact .tel .icon { width: 18px; height: 18px; }
.sp-menu-contact .hours { font-size: 12px; color: var(--white); opacity: .7; line-height: 1.4; }
@media (min-width: 1000px) { .sp-menu { display: none; } }

/* ============================================================
   FV（ファーストビュー）
   ============================================================ */
.fv { display: grid; grid-template-rows: 200px auto; }
.fv-media { grid-area: 1 / 1; position: relative; overflow: hidden; }
.fv-media picture { display: contents; }
.fv-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.fv-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(245,243,236,.9) 0%,
    rgba(245,243,236,.82) 52%,
    rgba(245,243,236,0) 64%);
}
.fv-head {
  grid-area: 1 / 1; z-index: 1; align-self: start;
  padding: 60px 24px 0;
}
.fv-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .03em; line-height: 1.5; color: var(--green-forest);
}
.fv-eyebrow .eyebrow-line { display: inline-flex; align-items: center; gap: 6px; }
.fv-eyebrow .icon { display: none; width: 16px; height: 16px; color: var(--green-forest); }
.fv-rule { width: 36px; height: 3px; border-radius: 2px; background: var(--accent); }
.fv-title {
  margin-top: 6px;
  font-family: var(--font-mincho); font-weight: 600; font-size: 18px;
  letter-spacing: .06em; line-height: 1.55; color: var(--green-deep);
}
.fv-title .dot { color: var(--accent); }
.fv-body {
  grid-row: 2; background: var(--white);
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  padding: 20px 24px 36px;
}
.fv-lead { font-size: 13px; letter-spacing: .02em; color: var(--text-soft); }
.fv-lead strong { font-weight: 500; color: var(--green-forest); }
.fv-body .btn-assess { width: 100%; max-width: 400px; padding-block: 16px; font-size: 15px; }
.fv-suumo { display: flex; flex-direction: column; gap: 15px; width: 100%; padding-top: 8px; }
.fv-suumo-label { font-size: 12px; letter-spacing: .03em; line-height: 1.5; color: var(--text-soft); }
.fv-suumo .btn-outline { width: 100%; max-width: 400px; padding-block: 12px; font-size: 14px; }
.fv-suumo-note { font-size: 10.5px; letter-spacing: .03em; line-height: 1.5; color: var(--ink-faint); }

@media (min-width: 768px) {
  .fv { grid-template-rows: none; grid-template-columns: minmax(0,1fr); min-height: 615px; }
  .fv-media { grid-area: 1 / 1 / 3 / 2; }
  .fv-head, .fv-body { max-width: 753px; padding-left: clamp(24px, calc((100vw - 1080px) / 2), 180px); }
  .fv-head { align-self: end; padding-top: 56px; padding-right: 40px; }
  .fv-eyebrow { font-size: 14px; flex-direction: column; align-items: flex-start; gap: 23px; }
  .fv-eyebrow .icon { display: inline-block; }
  .fv-rule { width: 44px; }
  .fv-title { margin-top: 23px; font-size: 44px; letter-spacing: .08em; line-height: 1.6; }
  .fv-body { grid-area: 2 / 1; z-index: 1; background: transparent; gap: 23px; padding-top: 23px; padding-bottom: 40px; padding-right: 40px; }
  .fv-lead { font-size: 16px; letter-spacing: .03em; }
  .fv-body .btn-assess { width: auto; padding: 16px 36px; font-size: 18px; }
  .fv-suumo { gap: 12px; padding-top: 0; }
  .fv-suumo-label { font-size: 14px; line-height: 1.9; }
  .fv-suumo-buttons { display: flex; gap: 12px; }
  .fv-suumo .btn-outline { width: auto; padding: 12px 20px; font-size: 15px; white-space: nowrap; }
  .fv-suumo-note { font-size: 12px; line-height: 1.7; }
}
@media (max-width: 767.98px) {
  .fv-suumo-buttons { display: flex; flex-direction: column; gap: 15px; }
}

/* ============================================================
   選ばれる理由
   ============================================================ */
.strengths { background: var(--cream); padding: 48px 0; }
.strengths .cards { display: grid; gap: 24px; margin-top: 24px; }
.reason-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow-card);
  padding: 24px 24px 26px;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.reason-card .en {
  font-family: var(--font-en); font-weight: 600; font-size: 10.5px;
  letter-spacing: .12em; line-height: 1.5; color: var(--green-forest);
}
.reason-card .num {
  font-family: var(--font-num); font-weight: 600; font-size: 32px; line-height: 1.2;
  color: var(--accent);
}
.reason-card h3 {
  font-family: var(--font-mincho); font-weight: 600; font-size: 19px;
  letter-spacing: .02em; line-height: 1.5; color: var(--green-deep);
}
.reason-card .underline { width: 100%; height: 2px; border-radius: 1px; background: var(--accent-line); }
.reason-card p { font-size: 13px; letter-spacing: .01em; line-height: 1.85; color: var(--text-soft); }

@media (min-width: 768px) {
  .strengths { padding: 72px 0 96px; }
  .strengths .cards { grid-template-columns: repeat(3, 1fr); margin-top: 40px; }
  .reason-card { border-radius: var(--radius-lg); padding: 40px 30px; gap: 0; }
  .reason-card .en { font-size: 11px; }
  .reason-card .num { font-size: 36px; margin-top: 3px; }
  .reason-card h3 { font-size: 22px; letter-spacing: .055em; line-height: 1.65; margin-top: 10px; }
  .reason-card .underline { margin-top: 12px; }
  .reason-card p { margin-top: 18px; letter-spacing: .027em; line-height: 24px; }
}

/* ============================================================
   売り方2択
   ============================================================ */
.ways { background: var(--white); padding: 48px 0; }
.ways .sec-lead-block { margin-top: 10px; font-size: 13px; letter-spacing: .01em; color: var(--text-soft); }
.ways .cards { display: grid; gap: 24px; margin-top: 24px; }
.way-card {
  background: var(--cream); border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
}
.way-card .en {
  font-family: var(--font-en); font-weight: 600; font-size: 11px;
  letter-spacing: .14em; line-height: 1.4; color: var(--green-forest);
  display: inline-flex; align-items: center; gap: 8px;
}
.way-card .en::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.way-card h3 {
  font-family: var(--font-mincho); font-weight: 600; font-size: 20px;
  letter-spacing: .04em; line-height: 1.5; color: var(--green-deep);
}
.way-card .catch { font-weight: 500; font-size: 14px; letter-spacing: .02em; line-height: 1.5; color: var(--green-forest); }
.way-card .photo { width: 100%; height: 160px; border-radius: 12px; overflow: hidden; }
.way-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.way-card .desc { font-size: 13.5px; letter-spacing: .01em; line-height: 1.85; color: var(--text-body); }
.fitbox {
  width: 100%; background: var(--tint); border-radius: 6px;
  padding: 10px 14px; line-height: 1.6;
  display: flex; flex-direction: column; gap: 2px; align-items: flex-start;
}
.fitbox .fit-label { font-family: var(--font-mincho); font-weight: 600; font-size: 12px; color: var(--green-deep); }
.fitbox .fit-text { font-size: 12.5px; color: var(--text-soft); }
.ways .sec-cta { display: flex; flex-direction: column; gap: 14px; align-items: center; margin-top: 24px; }
.ways .sec-cta p { font-size: 13px; letter-spacing: .01em; color: var(--text-soft); }
.ways .sec-cta .btn { width: 100%; max-width: 420px; padding-block: 16px; font-size: 14px; letter-spacing: .03em; }

@media (min-width: 768px) {
  .ways { padding: 96px 0; }
  .ways .sec-lead-block { margin-top: 31px; font-size: 16px; letter-spacing: .03em; text-align: center; max-width: 762px; margin-inline: auto; }
  .ways .cards { grid-template-columns: 1fr 1fr; margin-top: 31px; }
  .way-card { border: 1px solid var(--line); padding: 40px 36px; gap: 16px; }
  .way-card h3 { font-size: 22px; letter-spacing: .06em; line-height: 1.6; }
  .way-card .catch { font-size: 16px; letter-spacing: .03em; line-height: 1.9; }
  .way-card .photo { height: 205px; }
  .way-card .desc { font-size: 16px; letter-spacing: .03em; line-height: 1.9; }
  .fitbox { border: 1px solid var(--line); padding: 11px 12px; flex-direction: row; align-items: center; gap: 10px; }
  .fitbox::before { content: ""; width: 3px; height: 20px; border-radius: 2px; background: var(--accent); flex: none; }
  .fitbox .fit-label { font-size: 14px; line-height: 1.9; }
  .fitbox .fit-label::after { content: "　"; }
  .fitbox .fit-text { font-size: 14px; line-height: 1.9; }
  .ways .sec-cta { gap: 24px; margin-top: 31px; }
  .ways .sec-cta p { font-size: 16px; text-align: center; max-width: 640px; }
  .ways .sec-cta .btn { width: auto; padding: 16px 36px; font-size: 18px; letter-spacing: .04em; }
}

/* ============================================================
   売却までの流れ
   ============================================================ */
.flow { background: var(--cream); padding: 48px 0; }
.flow-panel {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-panel);
  padding: 26px 22px; margin-top: 24px;
  display: flex; flex-direction: column; gap: 18px;
}
.flow-step { display: flex; gap: 14px; align-items: flex-start; }
.flow-step + .flow-step { border-top: 1px solid var(--line); padding-top: 18px; }
.step-mark { position: relative; width: 48px; height: 50px; flex: none; }
.step-circle {
  position: absolute; left: 0; top: 6px; width: 44px; height: 44px;
  background: var(--white); border: 1.5px solid var(--green-forest); border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.step-circle .icon { width: 22px; height: 22px; color: var(--green-forest); }
.step-badge {
  position: absolute; left: 22px; top: 0;
  background: var(--green-deep); color: var(--white); border-radius: 9px;
  padding: 3px 7px;
  font-family: var(--font-en); font-weight: 600; font-size: 9px; letter-spacing: .02em; line-height: 1.2;
}
.step-body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.step-body h3 {
  font-family: var(--font-mincho); font-weight: 600; font-size: 16px;
  letter-spacing: .04em; line-height: 1.5; color: var(--green-deep);
}
.step-body p { font-size: 13px; letter-spacing: .02em; line-height: 1.75; color: var(--text-soft); }

@media (min-width: 768px) {
  .flow { padding: 80px 0; }
  .flow-panel {
    flex-direction: row; gap: 16px; align-items: stretch;
    padding: 32px 32px 28px; margin-top: 24px;
  }
  .flow-step {
    flex: 1 1 0; flex-direction: column; align-items: center; gap: 10px;
    background: var(--cream); border: 1px solid var(--line);
    border-radius: var(--radius-md); box-shadow: var(--shadow-panel);
    padding: 16px 14px 14px; min-height: 220px;
    position: relative;
  }
  .flow-step + .flow-step { border-top: 1px solid var(--line); padding-top: 16px; }
  .flow-step:not(:first-child)::before {
    content: ""; position: absolute; left: -13px; top: 42px;
    width: 10px; height: 10px;
    border-top: 1.5px solid var(--green-forest); border-right: 1.5px solid var(--green-forest);
    transform: rotate(45deg);
  }
  .step-mark { width: 56px; height: 60px; }
  .step-circle { top: 4px; width: 56px; height: 56px; border-width: 1.25px; }
  .step-circle .icon { width: 26px; height: 26px; }
  .step-badge { left: 28.5px; top: -2px; border-radius: 15px; padding: 4px 9px; font-size: 14px; line-height: 1.3; }
  .step-body { align-items: center; gap: 10px; }
  .step-body h3 { font-size: 18px; letter-spacing: .06em; line-height: 1.6; }
  .step-body p { font-size: 14px; letter-spacing: .03em; line-height: 1.7; text-align: center; }
}

/* ============================================================
   代表メッセージ
   ============================================================ */
.message { background: var(--white); padding: 48px 0; }
.message .sec-head { align-items: flex-start; text-align: left; }
.message-grid { display: flex; flex-direction: column; gap: 18px; margin-top: 18px; }
.rep-panel {
  position: relative; overflow: hidden;
  background: var(--green-deep); border-radius: 6.4px;
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 11px; align-items: flex-start;
  max-width: 360px;
}
.rep-panel .en {
  font-family: var(--font-en); font-weight: 600; font-size: 10px;
  letter-spacing: .14em; line-height: 1.4; color: var(--white);
}
.rep-panel .accent { width: 35px; height: 2.4px; border-radius: 1.6px; background: var(--accent); }
.rep-panel .name {
  font-family: var(--font-mincho); font-weight: 600; font-size: 18px;
  letter-spacing: .04em; line-height: 1.6; color: var(--white);
}
.rep-panel .license { font-size: 12px; letter-spacing: .03em; line-height: 1.7; color: rgba(255,255,255,.75); margin-top: -6px; }
.rep-panel .bio { font-size: 12.5px; letter-spacing: .03em; line-height: 1.85; color: rgba(255,255,255,.9); }
.rep-panel .deco {
  position: absolute; right: 26px; bottom: 20px; width: 96px; height: 92px;
  opacity: .3; pointer-events: none;
}
.rep-panel .deco img { width: 100%; height: 100%; object-fit: contain; }
.message-copy { display: flex; flex-direction: column; gap: 18px; }
.message-copy p { font-size: 13px; letter-spacing: .02em; color: var(--text-body); }

@media (min-width: 768px) {
  .message { padding: 96px 0; }
  .message-grid {
    display: grid; grid-template-columns: 360px minmax(0,1fr); gap: 40px;
    margin-top: 0; align-items: start;
  }
  .message .sec-head { grid-column: 2; }
  .rep-panel {
    grid-column: 1; grid-row: 1 / span 2;
    border-radius: 8px; padding: 28px 32px; gap: 14px; min-height: 235px;
  }
  .rep-panel .en { font-size: 12px; }
  .rep-panel .accent { width: 44px; height: 3px; border-radius: 2px; }
  .rep-panel .name { font-size: 22px; }
  .rep-panel .license { font-size: 13px; }
  .rep-panel .bio { font-size: 14px; letter-spacing: .03em; line-height: 1.9; }
  .rep-panel .deco { right: 32px; bottom: 24px; width: 120px; height: 115px; }
  .message-copy { grid-column: 2; gap: 8px; margin-top: 8px; }
  .message-copy p { font-size: 14px; letter-spacing: .03em; }
}

/* ============================================================
   お知らせ
   ============================================================ */
.news { background: var(--cream); padding: 40px 0 48px; }
.news-head { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.news-list { margin-top: 18px; }
.news-item {
  display: flex; flex-direction: column; gap: 4px;
  padding-block: 14px; border-top: 1px solid var(--line);
}
.news-list .news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item .date {
  font-family: var(--font-en); font-weight: 500; font-size: 12px;
  letter-spacing: .06em; line-height: 1.4; color: var(--text-soft);
}
.news-item .title { font-size: 14px; letter-spacing: .02em; line-height: 1.7; color: var(--text-body); }
.news-more {
  display: inline-block; margin-top: 18px;
  font-size: 13px; letter-spacing: .03em; line-height: 1.5; color: var(--green-forest);
}
.news-more:hover { text-decoration: underline; }

@media (min-width: 768px) {
  .news { padding: 96px 0; }
  .news-head {
    flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 8px;
  }
  .news-head .sec-head { align-items: flex-start; text-align: left; }
  .news-more { margin-top: 0; font-size: 14px; line-height: 1.9; }
  .news-list { margin-top: 32px; }
  .news-item {
    flex-direction: row; align-items: center; gap: 20px;
    padding: 18px 4px; border-top: 0; border-bottom: 1px solid var(--line);
  }
  .news-list { border-top: 1px solid var(--line); }
  .news-item .date { font-size: 14px; width: 110px; flex: none; }
  .news-item .title { font-size: 16px; letter-spacing: .03em; }
}

/* ============================================================
   CTAバンド
   ============================================================ */
.cta-band { background: var(--green-deep); padding: 40px 24px 44px; }
.cta-band-inner { display: flex; flex-direction: column; gap: 16px; align-items: center; max-width: 1080px; margin-inline: auto; }
.cta-band h2 {
  font-family: var(--font-mincho); font-weight: 600; font-size: 18px;
  letter-spacing: .04em; line-height: 1.7; text-align: center; color: var(--white);
}
.cta-band .label { font-weight: 500; font-size: 13px; letter-spacing: .02em; line-height: 1.4; color: var(--white); }
.cta-band .btn { width: 100%; max-width: 420px; padding-block: 15px; font-size: 15px; letter-spacing: .03em; }

@media (min-width: 768px) {
  .cta-band { padding: 51px 24px; }
  .cta-band-inner { gap: 44px; }
  .cta-band h2 { font-size: 28px; letter-spacing: .08em; line-height: 1.6; }
  .cta-band .cta-actions { display: flex; flex-direction: column; gap: 8px; align-items: center; }
  .cta-band .label { font-size: 16px; }
  .cta-band .btn { width: auto; padding: 16px 36px; font-size: 18px; letter-spacing: .03em; line-height: 1.9; }
}
.cta-band .cta-actions { display: flex; flex-direction: column; gap: 8px; align-items: center; width: 100%; }

/* ============================================================
   フッター
   ============================================================ */
.site-footer { background: var(--green-deep); color: var(--white); }
.footer-inner {
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
  padding: 40px 24px 32px;
}
.footer-logo { width: 94px; height: 90px; }
.footer-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-address { font-size: 12.5px; letter-spacing: .02em; color: rgba(255,255,255,.8); }
.footer-nav { display: flex; flex-direction: column; gap: 6px; }
.footer-nav a { font-size: 13px; letter-spacing: .03em; line-height: 1.9; color: rgba(255,255,255,.85); }
.footer-nav a:hover { text-decoration: underline; }
.footer-copyright {
  border-top: 1px solid var(--line-on-green);
  display: flex; align-items: center; justify-content: center;
  padding-block: 16px;
}
.footer-copyright p {
  font-family: var(--font-en); font-weight: 500; font-size: 11px;
  letter-spacing: .08em; color: rgba(255,255,255,.6);
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row; gap: 48px; align-items: flex-start;
    max-width: 1128px; margin-inline: auto; width: 100%;
    padding: 56px 24px 48px;
  }
  .footer-brand { flex: 1 1 0; display: flex; flex-direction: column; gap: 16px; }
  .footer-logo { width: 136px; height: 130px; }
  .footer-address { font-size: 14px; letter-spacing: .03em; color: var(--white); }
  .footer-nav { gap: 10px; }
  .footer-nav a { font-size: 14px; color: var(--white); }
  .footer-copyright { padding-block: 20px; height: 60px; }
  .footer-copyright p { font-size: 12px; color: var(--white); }
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }


/* ============================================================
   下層ページ共通（PageHero）
   ============================================================ */
.page-hero {
  background: var(--green-deep);
  display: flex; flex-direction: column; gap: 10px;
  padding: 44px 24px 48px;
}
.page-hero .eyebrow {
  font-family: var(--font-en); font-weight: 600; font-size: 11px;
  letter-spacing: .14em; line-height: 1.4; color: #A8BF00;
}
.page-hero h1 {
  font-family: var(--font-mincho); font-weight: 600; font-size: 24px;
  letter-spacing: .04em; line-height: 1.5; color: var(--white);
}
@media (min-width: 768px) {
  .page-hero {
    gap: 14px;
    padding: 72px clamp(24px, calc((100vw - 1080px) / 2), 180px);
  }
  .page-hero .eyebrow { font-size: 12px; }
  .page-hero h1 { font-size: 34px; line-height: 1.4; }
}

/* ============================================================
   Contact（お問い合わせ・無料査定フォーム）
   ============================================================ */
.contact-content { padding: 40px 0 64px; }
.container-narrow { max-width: 848px; margin-inline: auto; padding-inline: 24px; }
.contact-intro { font-size: 13.5px; letter-spacing: .02em; line-height: 1.9; color: var(--text-soft); }

.contact-form { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }
.form-panel {
  background: var(--cream);
  display: flex; flex-direction: column; gap: 26px;
  padding: 26px 16px 30px;
}
.form-sec-title {
  font-family: var(--font-mincho); font-weight: 600; font-size: 18px;
  letter-spacing: .02em; line-height: 1.4; color: var(--green-deep);
}
.form-sec-title:not(:first-child) { margin-top: 10px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-label { display: flex; gap: 10px; align-items: center; }
.field-label .label-text { font-weight: 700; font-size: 14px; line-height: 1.4; color: #333D38; }
.req-badge {
  background: #B84233; color: var(--white);
  font-weight: 700; font-size: 10.5px; line-height: 1.4;
  border-radius: 4px; padding: 2px 8px; flex: none;
}

.input {
  width: 100%; height: 48px;
  background: var(--white); border: 1px solid #CCD4C9; border-radius: 8px;
  padding: 0 16px; font: inherit; font-size: 14px; color: #333D38;
}
.input::placeholder { color: #9EA8A1; }
/* 自由記入欄（その他ご要望） */
.input.textarea {
  height: auto; min-height: 132px; padding: 14px 16px;
  line-height: 1.9; resize: vertical;
}
.input:focus { outline: 2px solid transparent; border-color: var(--green-forest); box-shadow: 0 0 0 2px rgba(28,107,69,.15); }

.choice-box {
  background: var(--white); border: 1px solid #CCD4C9; border-radius: 8px;
  padding: 13px 16px;
  display: flex; flex-wrap: wrap; gap: 10px 24px;
}
.choice {
  display: inline-flex; gap: 8px; align-items: center;
  font-size: 14px; line-height: 1.45; color: #333D38; cursor: pointer;
}
.choice input {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; margin: 0; flex: none;
  background: var(--white); border: 1.5px solid #00472F; border-radius: 3px;
  display: grid; place-items: center; cursor: pointer;
}
.choice input:checked { background: var(--green-deep); border-color: var(--green-deep); }
.choice input:checked::after {
  content: ""; width: 9px; height: 5px; margin-top: -2px;
  border-left: 2px solid var(--white); border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
.choice input:focus-visible { outline: 2px solid var(--green-forest); outline-offset: 2px; }

.err-msg { display: none; font-size: 12px; line-height: 1.5; color: #B84233; }
.field.is-error .err-msg { display: block; }
.field.is-error .input,
.field.is-error .choice-box { border-color: #B84233; }

.form-note { font-size: 12.5px; letter-spacing: .01em; line-height: 1.8; color: var(--text-soft); text-align: center; }
.submit-btn {
  display: block; width: 100%; max-width: 360px; margin-inline: auto;
  background: var(--green-deep); color: var(--white);
  border-radius: var(--radius-md); padding: 18px 10px;
  font-weight: 500; font-size: 16px; line-height: 1.4; text-align: center;
  transition: background-color .25s ease, box-shadow .25s ease, opacity .2s ease;
}
@media (hover: hover) {
  .submit-btn:hover { background: var(--green-forest); box-shadow: 0 6px 18px rgba(0, 60, 36, .18); }
}
.submit-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.submit-btn[disabled] { opacity: .6; cursor: default; }

/* hidden属性を確実に効かせる（display指定のある要素対策） */
[hidden] { display: none !important; }

/* 送信完了 */
.form-done { display: none; text-align: center; padding: 72px 16px 80px; background: var(--cream); border-radius: 12px; }
.form-done.is-visible { display: block; }
.form-done h2 {
  font-family: var(--font-mincho); font-weight: 600; font-size: 20px;
  letter-spacing: .04em; color: var(--green-deep);
}
.form-done p { margin-top: 14px; font-size: 14px; line-height: 1.9; color: var(--text-soft); }
.form-done .btn { margin-top: 24px; padding: 12px 28px; font-size: 14px; }

/* ハニーポット（スパム対策） */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

@media (min-width: 768px) {
  .contact-content { padding: 80px 0 104px; }
  .contact-intro { font-size: 15px; letter-spacing: .02em; }
  .contact-form { gap: 40px; margin-top: 40px; }
  .form-panel { gap: 40px; padding: 40px 44px 44px; }
  .form-sec-title { font-size: 21px; }
  .field-label .label-text { font-size: 14.5px; }
  .choice-box { gap: 12px 32px; min-height: 48px; align-items: center; }
}

/* ============================================================
   News（お知らせ 一覧・詳細）
   ============================================================ */
.news-item-link { display: flex; flex-direction: column; gap: 4px; width: 100%; }
.news-item-link:hover .title { text-decoration: underline; }
@media (min-width: 768px) {
  .news-item-link { flex-direction: row; align-items: center; gap: 20px; }
}
.news-page-content { padding: 40px 0 64px; }
.news-page-content .news-list { margin-top: 0; }
.news-empty { padding-block: 24px; font-size: 14px; color: var(--text-soft); }

.article-head { display: flex; flex-direction: column; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.article-date {
  font-family: var(--font-en); font-weight: 500; font-size: 13px;
  letter-spacing: .06em; color: var(--text-soft);
}
.article-title {
  font-family: var(--font-mincho); font-weight: 600; font-size: 21px;
  letter-spacing: .04em; line-height: 1.6; color: var(--green-deep);
}
.article-body { padding-top: 24px; font-size: 14px; letter-spacing: .02em; line-height: 2; color: var(--text-body); }
.article-body p { margin: 0 0 1.2em; }
.article-body p:last-child { margin-bottom: 0; }
.article-body h2, .article-body h3 {
  margin: 1.8em 0 .8em; font-weight: 700; color: var(--green-deep); line-height: 1.6;
}
.article-body h2 { font-size: 17px; }
.article-body h3 { font-size: 15.5px; }
.article-body a { color: var(--green-forest); text-decoration: underline; }
.article-body ul { list-style: disc; padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body ol { list-style: decimal; padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body img { max-width: 100%; height: auto; border-radius: 8px; }
.article-body table { max-width: 100%; }
.article-body iframe, .article-body video { max-width: 100%; }
.article-back { margin-top: 40px; text-align: center; }
.article-back .btn { padding: 12px 28px; font-size: 14px; }
@media (min-width: 768px) {
  .news-page-content { padding: 80px 0 104px; }
  .article-head { gap: 12px; padding-bottom: 24px; }
  .article-date { font-size: 14px; }
  .article-title { font-size: 26px; }
  .article-body { padding-top: 32px; font-size: 15px; }
  .article-back { margin-top: 56px; }
}

/* ============================================================
   Company（会社概要）
   ============================================================ */
.company-content { padding: 40px 0 64px; }
.c-table { border: 1px solid #E3E7E0; border-radius: 12px; overflow: hidden; }
.c-row { border-bottom: 1px solid #E3E7E0; }
.c-row:last-child { border-bottom: 0; }
.c-th {
  background: var(--cream);
  padding: 10px 16px;
  font-weight: 700; font-size: 14px; line-height: 1.5; color: var(--green-forest);
}
.c-td { padding: 12px 16px 14px; font-size: 14px; line-height: 1.8; color: #333D38; }
.c-td .c-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.c-td .c-list li { padding-left: 1em; text-indent: -1em; }
.c-td .c-list li::before { content: "・"; color: var(--green-forest); }
.c-td .c-link { color: var(--green-forest); text-decoration: underline; text-underline-offset: 3px; }
@media (hover: hover) {
  .c-td .c-link:hover { color: var(--green-deep); }
}

.access { padding-top: 48px; display: flex; flex-direction: column; gap: 18px; }
.access h2 {
  font-family: var(--font-mincho); font-weight: 600; font-size: 20px;
  letter-spacing: .06em; line-height: 1.4; color: var(--green-deep);
}
.access-lines { display: flex; flex-direction: column; gap: 10px; }
.access-line { font-size: 14px; line-height: 1.7; color: #333D38; }
.access-line .a-label { font-weight: 700; color: var(--green-forest); margin-right: 12px; white-space: nowrap; }
.map { margin-top: 8px; background: var(--cream); }
.map iframe { display: block; width: 100%; height: 300px; border: 0; }

@media (min-width: 768px) {
  .company-content { padding: 88px 0 104px; }
  .c-row { display: flex; }
  .c-th { width: 240px; flex: none; padding: 18px 20px 18px 28px; font-size: 15px; }
  .c-td { flex: 1; padding: 18px 28px; font-size: 15px; }
  .access { padding-top: 72px; gap: 24px; }
  .access h2 { font-size: 26px; }
  .access-line { font-size: 15px; }
  .map iframe { height: 420px; }
}

/* ============================================================
   Privacy（個人情報保護方針）
   ============================================================ */
.privacy-content { padding: 40px 0 64px; }
.privacy-inner { display: flex; flex-direction: column; gap: 22px; }
.privacy-content p { font-size: 14px; letter-spacing: .01em; line-height: 2; color: #333D38; }
.privacy-content h2 {
  font-weight: 700; font-size: 16px; letter-spacing: .01em; line-height: 2;
  color: var(--green-forest); font-family: var(--font-sans);
}
.dot-list { display: flex; flex-direction: column; gap: 14px; }
.dot-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.8; color: #333D38; }
.dot-list li::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex: none; margin-top: 9px;
}
@media (min-width: 768px) {
  .privacy-content { padding: 88px 0 104px; }
  .privacy-inner { gap: 28px; }
  .privacy-content p { font-size: 15px; }
  .privacy-content h2 { font-size: 17px; }
  .dot-list li { font-size: 15px; }
}

/* ============================================================
   モーション（スクロール連動のふわっと表示）
   - 対象指定は assets/js/motion.js 側で一括管理
   - JS無効時は適用されない（何も隠れずそのまま表示）
   - prefers-reduced-motion時は「動きなし・フェードのみ」に切り替わる
   ============================================================ */
:root {
  --reveal-y: 46px;
  --reveal-duration: 1s;
  --reveal-ease: cubic-bezier(.22, 1, .36, 1);
}

.js-motion .js-reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition:
    opacity var(--reveal-duration) ease var(--reveal-delay, 0s),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0s),
    translate .5s var(--reveal-ease),
    box-shadow .5s ease;
  will-change: opacity, transform;
}
.js-motion .js-reveal.is-inview { opacity: 1; transform: none; }
.js-motion .page-hero h1.js-reveal { --reveal-delay: .08s; }

.js-motion .js-reveal-group > * {
  opacity: 0;
  transform: translateY(var(--reveal-y));
  transition:
    opacity var(--reveal-duration) ease var(--reveal-delay, 0s),
    transform var(--reveal-duration) var(--reveal-ease) var(--reveal-delay, 0s),
    translate .5s var(--reveal-ease),
    box-shadow .5s ease;
  will-change: opacity, transform;
}
.js-motion .js-reveal-group.is-inview > * { opacity: 1; transform: none; }
.js-motion .js-reveal-group > *:nth-child(2) { --reveal-delay: .12s; }
.js-motion .js-reveal-group > *:nth-child(3) { --reveal-delay: .24s; }
.js-motion .js-reveal-group > *:nth-child(4) { --reveal-delay: .36s; }
.js-motion .js-reveal-group > *:nth-child(5) { --reveal-delay: .48s; }
.js-motion .js-reveal-group > *:nth-child(6) { --reveal-delay: .60s; }
.js-motion .js-reveal-group > *:nth-child(n+7) { --reveal-delay: .72s; }

/* 見出しブロックの文字: 本文より少し控えめな移動量で、順番に立ち上げる */
.js-motion .sec-head.js-reveal-group > *,
.js-motion .fv-head.js-reveal-group > * { --reveal-y: 30px; }
.js-motion .sec-head.js-reveal-group > *:nth-child(2) { --reveal-delay: .14s; }
.js-motion .sec-head.js-reveal-group > *:nth-child(3) { --reveal-delay: .28s; }

/* FV写真: 読み込み時にゆっくり寄りが引く(ズームアウト) */
.js-motion .fv-media img {
  animation: fv-settle 1.8s var(--reveal-ease) both;
}
@keyframes fv-settle {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

/* カード: ホバーでそっと浮く（ホバーが使える端末のみ） */
@media (hover: hover) {
  /* 持ち上げには transform ではなく translate を使う。
     transform はスクロール表示の演出が使っているため、
     同じプロパティを奪い合うと時間差(--reveal-delay)が消える */
  .reason-card, .way-card {
    transition: translate .5s var(--reveal-ease), box-shadow .5s ease;
  }
  .reason-card:hover, .way-card:hover {
    translate: 0 -5px;
    box-shadow: 0 14px 30px rgba(0, 60, 36, .12);
  }
  .news-item-link .title { transition: color .3s ease; }
  .news-item-link:hover .title { color: var(--green-forest); }

  /* ボタン: ホバーで配色が変わる */
  .btn-primary:hover {
    background: var(--green-forest); border-color: var(--green-forest);
    box-shadow: 0 6px 18px rgba(0, 60, 36, .18);
  }
  .btn-outline:hover {
    background: var(--green-deep); color: var(--white); border-color: var(--green-deep);
    box-shadow: 0 6px 18px rgba(0, 60, 36, .18);
  }
  .btn-inverse:hover { background: var(--cream); }

  /* ヘッダーの無料査定ボタン: 白 → アクセントの黄緑 */
  .header-cta-btn:hover {
    background: var(--accent); color: var(--green-deep);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18);
  }

  .news-more { transition: color .25s ease; }
  .news-more:hover { color: var(--accent-line); }
}

/* キーボード操作時のフォーカス表示（アクセシビリティ） */
.btn:focus-visible,
.header-cta-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* OSの「視差効果を減らす」がONのとき：
   平行移動・ズームは完全に止め、体に負担のないフェードだけ残す */
@media (prefers-reduced-motion: reduce) {
  .js-motion .js-reveal,
  .js-motion .js-reveal-group > * {
    transform: none !important;
    transition: opacity .45s ease !important;
    transition-delay: 0s !important;
  }
  .js-motion .fv-media img { animation: none !important; }
}

/* ============================================================
   タブレット・大型スマホ（540〜767px）
   このサイトのブレークポイントは768pxのみだったため、600〜767pxでは
   スマホ用の全幅ボタンがそのまま引き伸ばされ、画面幅の9割超（767pxで719px）
   まで広がっていた。この帯だけPC同様の「内容に応じた幅」に切り替える。
   ============================================================ */
@media (min-width: 540px) and (max-width: 767.98px) {
  .fv-body .btn-assess {
    width: auto; max-width: none; padding: 16px 36px; font-size: 17px;
  }
  .fv-suumo-buttons { display: flex; flex-direction: row; gap: 12px; }
  .fv-suumo .btn-outline {
    width: auto; max-width: none; padding: 12px 14px; font-size: 14px; white-space: nowrap;
  }
  .ways .sec-cta .btn {
    width: auto; max-width: none; padding: 16px 36px; font-size: 17px;
  }
  .cta-band .btn {
    width: auto; max-width: none; padding: 16px 36px; font-size: 17px;
  }
}
