/*
Theme Name:  8market Child
Template:    8market
Description: 8market の子テーマ。goodroom スタイルへのUIUXカスタマイズ。
Version:     3.0.0
Author:      不動産情報サイト
*/

/* ==========================================================
   物件詳細ページ: ローンシミュレータ以下の関連物件リストを非表示
   fudo_widget_syousai（関連物件表示ウィジェット）を全非表示
   ========================================================== */
.single-fudo .widget_fudo_syousai,
.single-fudo [id^="fudo_syousai"],
.single-fudo [class*="fudo_syousai"] { display: none !important; }

/* ==========================================================
   カスタムナビゲーションバー（child-nav）
   ========================================================== */
.child-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s ease;
}
.child-nav.is-scrolled {
  box-shadow: 0 2px 20px rgba(45,106,79,.10);
}
.child-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
/* ロゴ */
.child-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}
.child-nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en, 'DM Sans'), sans-serif;
  font-size: 17px;
  font-weight: 500;
}
.child-nav__logo-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1.5;
  text-decoration: none;
}
.child-nav__logo-text em {
  font-style: normal;
  color: var(--accent);
  text-decoration: none;
}
@media (max-width: 768px) {
  .child-nav__logo {
    flex-shrink: 1;
    min-width: 0;
  }
  .child-nav__logo-text {
    font-size: 11px;
    letter-spacing: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* デスクトップメニュー */
.child-nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.child-nav__link {
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  text-decoration: none;
  border-radius: 6px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.child-nav__link:hover,
.child-nav__link--active {
  color: var(--accent);
  background: var(--accent-lt);
}
.child-nav__btn {
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: var(--accent);
  border-radius: 8px;
  text-decoration: none;
  margin-left: 8px;
  transition: background .2s;
  white-space: nowrap;
}
.child-nav__btn:hover { background: var(--accent-mid); color: #fff; }
.child-nav__btn--outline {
  color: var(--accent);
  background: transparent;
  border: 1.5px solid var(--accent);
}
.child-nav__btn--outline:hover { background: var(--accent-lt); color: var(--accent); }
/* ハンバーガー */
.child-nav__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 8px;
  background: none;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-left: auto;
}
.child-nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s;
}
/* ハンバーガーは常に透明背景（グローバルな button / button:hover の背景色ルールに負けないよう明示的に上書き） */
.child-nav__hamburger:hover,
.child-nav__hamburger:focus,
.child-nav__hamburger:active {
  background: none;
  opacity: 1;
}
.child-nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.child-nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.child-nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* モバイルドロワー */
.child-nav__drawer {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 8px 0 16px;
}
.child-nav__drawer.is-open { display: flex; }
.child-nav__drawer-link {
  padding: 13px 24px;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s, background .2s;
}
.child-nav__drawer-link:hover { color: var(--accent); background: var(--accent-pale); }
.child-nav__drawer-link--accent {
  color: var(--accent);
  font-weight: 600;
}
/* ページ本体を nav 分だけ下げる */
body { padding-top: 60px !important; }
/* モバイル */
@media (max-width: 768px) {
  .child-nav__menu     { display: none; }
  .child-nav__hamburger { display: flex; }
  .child-nav__drawer   { display: none; }
  .child-nav__drawer.is-open { display: flex; }
}

/* ==========================================================
   Google Fonts
   ========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=DM+Sans:wght@300;400;500&display=swap');

/* ==========================================================
   デザイントークン
   ========================================================== */
:root {
  --bg:           #f4f7f5;
  --surface:      #ffffff;
  --border:       #e2ece7;
  --text:         #1a1a1a;
  --text-sub:     #7a8c84;
  --text-mute:    #b0bfb8;
  --accent:       #2d6a4f;
  --accent-mid:   #3d8862;
  --accent-lt:    #e4f2ec;
  --accent-pale:  #f0f8f4;
  --dark-green:   #0c1e12;
  --mid-green:    #1a3d2b;
  --dark:         #1a1a1a;
  --hero-bg:      #0c1e12;
  --font:         'Noto Sans JP', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
  --font-en:      'DM Sans', sans-serif;
  --radius:       8px;
  --shadow:       0 2px 16px rgba(45,106,79,.08);
  --shadow-lg:    0 8px 32px rgba(45,106,79,.12);
  --section-pad:  88px;
}

/* ==========================================================
   ベース
   ========================================================== */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .04em;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .7; text-decoration: none; color: var(--accent); }
ul li a, ol li a { color: var(--text); }
ul li a:hover, ol li a:hover { color: var(--accent); opacity: 1; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  color: var(--text);
  font-weight: 300;
  letter-spacing: .02em;
  margin-bottom: 12px;
}
h1 { font-size: 26px; line-height: 1.4; }
h2 { font-size: 20px; line-height: 1.4; margin: 16px 0 20px; padding: 0 0 12px; border-bottom: 1px solid var(--border); background: none; }
h3 { font-size: 17px; font-weight: 400; margin: 12px 0 16px; padding: 0; border-bottom: none; }
h4 { font-size: 14px; font-weight: 500; padding: 0 0 0 10px; border-left: 3px solid var(--accent); }

/* ==========================================================
   ヘッダー
   ========================================================== */
/* テーマのSEO用h1オプション（header-h1）は非表示 */
.header-h1 { display: none !important; }

/* #site-branding のタイトルサイズ（親テーマは20px固定） */
#sticky-header #site-branding #site-title { font-size: 18px; }
#sticky-header #site-branding #site-title a { font-size: inherit; color: var(--text); }

#masthead, .site-header {
  background-color: var(--surface);
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}
/* 親テーマのヘッダーを完全に非表示（child-navで代替） */
#masthead,
.site-header,
#sticky-header {
  display: none !important;
}
#sticky-header .wrap {
  display: flex;
  align-items: center;
  padding: 0 24px;
  height: 64px;
  max-width: 1280px;
  margin: 0 auto;
}
h3.nav-site-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  margin: 0;
  flex-shrink: 0;
}
h3.nav-site-title a { color: var(--text); font-weight: 500; }
h3.nav-site-title a:hover { opacity: .7; }

.header-navigation-wrap {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0;
}
#site-navigation { background: none; box-shadow: none; border: none; }
#primary-menu.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  background: none;
}
#primary-menu.nav-menu > li > a {
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  padding: 8px 16px;
  display: block;
  transition: color .2s;
}
#primary-menu.nav-menu > li > a:hover,
#primary-menu.nav-menu > li.current-menu-item > a {
  color: var(--accent);
  background: none;
  opacity: 1;
}
#primary-menu .sub-menu {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
}
#primary-menu .sub-menu li a { color: var(--text); font-size: 13px; padding: 8px 20px; }
.menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle .line-one,
.menu-toggle .line-two,
.menu-toggle .line-three {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all .3s;
}
.info, .info-bottom { font-size: 13px; color: var(--text-sub); margin-left: 16px; }
.info strong { color: var(--text); font-weight: 500; }
.vivid { color: var(--accent); }
.custom-header { position: relative; }
.slider-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,.45));
}
.slider-title { color: #fff; font-size: 28px; font-weight: 300; }
.slider-text  { color: rgba(255,255,255,.85); font-size: 14px; }

/* ==========================================================
   PC ヘッダー — ダークグリーン統一（769px以上）
   ヒーロー・メリットセクションと連続するデザインにする
   ========================================================== */
@media (min-width: 769px) {
  /* おすすめ物件: PC は3列1行（4件目以降を非表示） */
  .site-section--featured .property-grid .prop-featured-card:nth-child(n+4) {
    display: none !important;
  }
  /* おすすめPC: align-items はデフォルト stretch（行高さ揃え） */

  /* #page の box-shadow・余白を除去、ヒーロー背景が透けないよう透明に */
  #page {
    box-shadow: none !important;
    background-color: transparent !important;
  }
  /* body 背景: TOPページはダークグリーン（ヒーロー+メリットが透けて見えるため） */
  body.home { background-color: var(--dark-green) !important; }
  /* 他ページは通常の背景色 */
  body:not(.home) { background-color: var(--bg); }

  /* ヘッダー背景をダークグリーンに */
  #masthead, .site-header {
    background-color: var(--dark-green) !important;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }
  #sticky-header {
    background-color: var(--dark-green) !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }

  /* サイトタイトル — 白文字 */
  #sticky-header #site-branding #site-title a,
  #sticky-header #site-branding #site-title {
    color: rgba(255,255,255,.9) !important;
  }
  #sticky-header #site-branding #site-title a:hover { opacity: .75; color: #fff !important; }

  /* ナビゲーションリンク — 白 */
  #primary-menu.nav-menu > li > a {
    color: rgba(255,255,255,.82) !important;
  }
  #primary-menu.nav-menu > li > a:hover,
  #primary-menu.nav-menu > li.current-menu-item > a {
    color: #fff !important;
    background: none !important;
    opacity: 1 !important;
  }
  /* サブメニューは白背景に戻す */
  #primary-menu .sub-menu { background: var(--surface) !important; }
  #primary-menu .sub-menu li a { color: var(--text) !important; }

  /* ハンバーガーライン — 白 */
  .menu-toggle .line-one,
  .menu-toggle .line-two,
  .menu-toggle .line-three { background: rgba(255,255,255,.85) !important; }

  /* h3.nav-site-title（右のロゴ重複）を非表示 */
  h3.nav-site-title { display: none !important; }

  /* ── ヘッダー↔ヒーロー間の白いすき間を完全除去 ── */
  /* sticky ラッパー（jQuery.sticky生成）の背景・ボーダーをリセット */
  #sticky-header-sticky-wrapper {
    background: transparent !important;
    border: none !important;
    margin-bottom: 0 !important;
  }
  /* masthead 自体の余白をゼロに */
  #masthead {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  /* ヒーローのtop余白ゼロ */
  .site-hero { margin-top: 0 !important; }
  /* サイトタイトルのボーダー・アンダーライン除去 */
  #site-branding, #site-title,
  #site-branding h1, #site-branding h2, #site-branding p {
    border: none !important;
    border-bottom: none !important;
    text-decoration: none !important;
    margin-bottom: 0 !important;
  }
  #site-title a {
    text-decoration: none !important;
    border: none !important;
  }
  /* #sticky-header の高さ・パディング統一（親テーマ75pxを上書き） */
  #sticky-header {
    height: auto !important;
    padding-bottom: 0 !important;
  }
}

/* ==========================================================
   ヒーロー（TOPビジュ + 検索エリア）
   ========================================================== */
.site-hero {
  background:
    linear-gradient(160deg, #0c1e12 0%, #1a3d2b 55%, #1f4d35 100%);
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 88px 24px 80px;
  position: relative;
  overflow: hidden;
  /* 全幅を明示的に保証 */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ドットパターン */
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* 下部グラデーション */
.site-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(10,28,16,.5));
  pointer-events: none;
}

.site-hero__inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.site-hero__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  margin: 0 0 28px;
}

.site-hero__headline {
  font-size: clamp(28px, 5.5vw, 48px);
  font-weight: 200;
  color: #fff;
  letter-spacing: .04em;
  line-height: 1.55;
  margin: 0 0 20px;
  padding: 0;
  border: none;
  background: none;
}

.site-hero__lead {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 2;
  margin: 0 0 44px;
  letter-spacing: .04em;
}

/* 検索バー */
.site-hero__search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.96);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  max-width: 520px;
  margin: 0 auto 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
  gap: 10px;
}
.site-hero__search-icon {
  color: #999;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.site-hero__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
  color: var(--text);
  font-family: var(--font);
  padding: 0;
  min-width: 0;
}
.site-hero__search-input::placeholder { color: #bbb; }
.site-hero__search-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, opacity .2s;
  flex-shrink: 0;
  font-family: var(--font);
}
.site-hero__search-btn:hover { background: #255a42; opacity: 1; }

/* 詳細検索リンク */
.site-hero__detail-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.site-hero__detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 40px;
  padding: 10px 28px;
  transition: background .2s, color .2s, border-color .2s;
}
.site-hero__detail-btn:hover {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.7);
  opacity: 1;
}
.site-hero__detail-btn svg { flex-shrink: 0; }

/* クイックフィルタ チップ */
/* 売買 / 賃貸 タブ (2026-07-15) */
.site-hero__type-tabs {
  display: flex;
  gap: 4px;
  justify-content: center;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 20px;
}
.site-hero__type-tab {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.65);
  font-family: var(--font, 'Noto Sans JP', sans-serif);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: .02em;
}
.site-hero__type-tab:hover {
  color: #fff;
  background: rgba(255,255,255,.08);
}
.site-hero__type-tab.is-active {
  background: rgba(255,255,255,.18);
  color: #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}

.site-hero__chips {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.site-hero__chip {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.8);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s;
  display: inline-block;
}
.site-hero__chip:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  opacity: 1;
}

/* ==========================================================
   コンテンツエリア
   ========================================================== */
.site-content-contain { padding: 0; }
#content.site-content { padding: 0; }
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.page-header { display: none; }
h1.entry-title, h1.page-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-sub);
  letter-spacing: .06em;
  margin: 0;
  border: none;
  padding: 0;
  background: none;
}

/* ==========================================================
   セクション共通システム
   ========================================================== */
.site-section {
  padding: var(--section-pad) 0;
  position: relative;
  width: 100%;
  display: block;
  align-self: stretch;   /* flex 親コンテナ内で幅を伸ばす */
  box-sizing: border-box;
}

/* おすすめ物件グリッド: align-items はデフォルト stretch（行高さ揃え） */

/* 全セクション — 白に統一 */
.site-section--featured,
.site-section--cta,
.site-section--columns,
.site-section--news {
  background: #ffffff !important;
}

/* コンテンツエリアは白 */
.site-content-contain, #content, .site-content,
body.archive #primary, body.search #primary {
  background: #ffffff !important;
}

/* セクション間の区切りライン */
.site-section--cta,
.site-section--columns,
.site-section--news {
  border-top: 1px solid var(--border);
}

/* ==========================================================
   物件一覧 CTA バナー（TOPページ）
   ========================================================== */
.prop-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--accent) 100%);
  border-radius: 12px;
  padding: 40px 48px;
  flex-wrap: wrap;
}
.prop-cta__text { flex: 1; min-width: 200px; }
.prop-cta__count {
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,.9);
  letter-spacing: .04em;
  margin: 0 0 8px;
  line-height: 1.3;
}
.prop-cta__count strong {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}
.prop-cta__sub {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin: 0;
  letter-spacing: .04em;
}
.prop-cta__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.prop-cta__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: .08em;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
}
.prop-cta__btn:hover { opacity: .88; transform: translateY(-1px); }
.prop-cta__btn--primary {
  background: #ffffff;
  color: var(--accent) !important;
  font-weight: 500;
}
.prop-cta__btn--secondary {
  background: transparent;
  color: rgba(255,255,255,.9) !important;
  border: 1px solid rgba(255,255,255,.4);
}

@media (max-width: 768px) {
  .prop-cta { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .prop-cta__count { font-size: 18px; }
  .prop-cta__count strong { font-size: 22px; }
  .prop-cta__btns { width: 100%; flex-wrap: wrap; }
  .prop-cta__btn { flex: 1 1 calc(50% - 6px); text-align: center; }
  .prop-cta__btn--secondary { flex: 1 1 100%; }
}

.site-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.site-section__empty {
  color: var(--text-sub);
  font-size: 14px;
  text-align: center;
  padding: 40px 0;
}

/* セクションヘッド */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
/* 緑アクセントライン */
.section-head::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.section-head__text { line-height: 1; }
.section-head__en {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--accent);
  text-transform: uppercase;
  background: var(--accent-lt);
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.section-head__ja {
  font-size: 24px;
  font-weight: 300;
  color: var(--text);
  letter-spacing: .05em;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
.section-head__more {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .06em;
  text-decoration: none;
  transition: color .2s, background .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--accent);
  padding: 7px 16px;
  border-radius: 20px;
}
.section-head__more:hover {
  background: var(--accent);
  color: #fff;
  opacity: 1;
}
.section-head__more span { display: inline-block; transition: transform .2s; }
.section-head__more:hover span { transform: translateX(2px); }

/* コラムセクション — ライト背景のため上書き不要（標準スタイルを使用） */

/* ==========================================================
   物件グリッド（#list_simplepage + .property-grid 共通）
   ========================================================== */
#list_simplepage {
  display: grid;                          /* !important 外す → JS の display:none が効く */
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
.property-grid {
  display: grid !important;              /* 動的生成グリッドは !important を維持 */
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

/* 物件カード
 * 親テーマ #list_simplepage .hentry { display:inline-grid; width:47%; } (詳細度110) を上書きするため
 * #list_simplepage .hentry（同詳細度110・子テーマが後勝ち）と article 両方を指定 */
#list_simplepage .hentry,
.property-grid article {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  position: relative;
  margin: 0;
  width: 100%;          /* 親テーマの width:47% を上書き */
  padding-bottom: 52px;
  display: block;       /* 親テーマの display:inline-grid を上書き */
}
/* カード上部アクセントバー（ホバー時にスライドイン） */
#list_simplepage .hentry::before,
.property-grid article::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 2;
}
#list_simplepage .hentry:hover::before,
.property-grid article:hover::before {
  transform: scaleX(1);
}
#list_simplepage .hentry:hover,
.property-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.12);
}

/* 画像 */
.list_picsam { display: flex; flex-direction: column; }
.list_picsam_img {
  width: 100%;
  overflow: hidden;
  background: #d8ddd9 !important;
  position: relative;
  aspect-ratio: 3/2;
}
.list_picsam_img a { display: block; width: 100%; height: 100%; }
.list_picsam_img img,
.list_picsam_img img.box2image,
.list_picsam_img img.box4image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
#list_simplepage .hentry:hover .list_picsam_img img,
.property-grid article:hover .list_picsam_img img { transform: scale(1.04); }

/* NEW/UP バッジ */
#page .new_mark,
.list_picsam .new_mark,
#list_simplepage .new_mark,
.property-grid .new_mark,
body .new_mark {
  position: absolute !important;
  top: 8px !important;
  left: 8px !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
  background: var(--accent) !important;
  background-color: var(--accent) !important;
  background-image: none !important;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: .10em !important;
  padding: 4px 10px !important;
  border-radius: 4px !important;
  text-transform: uppercase !important;
  z-index: 10 !important;
  transform: none !important;
  box-shadow: 0 1px 4px rgba(0,0,0,.18) !important;
  line-height: 1.6 !important;
  display: inline-block !important;
}
/* バッジの親要素を位置基準に */
#list_simplepage .hentry,
.property-grid article { position: relative !important; }

/* カード本体 */
.list_simple_box {
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* 物件情報エリア: 余白を埋めてボタンを底に押し出す */
.list_simple_box .list_detail {
  flex: 1;
}
.list_simple_boxtitle {
  padding: 0;
  border: none;
  background: none;
  margin: 0;
}

/* カード内 h1-h6 のボーダーリセット */
.list_simple_boxtitle h1,
.list_simple_boxtitle h2,
.list_simple_boxtitle h3,
.list_simple_boxtitle h4,
.list_simple_boxtitle h5,
.list_simple_boxtitle h6,
#list_simplepage article h1,
#list_simplepage article h2,
#list_simplepage article h3,
#list_simplepage article h4,
#list_simplepage article h5,
#list_simplepage article h6,
.property-grid article h1,
.property-grid article h2,
.property-grid article h3,
.property-grid article h4,
.property-grid article h5,
.property-grid article h6 {
  border-left: none !important;
  border-bottom: none !important;
  padding-left: 0 !important;
  padding-bottom: 0 !important;
  background: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  letter-spacing: .02em !important;
  line-height: 1.5 !important;
}

span.top_title {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 16px 6px;
  line-height: 1.5;
}

/* ==========================================================
   ウィジェットカード — 価格・間取り・所在地・交通
   fudo-widget3.php が生成するクラスに対するスタイル (2026-06-19追加)
   ========================================================== */
span.top_price {
  display: block;
  padding: 4px 16px 8px;
  font-size: 20px;
  font-weight: 500;
  color: #e05a00;
  letter-spacing: -.5px;
  line-height: 1.3;
}
/* 例: "2,980万円" → "万円" 部分を小さく（通常テキストとして出力されるので疑似要素で対応不可のため fontSize で対応） */

span.top_madori,
span.top_menseki {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-sub);
  background: var(--accent-lt);
  border-radius: 3px;
  padding: 2px 7px;
  margin: 0 2px 6px 0;
  letter-spacing: .04em;
}
span.top_madori:first-of-type { margin-left: 16px; }

/* 所在地 */
span.top_shozaichi {
  display: block;
  font-size: 11px;
  color: var(--text-sub);
  padding: 0 16px;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
span.top_shozaichi::before {
  content: '▷';
  font-size: 9px;
  margin-right: 3px;
  opacity: .5;
}

/* 最寄駅・交通（TOPおすすめカード） */
span.top_kotsu {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-sub);
  padding: 0 16px 4px;
  line-height: 1.6;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  align-items: flex-start;
}
span.top_kotsu::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8c84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Cpath d='M6 18v2M18 18v2M2 10h20M8 6V4M16 6V4'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* .list_address_koutu は .card-transit で置き換えるため非表示 */
#list_simplepage .list_address_koutu { display: none !important; }

/* 最寄駅（検索結果カード .card-transit） */
.card-transit {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-sub);
  padding: 4px 14px 2px;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-transit::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237a8c84' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='6' width='20' height='12' rx='2'/%3E%3Cpath d='M6 18v2M18 18v2M2 10h20M8 6V4M16 6V4'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* カードフッター（widget3: top_r_footer > box1low > a） */
.top_r_footer {
  padding: 12px 16px 16px;
  margin-top: auto;
  clear: both;
}
.top_r_footer .box1low,
.top_r_footer .fc-btn-wrap { float: none !important; }
.top_r_footer .box1low a,
.top_r_footer .fc-btn-wrap a,
.top_r_footer > a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  background: var(--accent);
  color: #fff !important;
  padding: 11px 0;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-align: center;
  text-decoration: none !important;
  transition: background .2s;
  white-space: nowrap;
}
.top_r_footer .box1low a:hover,
.top_r_footer .fc-btn-wrap a:hover,
.top_r_footer > a:hover {
  background: var(--accent-mid);
  opacity: 1;
}

/* widget3 カードを flex column 化（ボタンを底に固定するため） */
#list_simplepage article:has(.top_r_footer),
.property-grid article:has(.top_r_footer) {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
}

/* 価格エリア */
.list_price.rent {
  padding: 0 16px 8px;
  border: none;
  background: none;
}
.list_price.rent ul { margin: 0; padding: 0; list-style: none; }
.list_price.rent li.price-box {
  font-size: 11px;
  color: var(--text-sub);
  letter-spacing: .06em;
  margin-bottom: 2px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.list_price.rent li.price-box .dpoint4,
body .dpoint4 {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: -.5px;
  line-height: 1.2;
}
.list_price.rent li {
  font-size: 12px;
  color: var(--text-sub);
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.list_price.rent li span { color: var(--text); font-size: 13px; }
.list_price.rent li.price-box > *:not(.dpoint4) {
  white-space: nowrap;
  font-size: 11px;
  color: var(--text-sub);
}

/* 住所・交通 */
.list_address, .list_address_koutu {
  padding: 0 16px 4px;
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.6;
}
.list_address img, .list_address_koutu img {
  width: 14px !important;
  height: 14px !important;
  vertical-align: middle;
  opacity: .5;
}

/* カード内テーブルのボーダーリセット */
body #list_simplepage article table,
body #list_simplepage article table td,
body #list_simplepage article table th,
body #list_simplepage article table tr,
body .property-grid article table,
body .property-grid article table td,
body .property-grid article table th,
body .property-grid article table tr {
  border: none !important;
  border-bottom: none !important;
  background: transparent !important;
}

/* 詳細ボタン（article 末尾に絶対配置） */
#list_simplepage article > a,
.property-grid article > a {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 16px 16px;
  text-decoration: none;
}
.list_details_button,
div.list_details_button,
a div.list_details_button {
  display: block !important;
  background: var(--accent) !important;
  color: #fff !important;
  text-align: center !important;
  padding: 11px 0 !important;
  border-radius: var(--radius) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: .1em !important;
  transition: background .2s, opacity .2s !important;
  cursor: pointer !important;
  border: none !important;
  box-shadow: none !important;
}
.list_details_button::after {
  content: ' →';
  font-size: 12px;
  display: inline-block;
  transition: transform .2s;
}
a:hover .list_details_button,
a:hover div.list_details_button {
  background: var(--accent-mid) !important;
  opacity: 1 !important;
}
a:hover .list_details_button::after { transform: translateX(3px); }

/* 会員・成約 */
article.hentry.kaiin { opacity: .85; }
.fudo_kaiin_type_logo { position: absolute; top: 10px; right: 10px; z-index: 1; }
article.hentry.seiyaku .list_picsam_img::after {
  content: '成約済';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .2em;
}

/* ページナビ（fudou） */
.navigation.hentry { display: none; }
.nav-previous       { display: none !important; }
.pageback           { display: none !important; }

/* ==========================================================
   コラムセクション
   ========================================================== */
.col-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.col-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  color: var(--text);
  text-decoration: none;
}
.col-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(45,106,79,.12);
  opacity: 1;
  color: var(--text);
}
.col-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: var(--accent-lt);
}
.col-card__noimg {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--accent-lt) 0%, #d4ebe3 100%);
}
.col-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.col-card:hover .col-card__img img { transform: scale(1.04); }
.col-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.col-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.col-card__cat {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--accent-lt);
  padding: 2px 8px;
  border-radius: 3px;
  white-space: nowrap;
}
.col-card__date { font-size: 11px; color: var(--text-mute); letter-spacing: .04em; }
.col-card__title {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.65;
  margin: 0 0 10px;
  border: none;
  padding: 0;
  background: none;
}
.col-card__excerpt {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.85;
  margin: 0;
  flex: 1;
}

/* ==========================================================
   お知らせセクション
   ========================================================== */
.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-item {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.news-item:first-child { border-top: 1px solid var(--border); }
.news-item:hover {
  background: var(--accent-pale);
  padding-left: 10px;
  padding-right: 10px;
  margin-left: -10px;
  margin-right: -10px;
  border-radius: 4px;
  border-bottom-color: transparent;
}
.news-item__date {
  font-family: var(--font-en);
  font-size: 12px;
  color: var(--text-mute);
  white-space: nowrap;
  min-width: 90px;
  letter-spacing: .04em;
  flex-shrink: 0;
}
.news-item__title {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s;
}
.news-item__title:hover { color: var(--accent); opacity: 1; }

/* ==========================================================
   フォーム
   ========================================================== */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
select, textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px;
  transition: border-color .2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--accent);
  background: var(--surface);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
input[type="submit"], input[type="button"], button, input[type="reset"] {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 11px 24px;
  font-family: var(--font);
  font-size: 13px;
  letter-spacing: .08em;
  cursor: pointer;
  transition: opacity .2s;
}
input[type="submit"]:hover, input[type="button"]:hover, button:hover { opacity: .75; background: var(--dark); }

/* fudou 検索フォーム */
#page_jsearch_page {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
#page_jsearch_page input[type="submit"] { background: var(--dark); color: #fff; }

/* ==========================================================
   フッター
   ========================================================== */
#colophon.site-footer {
  background: var(--dark-green) !important;
  color: rgba(255,255,255,.65);
  border-top: 3px solid var(--accent);
  padding: 0;
  margin-top: 0;
  position: relative;
}
/* 背景テクスチャ */
#colophon.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45,106,79,.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61,136,98,.15) 0%, transparent 40%);
  pointer-events: none;
}

.widget-wrap { padding: 0; background: transparent; }
.widget-wrap .wrap { padding-top: 0; }

/* JS注入フッター */
.site-footer__top {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 64px 0 52px;
  position: relative;
}
.site-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
.site-footer__brand { flex: 1; }
.site-footer__logo {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .12em;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__logo::before {
  content: '';
  display: inline-block;
  width: 6px; height: 20px;
  background: var(--accent-mid);
  border-radius: 3px;
  flex-shrink: 0;
}
.site-footer__catch {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  margin: 0;
  line-height: 1.8;
}

.site-footer__sns {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.site-footer__sns-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.site-footer__sns-btn:hover { opacity: .75; }
.site-footer__sns-btn--line { background: #06C755; color: #fff; }
.site-footer__sns-btn--instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.site-footer__sns-btn--x { background: #000; color: #fff; }

.site-footer__nav {
  display: flex;
  gap: 60px;
  flex-shrink: 0;
}
.site-footer__nav-col {}
.site-footer__nav-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-footer__nav-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.site-footer__nav-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  transition: color .2s, padding-left .2s;
  display: block;
}
.site-footer__nav-col ul li a:hover {
  color: #fff;
  padding-left: 6px;
  opacity: 1;
}

/* コピーライトバー → デザインポリッシュセクションで定義 */

.site-footer a { color: rgba(255,255,255,.55); }
.site-footer a:hover { color: #fff; opacity: 1; }

/* go-to-top ボタン削除（チャットボタンと重なるため 2026-07-06）*/
.go-to-top { display: none !important; }
.back-to-top-text, .icon-bg, .back-to-top-icon { display: none !important; }

/* fudou plugin バージョン表示 CSS フォールバック */
a[href*="fudousan-plugin"],
a[href*="fudou.plugin.jp"] { display: none !important; }

/* ==========================================================
   物件検索ページ（fudou jsearch フォーム）
   ========================================================== */

/* ---- パンくずリスト（検索ページでは非表示） ---- */
.breadcrumbs, .breadcrumb, #breadcrumb, .fudou_breadcrumb,
.kogma_breadcrumb, .site-breadcrumb, nav.breadcrumb,
#content .breadcrumbs, .entry-breadcrumbs,
.fudou_re_page_jyoken_in_archive + .breadcrumbs,
body.page .breadcrumbs, body.archive .breadcrumbs,
body.page #breadcrumb, body.archive #breadcrumb {
  display: none !important;
}

/* ---- fudouボタン色をCSS変数レベルで緑に上書き ---- */
:root {
  --fudou--button-background-color: #2d6a4f;
  --fudou--button-text-color: #ffffff;
  --fudou--button-background-hover-color: #3d8862;
  --fudou--button-text-hover-color: #ffffff;
}

/* ---- ページラッパー ---- */
#container .jsearch,
.jsearch {
  max-width: 860px;
  margin: 32px auto 60px !important;
  padding: 0 !important;
}

/* フォームタイトル */
#container .jsearch > p,
.jsearch > p {
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: .04em;
  margin: 0 0 20px !important;
  padding: 0 !important;
}

/* ---- テーブル本体 ---- */
table.form_jsearch {
  border: 1px solid var(--border) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  width: 100% !important;
  background: var(--surface) !important;
  box-shadow: var(--shadow) !important;
  margin: 0 0 24px !important;
}

/* ---- th（ラベル列）---- */
table.form_jsearch th {
  background: var(--accent-pale) !important;
  color: var(--text-sub) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  padding: 18px 20px !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  vertical-align: middle !important;
  width: 160px !important;
  white-space: nowrap !important;
}
table.form_jsearch tr:last-child th {
  border-bottom: none !important;
}

/* ---- td（入力列）---- */
table.form_jsearch td {
  background: var(--surface) !important;
  padding: 14px 20px !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-left: 1px solid var(--border) !important;
  vertical-align: middle !important;
}
table.form_jsearch tr:last-child td {
  border-bottom: none !important;
}

/* ---- テキスト入力 ---- */
table.form_jsearch input[type="text"] {
  width: 100% !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  font-family: var(--font) !important;
  color: var(--text) !important;
  background: var(--bg) !important;
  box-sizing: border-box !important;
  transition: border-color .2s, box-shadow .2s !important;
  outline: none !important;
}
table.form_jsearch input[type="text"]:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(45,106,79,.12) !important;
}

/* ---- セレクト ---- */
table.form_jsearch select {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 100% !important;
  max-width: 320px !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 10px 36px 10px 14px !important;
  font-size: 14px !important;
  font-family: var(--font) !important;
  color: var(--text) !important;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8c84' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 12px center !important;
  cursor: pointer !important;
  transition: border-color .2s !important;
  outline: none !important;
  box-sizing: border-box !important;
}
table.form_jsearch select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(45,106,79,.12) !important;
}

/* 価格・面積：上下セレクト並び */
table.form_jsearch td.kakaku,
table.form_jsearch td.menseki {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 14px 20px !important;
}
table.form_jsearch td.kakaku select,
table.form_jsearch td.menseki select {
  max-width: 280px !important;
}

/* ---- チェックボックス・ラジオをチップ化 ---- */
table.form_jsearch li {
  display: inline-block !important;
  margin: 0 6px 6px 0 !important;
  line-height: 1 !important;
}
table.form_jsearch input[type="checkbox"],
table.form_jsearch input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
}
table.form_jsearch label {
  display: inline-flex !important;
  align-items: center !important;
  cursor: pointer !important;
  background: var(--bg) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 20px !important;
  padding: 7px 16px !important;
  font-size: 13px !important;
  font-family: var(--font) !important;
  color: var(--text) !important;
  transition: all .15s !important;
  user-select: none !important;
  margin-left: 0 !important;
  white-space: nowrap !important;
}
table.form_jsearch label:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}
table.form_jsearch li:has(input[type="checkbox"]:checked) label,
table.form_jsearch li:has(input[type="radio"]:checked) label {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* ul リセット */
table.form_jsearch ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* h5 サブラベル */
table.form_jsearch h5 {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: var(--text-mute) !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  margin: 0 0 8px !important;
}

/* ---- 検索ボタン（fudou CSS変数 + 直接上書きの二重対応） ---- */
.jsearch input[type="submit"],
#container .jsearch input[type="submit"],
body .jsearch input[type="submit"],
body input[type="submit"].search_btn,
body #container input[type="submit"] {
  background: #2d6a4f !important;
  background-color: #2d6a4f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 16px 0 !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  font-family: var(--font) !important;
  letter-spacing: .12em !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background .2s, transform .1s, box-shadow .2s !important;
  box-shadow: 0 4px 16px rgba(45,106,79,.25) !important;
  display: block !important;
}
.jsearch input[type="submit"]:hover,
body #container input[type="submit"]:hover {
  background: #3d8862 !important;
  background-color: #3d8862 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(45,106,79,.35) !important;
}

/* ---- モバイル対応 ---- */
@media (max-width: 600px) {
  table.form_jsearch th {
    display: block !important;
    width: 100% !important;
    border-bottom: none !important;
    padding: 12px 16px 6px !important;
    font-size: 11px !important;
  }
  table.form_jsearch td {
    display: block !important;
    border-left: none !important;
    padding: 8px 16px 14px !important;
  }
  table.form_jsearch tr {
    display: block !important;
    border-bottom: 1px solid var(--border) !important;
  }
  table.form_jsearch tr:last-child { border-bottom: none !important; }
  table.form_jsearch td.kakaku,
  table.form_jsearch td.menseki { display: block !important; }
  table.form_jsearch select { max-width: 100% !important; }
}

/* ==========================================================
   テーブル
   ========================================================== */
table { border-collapse: collapse; border: none; }
th {
  background: var(--bg);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 10px 16px;
  border: none;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
td {
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text);
}
tr:nth-child(even) { background: transparent; }
tr:hover { background: var(--bg); }

/* ==========================================================
   物件詳細ページ（body.single-fudo）
   ========================================================== */

/* ── ページ外枠 ── */
.single-fudo #content,
.single-fudo .site-content,
.single-fudo #container {
  background: #ffffff !important;
}

/* ── コンテンツエリア全幅（親テーマのサイドバー幅制約・float を完全解除） ── */
.single-fudo #primary.content-area,
.single-fudo .content-area,
.single-fudo #main.site-main,
.single-fudo article,
.single-fudo article.hentry {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box !important;
}
/* #list_simplepage2 を画面中央に配置 */
.single-fudo #list_simplepage2 {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 24px 60px !important;
  box-sizing: border-box !important;
}
/* list_simplepage2 直下 div（#post-X）も全幅 */
.single-fudo #list_simplepage2 > div {
  width: 100% !important;
  max-width: 100% !important;
}

/* ── 物件タイプバッジ（span.bu-cat.vivid）── */
.vivid,
span.bu-cat,
span.bu-cat.vivid,
.single-fudo header.entry-header span.bu-cat,
.single-fudo h1.entry-title span.bu-cat {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .08em !important;
  padding: 4px 12px !important;
  line-height: 1.6 !important;
  vertical-align: middle !important;
  pointer-events: none !important;
}

/* ── ヘッダーエリア ── */
.single-fudo header.entry-header {
  background: var(--surface) !important;
  border: none !important;
  padding: 28px 0 20px !important;
  margin-bottom: 0 !important;
}

.single-fudo h1.entry-title {
  font-size: 18px !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  letter-spacing: .04em !important;
  border: none !important;
  padding: 0 !important;
  background: none !important;
  display: block !important;
  line-height: 2 !important;
  margin: 0 0 4px !important;
  font-family: var(--font) !important;
}

/* 物件番号など小テキスト */
.single-fudo h1.entry-title span[style*="font-size"] {
  font-size: 13px !important;
  color: var(--text-sub) !important;
  font-weight: 400 !important;
}

/* 詳細ページ new_mark はフラット表示に（親テーマの position:absolute + rotate を完全上書き） */
body.single-fudo h1.entry-title .new_mark,
body.single-fudo h1.entry-title div.new_mark,
body.single-fudo .entry-header .new_mark,
body.single-fudo .new_mark {
  position: static !important;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  width: auto !important;
  height: auto !important;
  border-radius: 4px !important;
  padding: 4px 10px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
  display: inline-block !important;
  vertical-align: middle !important;
  z-index: auto !important;
  background-color: #e25c3a !important;
  color: #fff !important;
}

/* ── メインラッパー ── */
.single-fudo .list_simple_box {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ─────────────────────────────────────────────
   PC: シングルカラム・センタリングレイアウト
   順序: TOP画像(.main_picsam) → スライダー(.list_picsam) → 物件概要(.list_detail)
   ───────────────────────────────────────────── */
@media (min-width: 769px) {
  /* グローバルの flex をブロックレイアウトに戻してシングルカラム化 */
  .single-fudo #list_simplepage2 .list_simple_box {
    display: block !important;
    width: 100% !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  /* entry-content */
  .single-fudo #list_simplepage2 .list_simple_box > .entry-content {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 20px !important;
  }

  /* TOP画像: 全幅・4:3相当の適切な高さ */
  .single-fudo #list_simplepage2 .main_picsam {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px !important;
    box-sizing: border-box !important;
  }

  /* PC: TOP画像 1枚目を大きく表示 */
  .single-fudo .main_picsam a:first-of-type img {
    height: 420px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* スライダー: 全幅 */
  .single-fudo #list_simplepage2 .list_picsam {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 32px !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  /* PC: スライダー高さ */
  .single-fudo .list_picsam .swiper-container,
  .single-fudo .list_picsam .swiper {
    height: 420px !important;
  }
  .single-fudo .list_picsam .swiper-wrapper {
    height: 420px !important;
  }
  .single-fudo .list_picsam .swiper-slide {
    height: 420px !important;
  }
  .single-fudo .list_picsam .swiper-slide img,
  .single-fudo .list_picsam .swiper-slide a img {
    height: 420px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* 物件概要: 全幅・スライダー直下 */
  .single-fudo #list_simplepage2 .list_detail {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
    position: static !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
}

/* ── 1枚目ヒーロー画像 ── */
.single-fudo .main_picsam {
  display: block !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

/* 1枚目 */
.single-fudo .main_picsam a:first-of-type {
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: var(--radius) !important;
  cursor: zoom-in !important;
}

.single-fudo .main_picsam a:first-of-type img {
  width: 100% !important;
  height: 260px !important;   /* モバイルはコンパクトに */
  object-fit: cover !important;
  display: block !important;
  transition: transform .4s ease !important;
  margin: 0 !important;
}

.single-fudo .main_picsam a:first-of-type:hover img {
  transform: scale(1.03) !important;
}

/* 2枚目以降はスライダーに任せて非表示 */
.single-fudo .main_picsam a:nth-of-type(n+2) {
  display: none !important;
}

/* QRコード・メールリンク非表示 */
.single-fudo .main_picsam a[href*="googleapis"] img,
.single-fudo .main_picsam a[href^="mailto"] {
  display: none !important;
}

/* ── プラグイン版 (#single_fudou_img) ──
   JS が .main_picsam + .swiper-container を生成するまでの 600ms 間、
   2枚目以降を非表示にしてページ縦長を防ぐ */
.single-fudo #single_fudou_img a:nth-of-type(n+2) {
  display: none !important;
}
.single-fudo #single_fudou_img a:first-of-type {
  display: block !important;
  width: 100% !important;
  overflow: hidden !important;
}
.single-fudo #single_fudou_img a:first-of-type img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  display: block !important;
}

/* ── サブ画像スライダー（.list_picsam 内 swiper）── */
.single-fudo .list_picsam {
  margin: 0 0 24px !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
}

.single-fudo .list_picsam .swiper-container,
.single-fudo .list_picsam .swiper {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
}

.single-fudo .list_picsam .swiper-wrapper {
  height: 220px !important;
}

.single-fudo .list_picsam .swiper-slide {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  cursor: zoom-in !important;
  flex-shrink: 0 !important;
}

.single-fudo .list_picsam .swiper-slide img,
.single-fudo .list_picsam .swiper-slide a img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
}

/* スワイパーナビ */
.single-fudo .list_picsam .swiper-button-prev,
.single-fudo .list_picsam .swiper-button-next {
  color: #fff !important;
  text-shadow: 0 2px 6px rgba(0,0,0,.6) !important;
}

.single-fudo .list_picsam .swiper-pagination-bullet-active {
  background: var(--accent) !important;
}

/* モバイル: ページネーションドットを画像の下に出す */
@media (max-width: 768px) {
  .single-fudo .list_picsam .swiper-container,
  .single-fudo .list_picsam .swiper {
    padding-bottom: 32px !important;
    overflow: visible !important;
  }
  .single-fudo .list_picsam .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    top: auto !important;
    left: auto !important;
    margin-top: 8px !important;
    text-align: center !important;
  }
  .single-fudo .list_picsam .swiper-pagination-bullet {
    background: var(--text-sub) !important;
    opacity: 0.5 !important;
  }
  .single-fudo .list_picsam .swiper-pagination-bullet-active {
    background: var(--accent) !important;
    opacity: 1 !important;
  }
}

/* ── ライトボックス ── */
.fudo-lightbox {
  position: fixed !important;
  inset: 0 !important;
  z-index: 99999 !important;
  background: rgba(0,0,0,.92) !important;
  display: none;
  align-items: center !important;
  justify-content: center !important;
  cursor: zoom-out !important;
}

.fudo-lightbox.is-open {
  display: flex !important;
}

.fudo-lightbox__img {
  max-width: 92vw !important;
  max-height: 88vh !important;
  object-fit: contain !important;
  border-radius: 4px !important;
  box-shadow: 0 24px 80px rgba(0,0,0,.5) !important;
  cursor: default !important;
  transition: opacity .2s !important;
  pointer-events: none !important;
}

.fudo-lightbox__close {
  position: fixed !important;
  top: 20px !important; right: 24px !important;
  color: #fff !important;
  font-size: 28px !important;
  cursor: pointer !important;
  line-height: 1 !important;
  opacity: .8 !important;
  background: none !important;
  border: none !important;
  z-index: 100000 !important;
  padding: 4px !important;
}
.fudo-lightbox__close:hover { opacity: 1 !important; }

.fudo-lightbox__prev,
.fudo-lightbox__next {
  position: fixed !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #fff !important;
  font-size: 36px !important;
  cursor: pointer !important;
  opacity: .7 !important;
  background: rgba(0,0,0,.35) !important;
  border: none !important;
  padding: 14px 16px !important;
  border-radius: 4px !important;
  z-index: 100000 !important;
  line-height: 1 !important;
  transition: opacity .15s !important;
}
.fudo-lightbox__prev { left: 16px !important; }
.fudo-lightbox__next { right: 16px !important; }
.fudo-lightbox__prev:hover,
.fudo-lightbox__next:hover { opacity: 1 !important; }

.fudo-lightbox__counter {
  position: fixed !important;
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  color: rgba(255,255,255,.65) !important;
  font-size: 13px !important;
  letter-spacing: .1em !important;
  z-index: 100000 !important;
  pointer-events: none !important;
}

/* ── 価格エリア（.list_price ul li）── */
.single-fudo .list_detail .list_price,
.single-fudo .list_price {
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  padding: 20px 24px !important;
  margin-bottom: 16px !important;
}

.single-fudo .list_price ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px 28px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.single-fudo .list_price li {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  border: none !important;
  padding: 0 !important;
  font-size: 13px !important;
  color: var(--text) !important;
  float: none !important;
}

.single-fudo .list_detail .list_price li dt,
.single-fudo .list_price li dt {
  font-size: 11px !important;
  background: var(--accent-lt) !important;
  color: var(--accent) !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 3px 10px !important;
  letter-spacing: .06em !important;
  white-space: nowrap !important;
  float: none !important;
  margin: 0 !important;
}

.single-fudo .list_price li dd {
  font-size: 14px !important;
  color: var(--text) !important;
  font-weight: 500 !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.single-fudo .list_price li.price-box {
  width: 100% !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid var(--border) !important;
  margin-bottom: 4px !important;
  align-items: baseline !important;
  gap: 12px !important;
}

.single-fudo .list_price .dpoint4 {
  font-size: 28px !important;
  font-weight: 300 !important;
  letter-spacing: -.02em !important;
  line-height: 1.2 !important;
}

/* ── 所在地・交通（#list_add_table ul dt/dd）── */
.single-fudo #list_add_table {
  margin-bottom: 16px;
}

.single-fudo #list_add_table ul {
  list-style: none !important;
  margin: 0 !important; padding: 0 !important;
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
}

.single-fudo #list_add_table ul li {
  display: grid !important;
  grid-template-columns: 90px 1fr !important;
  border-bottom: 1px solid var(--border) !important;
  float: none !important; width: 100% !important;
}

.single-fudo #list_add_table ul li:last-child {
  border-bottom: none !important;
}

.single-fudo #list_add_table li dt {
  background: var(--accent-pale) !important;
  color: var(--text-sub) !important;
  font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: .06em !important;
  padding: 14px 16px !important;
  border: none !important; border-right: 1px solid var(--border) !important;
  border-radius: 0 !important;
  display: flex !important; align-items: center !important;
  float: none !important; width: auto !important;
  margin: 0 !important; text-align: left !important;
}

.single-fudo #list_add_table li dd {
  padding: 14px 16px !important;
  font-size: 13px !important; color: var(--text) !important;
  margin: 0 !important; float: none !important; width: auto !important;
}

/* ── 物件詳細テーブル（#list_other_table）── */
.single-fudo #list_other_table {
  margin: 24px 0;
}

.single-fudo #list_other_table h3 {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .18em !important;
  color: var(--accent) !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
  padding: 4px 12px !important;
  background: var(--accent-lt) !important;
  border-radius: 3px !important;
  display: inline-block !important;
  font-family: var(--font-en) !important;
  border: none !important;
  text-align: left !important;
}

/* テーブル本体 */
#list_other {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  overflow: hidden !important;
  margin: 0 !important;
}

#list_other th {
  background: var(--accent-pale) !important;
  color: var(--text-sub) !important;
  font-size: 12px !important; font-weight: 500 !important;
  letter-spacing: .04em !important;
  padding: 11px 14px !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-right: 1px solid var(--border) !important;
  width: 110px !important;
}

#list_other td {
  background: var(--surface) !important;
  color: var(--text) !important;
  font-size: 13px !important;
  padding: 11px 14px !important;
  border: none !important;
  border-bottom: 1px solid var(--border) !important;
  border-right: 1px solid var(--border) !important;
}

#list_other tr:hover { background: transparent !important; }
#list_other tr:nth-child(even) { background: transparent !important; }

#list_other tr:last-child th,
#list_other tr:last-child td { border-bottom: none !important; }
#list_other td:last-child,
#list_other th:last-child { border-right: none !important; }

/* ── 注記テキスト ── */
.list_detail_bottom_info {
  font-size: 11px !important;
  color: var(--text-mute) !important;
  padding: 14px 0 !important;
  border-top: 1px solid var(--border) !important;
  margin: 20px 0 !important;
  letter-spacing: .04em !important;
}

/* ── 問い合わせセクション（#toiawasesaki）── */
#toiawasesaki {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-direction: column !important;
  text-align: center !important;
  margin: 32px auto !important;
  width: 100% !important;
}

.contact-box {
  max-width: 700px !important;
  margin: 0 auto !important;
  text-align: center !important;
}

#contact_form {
  max-width: 700px !important;
  margin: 0 auto 40px !important;
  text-align: center !important;
}

/* 固定フローティングボタン → 画面下中央に */
.single-fudo body > a[href*="contact"],
.single-fudo body > a[href*="form"],
.fudou-contact-float,
.contact-float-btn,
[class*="contact"][class*="float"],
[class*="float"][class*="contact"] {
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
}

/* ── breadcrumb on detail page ── */
.single-fudo .breadcrumbs,
.single-fudo #breadcrumb,
.single-fudo #bread-out,
.single-fudo .kogma_breadcrumb,
.single-fudo .site-breadcrumb,
.single-fudo .fudou_breadcrumb,
.single-fudo .entry-breadcrumbs,
body.single-fudo .kogma_breadcrumb,
body.single-fudo [class*="breadcrumb"],
body.single-fudo nav[aria-label*="breadcrumb"] {
  display: none !important;
}

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .single-fudo .list_simple_box,
  .single-fudo #list_simplepage2 { padding: 0 16px 40px; }

  .single-fudo .main_picsam a:first-of-type img { height: 240px !important; }
  .single-fudo .list_picsam img { height: 200px !important; }

  .single-fudo #list_add_table ul li {
    grid-template-columns: 72px 1fr !important;
  }

  .single-fudo #list_other_table h3 { font-size: 10px !important; }
  #list_other th { width: 80px !important; font-size: 11px !important; }
  #list_other td { font-size: 12px !important; }
}

@media (max-width: 560px) {
  .single-fudo .list_price .dpoint4 { font-size: 22px !important; }
  #list_other th, #list_other td { padding: 9px 10px !important; font-size: 11px !important; }
}

/* ==========================================================
   サイドバー — 物件ページはフル幅
   ========================================================== */
.archive #secondary,
.search  #secondary,
#secondary.widget-area { display: none !important; }
.archive #primary,
.search  #primary { width: 100% !important; float: none !important; margin: 0 !important; }

/* ==========================================================
   archive-fudo ページ: .wrap と .content-area のサイズ制限を解除
   ヒーローとセクションが同じ中央基準になるよう
   各 .site-section__inner (max-width:1280px; margin:0 auto; padding:0 24px) が中央揃えを担う
   ========================================================== */
body.archive-fudo .wrap {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.archive-fudo .content-area,
body.archive-fudo #primary {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
}
/* 検索結果ページの #list_simplepage は inner と同幅でセンタリング */
#list_simplepage.is-search-results {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================================
   ユーティリティ
   ========================================================== */
br[clear] { display: none; }
.site-columns__head { display: none; } /* 旧構造ヘッダー非表示 */

/* ==========================================================
   レイアウト幅リセット（8market 親テーマの制約を解除）
   ========================================================== */
#container.site-content,
.site-content-contain,
#content[role="main"],
#content.site-content {
  max-width: none !important;
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}
/* h2 の下線がセクション見出しに入らないよう確実にリセット */
.section-head__ja,
.col-card__title {
  border-bottom: none !important;
  border-top: none !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ==========================================================
   Canvas そよ風アニメーション（TOPビジュ）
   ========================================================== */

/* canvas は JS で描画 — CSS は配置のみ */
.site-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}

/* ヒーローテキストの入場アニメーション（ふわっと浮き上がる） */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.site-hero__eyebrow    { animation: fade-up .9s cubic-bezier(.22,.61,.36,1) both .10s; }
.site-hero__headline   { animation: fade-up .9s cubic-bezier(.22,.61,.36,1) both .28s; }
.site-hero__lead       { animation: fade-up .9s cubic-bezier(.22,.61,.36,1) both .44s; }
.site-hero__type-tabs  { animation: fade-up .9s cubic-bezier(.22,.61,.36,1) both .52s; }
.site-hero__search     { animation: fade-up .9s cubic-bezier(.22,.61,.36,1) both .60s; }
.site-hero__chips      { animation: fade-up .9s cubic-bezier(.22,.61,.36,1) both .72s; }
.site-hero__detail-link{ animation: fade-up .9s cubic-bezier(.22,.61,.36,1) both .84s; }

/* ==========================================================
   8market 既存ドロワー非表示（新しい絞り込みドロワーで代替）
   ========================================================== */
.kogma_drawer_menu { display: none !important; }

/* ==========================================================
   検索ドロワー
   ========================================================== */

/* オーバーレイ */
.sd-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 900;
}
.sd-overlay.is-open { display: block; }

/* 右固定トグルボタン */
.sd-toggle {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  display: flex; align-items: center; gap: 6px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 18px 10px;
  font-family: var(--font);
  font-size: 12px;
  letter-spacing: .1em;
  cursor: pointer;
  z-index: 901;
  border-radius: 6px 0 0 6px;
  box-shadow: -2px 0 12px rgba(0,0,0,.18);
  transition: background .2s, padding .2s;
}
.sd-toggle svg { transform: rotate(90deg); }
.sd-toggle:hover { background: #255a42; }
.sd-toggle.is-open { background: #1a3d2b; }

/* ドロワー本体 */
.sd-drawer {
  position: fixed;
  top: 0; right: -380px;
  width: 360px; max-width: 92vw;
  height: 100%;
  background: #fff;
  z-index: 902;
  overflow-y: auto;
  transition: right .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(0,0,0,.14);
}
.sd-drawer.is-open { right: 0; }

.sd-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
/* ドロワー 売買/賃貸 タブ */
.sd-type-tabs {
  display: flex;
  gap: 0;
  background: var(--border, #e2ece7);
  border-radius: 8px;
  padding: 3px;
  margin: 12px 20px;
}
.sd-type-tab {
  flex: 1;
  background: transparent;
  border: none;
  font-family: var(--font, 'Noto Sans JP', sans-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub, #7a8c84);
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: all .18s;
}
.sd-type-tab.is-active {
  background: #fff;
  color: var(--accent, #2d6a4f);
  box-shadow: 0 1px 4px rgba(0,0,0,.1);
}
.sd-title {
  font-size: 14px; font-weight: 500;
  letter-spacing: .08em; color: var(--text);
  margin: 0;
}
.sd-close {
  background: none; border: none;
  color: var(--text-sub); font-size: 16px;
  cursor: pointer; padding: 4px 8px;
  line-height: 1;
}
.sd-close:hover { color: var(--text); }

/* フォーム */
.sd-form { padding: 20px; display: flex; flex-direction: column; gap: 20px; }

.sd-group {}
.sd-label {
  font-size: 12px; font-weight: 500;
  color: var(--text-sub); letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* セレクト */
.sd-row { display: flex; align-items: center; gap: 8px; }
.sd-select {
  flex: 1;
  appearance: none; -webkit-appearance: none;
  background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 28px 9px 10px;
  font-family: var(--font); font-size: 13px;
  color: var(--text); cursor: pointer;
}
.sd-select--full { width: 100%; }
.sd-sep { color: var(--text-sub); font-size: 13px; flex-shrink: 0; }

/* チェックボックス */
.sd-checks { display: flex; flex-wrap: wrap; gap: 8px; }
.sd-check {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px; color: var(--text);
  transition: border-color .15s, background .15s;
  user-select: none;
}
.sd-check input { display: none; }
.sd-check:has(input:checked) {
  background: var(--accent-lt);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 500;
}

/* ラジオ */
.sd-radios { display: flex; flex-wrap: wrap; gap: 8px; }
.sd-radio {
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 13px; color: var(--text);
  transition: border-color .15s, background .15s;
  user-select: none;
}
.sd-radio input { display: none; }
.sd-radio:has(input:checked) {
  background: var(--accent-lt);
  border-color: var(--accent);
  color: var(--accent);
  font-weight: 500;
}

/* テキスト入力（エリア） */
.kensaku-area-text { margin-top: 8px; }
.sd-text {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-family: var(--font); font-size: 13px;
  color: var(--text);
  background: var(--bg);
}
.sd-text:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}

/* 送信ボタン */
.sd-submit {
  width: 100%;
  background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius);
  padding: 14px;
  font-family: var(--font); font-size: 14px;
  font-weight: 500; letter-spacing: .06em;
  cursor: pointer;
  transition: background .2s;
  margin-top: 4px;
}
.sd-submit:hover { background: #255a42; }

/* ==========================================================
   デザインポリッシュ
   ========================================================== */

/* サイトタイトル横にグリーンドット（高級感のアクセント） */
h3.nav-site-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
h3.nav-site-title::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* フッター .site-info の bottom bar */
.site-footer .site-info {
  background: var(--dark-green) !important;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  text-align: center;
}
.site-footer .site-info .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.site-footer .copyright {
  margin: 0;
  font-family: var(--font), sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.35) !important;
  letter-spacing: .06em;
}
.site-footer .copyright a,
.site-footer .site-info .copyright a,
#colophon .copyright a {
  font-family: var(--font), sans-serif !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,.35) !important;
  text-decoration: none !important;
  transition: color .2s;
}
.site-footer .copyright a:hover,
#colophon .copyright a:hover { color: rgba(255,255,255,.7) !important; }


/* セクション境界ラインは背景色の border-top に統合済み */

/* WordPress 管理バー（ログイン時）の背景をダーク化 */
#wpadminbar { background: #1a1a1a !important; }
#wpadminbar .quicklinks .menupop ul { background: #2a2a2a !important; }

/* ページ全体のスムーズスクロール */
html { scroll-behavior: smooth; }

/* ==========================================================
   レスポンシブ
   ========================================================== */

/* ---- タブレット（〜900px） ---- */
@media (max-width: 900px) {
  :root { --section-pad: 56px; }
  /* 物件は3列維持 — gap だけ縮める */
  #list_simplepage, .property-grid { gap: 16px; }
  /* コラムは2列に（4件 → 2×2） */
  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .site-hero { padding: 64px 24px 56px; min-height: 460px; }
}

/* ---- 768px 共通調整 ---- */
@media (max-width: 768px) {
  /* モバイルヘッダー：フッターと同じ濃い緑・白文字 */
  #masthead, .site-header { border-top: none; border-bottom: none; }
  #sticky-header {
    background-color: var(--dark-green) !important;
    border-bottom: none !important;
  }
  #sticky-header .wrap { height: 52px; padding: 0 16px; position: relative; justify-content: center; }

  /* タイトル中央寄せ・白文字 */
  #sticky-header #site-branding {
    position: absolute;
    left: 50%; transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
  }
  #sticky-header #site-branding #site-title,
  #sticky-header #site-branding #site-title a {
    font-size: 18px !important;
    letter-spacing: .04em;
    color: #ffffff !important;
  }
  #sticky-header .header-navigation-wrap { margin-left: auto; }

  /* ハンバーガーボタンを白に */
  #sticky-header .menu-toggle .line-one,
  #sticky-header .menu-toggle .line-two,
  #sticky-header .menu-toggle .line-three {
    background: #ffffff !important;
  }

  h3.nav-site-title { font-size: 13px; letter-spacing: .04em; }
  h3.nav-site-title::before { width: 6px; height: 6px; }
  .wrap { padding: 0 16px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section-head__ja { font-size: 20px; }
  .site-hero__search { max-width: 100%; }
  .site-section__inner { padding: 0 16px; }
}

/* ---- スマートフォン（〜560px） ---- */
@media (max-width: 560px) {
  :root { --section-pad: 40px; }

  /* ── 物件グリッド：2列（バランス重視） ── */
  #list_simplepage, .property-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  /* 画像を大きく（4/3で写真の割合を多く） */
  .list_picsam_img { aspect-ratio: 4/3 !important; }

  /* カード内テキスト */
  span.top_title {
    font-size: 11px !important;
    padding: 8px 10px 2px !important;
    line-height: 1.4 !important;
  }
  .list_price.rent { padding: 0 10px 6px; }
  .list_price.rent li.price-box .dpoint4 {
    font-size: 11px !important;
    font-weight: 500;
  }
  .list_price.rent li.price-box > *:not(.dpoint4) { font-size: 10px; }
  .list_address, .list_address_koutu {
    padding: 0 10px 4px;
    font-size: 10px;
    display: none;
  }
  /* widget3 カード要素のスマホ対応 */
  span.top_price { font-size: 14px; padding: 2px 10px 6px; }
  span.top_madori, span.top_menseki { font-size: 10px; padding: 1px 5px; margin-left: 10px; }
  span.top_shozaichi { display: none; }
  span.top_kotsu { display: flex; font-size: 10px; padding: 1px 10px 4px; }
  /* 最寄駅: スマホでは折り返し許可・アイコン非表示でコンパクトに */
  .card-transit {
    display: flex;
    font-size: 10px;
    padding: 2px 10px 4px;
    white-space: normal;
    line-height: 1.4;
    overflow: visible;
    text-overflow: clip;
  }
  .card-transit::before { display: none; }
  /* 物件種別バッジ: スマホでフォントを小さく */
  .prop-badge { font-size: 10px; padding: 2px 7px; }
  .top_r_footer { padding: 8px 10px 12px; }
  .top_r_footer .box1low a, .top_r_footer > a { font-size: 11px; padding: 10px 0; }
  /* 詳細ボタンを非表示（画像タップでリンク） */
  #list_simplepage article > a,
  .property-grid article > a { display: none !important; }
  /* list_price_others 内のボタンもスマホでは非表示 */
  #list_simplepage .list_price_others { display: none !important; }
  #list_simplepage article,
  .property-grid article { padding-bottom: 0; }

  /* ── コラムグリッド：2列 ── */
  .col-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .col-card__body { padding: 10px 12px 12px; }
  .col-card__title { font-size: 12px; margin-bottom: 0; }
  .col-card__excerpt { display: none; }
  .col-card__meta { margin-bottom: 6px; gap: 6px; }

  /* ── ヒーロー ── */
  .site-hero { padding: 48px 16px 40px; min-height: auto; }
  .site-hero__headline { font-size: 22px; }
  .site-hero__lead { display: none; }
  .site-hero__chips { justify-content: center; gap: 6px; }
  .site-hero__chip { font-size: 11px; padding: 5px 12px; }
  .site-hero__search { padding: 5px 5px 5px 14px; }
  .site-hero__search-btn { padding: 10px 16px; font-size: 12px; }
  .site-hero__detail-btn { font-size: 12px; padding: 8px 20px; }

  /* ── お知らせ ── */
  .news-item { flex-direction: column; gap: 4px; }
  .news-item__date { min-width: auto; }

  /* ── コピーライト縮小 ── */
  .site-footer .copyright { font-size: 9px !important; letter-spacing: .04em; }
  .site-footer .site-info .wrap { gap: 12px; flex-wrap: wrap; justify-content: center; }

  /* ── フッター ── */
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    padding: 0 16px;
  }
  .site-footer__brand { width: 100%; text-align: center; }
  .site-footer__logo { justify-content: center; }
  .site-footer__catch { text-align: center; }
  .site-footer__nav {
    width: 100%;
    gap: 24px;
    justify-content: center;
  }
  .site-footer__nav-col { text-align: center; }
  .site-footer__nav-title { text-align: center; }
  .site-footer__nav-col ul { align-items: center; }
  .site-footer .site-info { padding: 16px 16px; text-align: center; }

  /* セクション内パディング */
  .site-section__inner { padding: 0 12px; }
  .section-head { margin-bottom: 20px; }
}

/* ==========================================================
   スクロールフェードイン（IntersectionObserver）
   ========================================================== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s cubic-bezier(.22,.61,.36,1),
              transform .72s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.anim-fade-up.is-visible {
  opacity: 1;
  transform: none;
}
/* stagger 遅延クラス */
.anim-d1 { transition-delay: .07s; }
.anim-d2 { transition-delay: .15s; }
.anim-d3 { transition-delay: .23s; }
.anim-d4 { transition-delay: .31s; }
.anim-d5 { transition-delay: .39s; }
.anim-d6 { transition-delay: .47s; }

/* prefers-reduced-motion: アニメーション無効環境のフォールバック */
@media (prefers-reduced-motion: reduce) {
  .anim-fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================
   ページローディングオーバーレイ (2026-06-18)
   ========================================================== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity .55s cubic-bezier(.22,.61,.36,1),
              visibility .55s;
  gap: 20px;
}
#page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ロゴテキスト */
.page-loader__logo {
  font-family: var(--font), sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: .14em;
  color: rgba(255,255,255,.9);
  display: flex;
  gap: .04em;
}

/* 文字1つずつ stagger fade-up */
.page-loader__logo span {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
  animation: loader-char-in .5s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes loader-char-in {
  to { opacity: 1; transform: none; }
}

/* ドットウェーブ */
.page-loader__dots {
  display: flex;
  gap: 7px;
  margin-top: 4px;
}
.page-loader__dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-mid);
  animation: loader-dot .9s ease-in-out infinite;
}
.page-loader__dots span:nth-child(2) { animation-delay: .18s; }
.page-loader__dots span:nth-child(3) { animation-delay: .36s; }

@keyframes loader-dot {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50%       { opacity: 1;   transform: translateY(-5px); }
}

/* ==========================================================
   ページロードバー
   ========================================================== */
#page-load-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-mid));
  z-index: 99999;
  pointer-events: none;
  transition: width 1.6s cubic-bezier(.22,.61,.36,1), opacity .5s;
  border-radius: 0 2px 2px 0;
}

/* ==========================================================
   おすすめ物件カード — 種別バッジ（マンション / 戸建）
   ========================================================== */
.prop-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 3px;
  line-height: 1.6;
  margin-bottom: 4px;
}

.prop-badge--mansion {
  background: var(--accent-lt);
  color: var(--accent);
  border: 1px solid rgba(45,106,79,.2);
}

.prop-badge--kodate {
  background: #fff4e5;
  color: #a05c10;
  border: 1px solid rgba(160,92,16,.2);
}

.prop-badge--apart {
  background: #e8f0ff;
  color: #2d50a0;
  border: 1px solid rgba(45,80,160,.2);
}

/* 画像なしプレースホルダー */
/* 背景URLはPHPが :root へ --no-image-url として注入（サブディレクトリ対応） */
.prop-noimg {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--no-image-url, #f4f7f5) center/contain no-repeat #f4f7f5;
  display: block;
}

/* ==========================================================
   検索結果ページ — ヒット件数ヘッダー
   ========================================================== */
.site-section--results-header {
  padding: 24px 0 0;
}

.results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.results-header__count {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-sub);
  margin: 0;
}

.results-header__count strong {
  font-size: 22px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -.5px;
}

.results-header__reset {
  font-size: 13px;
  color: var(--text-sub);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}

.results-header__reset:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ==========================================================
   検索結果ページ — 物件グリッド（#list_simplepage.is-search-results）
   ========================================================== */
#list_simplepage.is-search-results {
  padding: 24px 0 40px;
}

#list_simplepage.is-search-results article {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

#list_simplepage.is-search-results article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* 検索結果: グリッドレイアウト上書き */
#list_simplepage.is-search-results ul,
#list_simplepage.is-search-results .list_box_list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 900px) {
  #list_simplepage.is-search-results ul,
  #list_simplepage.is-search-results .list_box_list {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .results-header { flex-direction: column; align-items: flex-start; }
  #list_simplepage.is-search-results ul,
  #list_simplepage.is-search-results .list_box_list {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================
   検索結果ページ — ページナビゲーション（fudou native）
   ========================================================== */
.navigation.hentry.fudo-pagination {
  max-width: 1280px;
  margin: 0 auto !important;
  padding: 0 24px 48px !important;
  border: none !important;
  background: none !important;
  display: block !important;
  overflow: visible !important;
  float: none !important;
}

/* sort リンクは隠す（JS でも非表示、CSS でも保険） */
.navigation.hentry.fudo-pagination .nav-previous {
  display: none !important;
}

.navigation.hentry.fudo-pagination .nav-next {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 8px 0 !important;
  border: none !important;
  background: none !important;
  float: none !important;
  width: 100% !important;
}

/* 件数ラベル（JS で .fudo-pagination__label として生成） */
.fudo-pagination__label {
  display: block;
  font-size: 13px;
  color: var(--text-sub);
  letter-spacing: .04em;
}

/* ページリンク行（JS で .fudo-pagination__pages として生成） */
.fudo-pagination__pages {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

/* ページリンク共通 */
.fudo-pagination__pages a,
.fudo-pagination__pages span,
.fudo-pagination__pages b {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 14px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: .03em !important;
  text-decoration: none !important;
  transition: background .18s, color .18s, border-color .18s !important;
  line-height: 1 !important;
}

/* 通常ページリンク */
.fudo-pagination__pages a {
  background: var(--surface) !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
}

.fudo-pagination__pages a:hover {
  background: var(--accent-lt) !important;
  border-color: var(--accent) !important;
  color: var(--accent) !important;
}

/* 現在ページ */
.fudo-pagination__pages span.current,
.fudo-pagination__pages b {
  background: var(--accent) !important;
  color: #fff !important;
  border: 1px solid var(--accent) !important;
  font-weight: 500 !important;
}

/* "..." の省略表示 */
.fudo-pagination__pages span:not(.current) {
  background: none !important;
  border: none !important;
  color: var(--text-sub) !important;
  min-width: 24px !important;
  padding: 0 4px !important;
}

@media (max-width: 560px) {
  .fudo-pagination__pages a,
  .fudo-pagination__pages span.current,
  .fudo-pagination__pages b {
    min-width: 36px !important;
    height: 36px !important;
    font-size: 13px !important;
  }
}


/* ============================================================
   メリットセクション（TOPページ / ヒーロー直下）
   2026-06-23 redesign
   ============================================================ */

.site-section--merits {
  background: var(--dark-green);
  padding: 80px 0;
  /* #page レベルに挿入されるため margin 不要 */
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* 背景の光彩装飾 */
.site-section--merits::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -5%;
  width: 55%;
  height: 220%;
  background: radial-gradient(ellipse, rgba(45,106,79,.4) 0%, transparent 65%);
  pointer-events: none;
}
.site-section--merits::after {
  content: '';
  position: absolute;
  bottom: -60%;
  right: -5%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(61,136,98,.25) 0%, transparent 65%);
  pointer-events: none;
}

.site-section--merits .site-section__inner { position: relative; z-index: 1; }
.site-section--merits .section-head {
  border-bottom-color: rgba(255,255,255,.12);
}
.site-section--merits .section-head__en  { color: var(--accent-mid); }
.site-section--merits .section-head__ja  { color: #fff; }
.site-section--merits .section-head__ja::after { background: var(--accent-mid); }

/* グリッド */
.merits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* ── カード ── */
.merit-card {
  position: relative;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px 22px 28px;
  overflow: hidden;
  /* 出現アニメーション初期状態 */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22,.68,0,1.2),
              box-shadow .3s ease, background .3s ease;
}
/* JS で .is-visible 付与で出現 */
.merit-card.is-visible          { opacity: 1; transform: none; }
.merit-card.is-visible:nth-child(2) { transition-delay: .13s; }
.merit-card.is-visible:nth-child(3) { transition-delay: .26s; }

/* ホバー */
.merit-card:hover {
  transform: translateY(-6px) !important;
  background: rgba(255,255,255,.1);
  box-shadow: 0 24px 56px rgba(0,0,0,.45),
              0 0 0 1px rgba(61,136,98,.5),
              inset 0 1px 0 rgba(255,255,255,.12);
}

/* カード上部グラデーションライン */
.merit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-mid) 100%);
  opacity: .6;
  transition: opacity .3s;
}
.merit-card:hover::before { opacity: 1; }

/* 背景装飾ナンバー */
.merit-card__num {
  position: absolute;
  bottom: -4px;
  right: 14px;
  font-family: var(--font-en), sans-serif;
  font-size: 88px;
  font-weight: 800;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color .3s;
}
.merit-card:hover .merit-card__num { color: rgba(255,255,255,.08); }

/* アイコン */
.merit-card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-mid) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(45,106,79,.55);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2), box-shadow .3s ease;
}
.merit-card:hover .merit-card__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 28px rgba(45,106,79,.7);
}

/* テキスト */
.merit-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.45;
  margin: 0 0 10px;
  letter-spacing: .02em;
}
.merit-card__body {
  font-size: 12px;
  color: rgba(255,255,255,.58);
  line-height: 1.75;
  margin: 0;
}
.merit-card__body small {
  display: block;
  margin-top: 8px;
  font-size: 10px;
  color: rgba(255,255,255,.32);
}

/* ── モバイル対応 ── */
@media (max-width: 768px) {
  /* #page レベル挿入なのでモバイルでも margin 不要 */
}
@media (max-width: 560px) {
  .site-section--merits { padding: 48px 0; }
  .merits-grid { gap: 8px; margin-top: 28px; }
  .merit-card { padding: 18px 12px 16px; border-radius: 12px; }
  .merit-card__icon {
    width: 40px; height: 40px;
    border-radius: 10px; margin-bottom: 12px;
  }
  .merit-card__icon svg { width: 22px; height: 22px; }
  .merit-card__num { font-size: 60px; right: 10px; }
  .merit-card__title { font-size: 11px; margin-bottom: 6px; letter-spacing: 0; }
  .merit-card__body { font-size: 10px; line-height: 1.6; }
  .merit-card__body small { font-size: 9px; margin-top: 5px; }
}


/* ============================================================
   住宅ローンシミュレーション（TOPページ / ヒーロー直下）
   ============================================================ */
.site-section--loan {
  background: var(--bg);
  padding: 80px 24px;
}
.site-section--loan .site-section__inner {
  max-width: 900px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: 20px;
  padding: 48px 52px 44px;
  box-shadow: var(--shadow);
}
.site-section--loan .section-head__en { color: var(--accent); }

/* 入力グループ */
.loan-calc { margin-top: 32px; }
.loan-calc__inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.loan-calc__field { display: flex; flex-direction: column; gap: 6px; }
.loan-calc__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--text-sub);
  text-transform: uppercase;
}
.loan-calc__input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color .2s;
}
.loan-calc__input-wrap:focus-within { border-color: var(--accent); }
.loan-calc__input,
.loan-calc__select {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  font-family: var(--font-en), var(--font);
  min-width: 0;
  -moz-appearance: textfield;
}
.loan-calc__input::-webkit-outer-spin-button,
.loan-calc__input::-webkit-inner-spin-button { -webkit-appearance: none; }
.loan-calc__unit { font-size: 12px; color: var(--text-sub); white-space: nowrap; }

/* 結果グリッド */
.loan-calc__results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
}
.loan-calc__result-item {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.loan-calc__result-item:last-child { border-right: none; }
.loan-calc__result-item--main { background: var(--accent-lt); }
.loan-calc__result-label {
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.5;
}
.loan-calc__result-label small { display: block; font-size: 10px; }
.loan-calc__result-val-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-wrap: wrap;
}
.loan-calc__result-val {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-en), var(--font);
  line-height: 1;
  letter-spacing: -.02em;
}
.loan-calc__result-item--main .loan-calc__result-val {
  font-size: 34px;
  color: var(--accent);
}
.loan-calc__result-unit { font-size: 12px; color: var(--text-sub); }
.loan-calc__note {
  margin-top: 18px;
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.8;
  padding-left: 12px;
  border-left: 3px solid var(--border);
}

/* モバイル */
@media (max-width: 768px) {
  .site-section--loan { padding: 48px 16px; }
  .site-section--loan .site-section__inner {
    padding: 28px 20px 24px;
    border-radius: 14px;
  }
  .loan-calc__inputs { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .loan-calc__results { grid-template-columns: repeat(2, 1fr); }
  .loan-calc__result-item:nth-child(2) { border-right: none; }
  .loan-calc__result-item:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .loan-calc__result-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .loan-calc__result-val { font-size: 22px; }
  .loan-calc__result-item--main .loan-calc__result-val { font-size: 26px; }
}
@media (max-width: 480px) {
  .loan-calc__inputs { grid-template-columns: 1fr 1fr; }
  .loan-calc__results { grid-template-columns: 1fr; }
  .loan-calc__result-item { border-right: none; border-bottom: 1px solid var(--border); }
  .loan-calc__result-item:last-child { border-bottom: none; }
  .loan-calc__result-item:nth-child(3) { border-right: none; }
}

/* ============================================================
   会社概要ページ（page-kaisha.php）
   ============================================================ */

/* ── ヒーローバー ── */
.kaisha-hero {
  background: var(--dark-green);
  padding: 72px 24px 56px;
  text-align: center;
}
.kaisha-hero__eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--accent-mid);
  margin-bottom: 12px;
}
.kaisha-hero__title {
  font-size: 32px;
  font-weight: 300;
  color: #fff;
  letter-spacing: .12em;
  margin: 0;
}

/* ── テーブルセクション ── */
.kaisha-section {
  padding: 72px 24px 80px;
  background: var(--bg);
}
.kaisha-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.kaisha-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  table-layout: fixed;
}
.kaisha-table th,
.kaisha-table td {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.8;
  vertical-align: top;
  text-align: left;
}
.kaisha-table tr:last-child th,
.kaisha-table tr:last-child td { border-bottom: none; }
.kaisha-table th {
  width: 160px;
  font-weight: 600;
  color: var(--text-sub);
  font-size: 13px;
  letter-spacing: .04em;
  white-space: nowrap;
  background: var(--bg);
}
.kaisha-table td { color: var(--text); }

/* 特徴タグリスト */
.kaisha-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kaisha-feature-list li {
  background: var(--accent-lt);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .03em;
}

/* 取扱物件リスト */
.kaisha-type-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.kaisha-type-list li {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 6px;
}

/* ── CTA ── */
.kaisha-cta {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 24px;
  text-align: center;
}
.kaisha-cta__inner { max-width: 600px; margin: 0 auto; }
.kaisha-cta__text {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 24px;
}
.kaisha-cta__btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  padding: 14px 40px;
  border-radius: 40px;
  text-decoration: none;
  transition: background .2s;
}
.kaisha-cta__btn:hover { background: var(--accent-mid); color: #fff; }

/* モバイル */
@media (max-width: 768px) {
  .kaisha-hero { padding: 52px 16px 40px; }
  .kaisha-hero__title { font-size: 24px; }
  .kaisha-section { padding: 40px 16px 56px; }
  .kaisha-table th,
  .kaisha-table td { padding: 16px 18px; }
  .kaisha-table th { width: 100px; font-size: 12px; }
  .kaisha-table td { font-size: 13px; }
}
@media (max-width: 480px) {
  .kaisha-table { display: block; }
  .kaisha-table tbody { display: block; }
  .kaisha-table tr { display: block; border-bottom: 1px solid var(--border); padding: 16px 18px; }
  .kaisha-table tr:last-child { border-bottom: none; }
  .kaisha-table th,
  .kaisha-table td { display: block; border: none; padding: 0; width: 100%; }
  .kaisha-table th { margin-bottom: 8px; }
}

/* ============================================================
   投稿詳細ページ（single.php）
   2026-06-23
   ============================================================ */

/* ── アイキャッチ画像（オーバーレイなし・全体表示） ── */
.article-eyecatch {
  width: 100%;
  background: var(--surface);
}
.article-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── タイトル・メタエリア（画像の下） ────────────── */
.article-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.article-header__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 32px 24px 28px;
}
.article-hero__cat {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-en), sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  border-radius: 4px;
  padding: 3px 10px;
  text-decoration: none;
  margin-bottom: 14px;
}
.article-header__title {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 500;
  color: var(--text);
  line-height: 1.55;
  letter-spacing: .02em;
  margin: 12px 0 12px;
}
.article-header__date {
  font-size: 13px;
  color: var(--text-sub);
  font-family: var(--font-en), sans-serif;
}

/* 旧ヒーロー（後方互換・非表示） */
.article-hero { display: none; }

/* ── 記事ラップ ────────────────────────────────────── */
.article-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

/* ── 目次 ──────────────────────────────────────────── */
.article-toc {
  background: var(--accent-lt);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  margin-bottom: 48px;
  overflow: hidden;
}
.article-toc__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  cursor: pointer;
  gap: 8px;
}
.article-toc__head {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
}
.article-toc__arrow {
  font-size: 11px;
  color: var(--accent);
  flex-shrink: 0;
}
.article-toc__list {
  margin: 0;
  padding: 0 20px 16px 20px;
  list-style: none;
  counter-reset: toc;
}
.article-toc__item {
  margin: 0;
  padding: 0;
}
.article-toc__item a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px dashed var(--border);
  line-height: 1.5;
}
.article-toc__item a:hover { color: var(--accent); }
.article-toc__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-family: var(--font-en), sans-serif;
  flex-shrink: 0;
  counter-increment: toc;
}
.article-toc__item--h3 a {
  padding-left: 28px;
  font-size: 12px;
  color: var(--text-sub);
  border-bottom-color: transparent;
}
.article-toc__item--h3 a:hover { color: var(--accent); }

/* ── 本文 ──────────────────────────────────────────── */
.article-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  word-break: break-word;
}
.article-body h2 {
  font-size: 22px;
  font-weight: 600;
  border-left: 4px solid var(--accent);
  padding: 4px 0 4px 14px;
  margin: 56px 0 24px;
  line-height: 1.4;
  color: var(--text);
}
.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
  margin: 40px 0 20px;
  color: var(--text);
}
.article-body h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}
.article-body p {
  margin: 0 0 24px;
}
.article-body a {
  color: var(--accent);
  text-decoration: underline;
}
.article-body a:hover { color: var(--accent-mid); }
.article-body ul,
.article-body ol {
  margin: 0 0 24px;
  padding-left: 1.6em;
}
.article-body li { margin-bottom: 6px; }
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto 24px;
}
.article-body blockquote {
  border-left: 4px solid var(--border);
  padding: 12px 20px;
  margin: 0 0 24px;
  background: #f9faf9;
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--text-sub);
  font-style: italic;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 24px;
  font-size: 14px;
}
.article-body th,
.article-body td {
  padding: 10px 14px;
  border: 1px solid var(--border);
  text-align: left;
}
.article-body th {
  background: var(--accent-lt);
  font-weight: 600;
}
.article-body tr:nth-child(even) td { background: #f9faf9; }

/* ── SNS シェア ─────────────────────────────────────── */
.article-share {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.article-share__label {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 16px;
  letter-spacing: .05em;
}
.article-share__btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity .2s;
  line-height: 1;
}
.article-share__btn:hover { opacity: .8; }
.article-share__btn--x {
  background: #000;
  color: #fff;
}
.article-share__btn--line {
  background: #06c755;
  color: #fff;
}
.article-share__btn--copy {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.article-share__btn--copy.is-copied {
  background: var(--accent-lt);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── 関連記事 ────────────────────────────────────────── */
.related-posts {
  background: var(--bg);
  padding: var(--section-pad, 64px) 0;
  margin-top: 0;
}
.related-posts__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.related-posts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── モバイル対応 ─────────────────────────────────────── */
@media (max-width: 768px) {
  .article-header__inner { padding: 24px 20px 20px; }
  .article-wrap { padding: 40px 20px 56px; }
  .article-body { font-size: 15px; }
  .article-body h2 { font-size: 19px; margin: 40px 0 18px; }
  .article-body h3 { font-size: 16px; }
}
@media (max-width: 560px) {
  .article-header__title { font-size: 18px; }
  .article-wrap { padding: 28px 16px 48px; }
  .article-body { font-size: 14px; line-height: 1.8; }
  .article-body h2 { font-size: 17px; }
  .article-body h3 { font-size: 15px; }
  .article-toc__list { padding: 0 16px 12px; }
  .article-share__btns { gap: 8px; }
  .article-share__btn { padding: 9px 16px; font-size: 12px; }
  .related-posts__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* 親テーマのブレッドクラムなどを非表示 */
.single .site-content-contain #bread-out,
.single .entry-header,
.single .entry-meta { display: none !important; }

/* ============================================================
   周辺地図 (.prop-map) — 物件詳細ページ
   ============================================================ */
.prop-map {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 28px 0;
  box-shadow: var(--shadow);
}
.prop-map__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.prop-map__icon {
  display: flex;
  align-items: center;
  color: var(--accent);
}
.prop-map__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
}
.prop-map__address {
  font-size: 11px;
  color: var(--text-sub);
  margin-left: auto;
}
.prop-map__frame {
  width: 100%;
  line-height: 0;
}
.prop-map__frame iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
@media (max-width: 560px) {
  .prop-map__frame iframe { height: 280px; }
  .prop-map__address { display: none; }
}

/* ============================================================
   簡易物件レポート (.prop-report) — BIダッシュボード風
   single-fudo 詳細ページ — .list_simple_box の直後に挿入
   ============================================================ */
.prop-report {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(45,106,79,.10);
  padding: 28px 32px 24px;
  margin: 32px auto 12px;
  max-width: 720px;
}

/* ヘッダー行: タイトル左 / スコア右 */
.prop-report__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}
.prop-report__label-en {
  display: block;
  font-family: var(--font-en), sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-sub);
  margin-bottom: 4px;
}
.prop-report__title {
  font-family: var(--font), sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.3;
}

/* スコア表示 */
.prop-report__score-wrap { text-align: right; }
.prop-report__score-val {
  font-family: var(--font-en), sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.prop-report__score-val small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-sub);
  vertical-align: baseline;
}
.prop-report__score-bar {
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  margin-top: 7px;
  width: 96px;
  margin-left: auto;
}
.prop-report__score-fill {
  height: 100%;
  border-radius: 3px;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}

/* 評価3項目 */
.prop-report__metrics {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}
.prop-report__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: var(--bg);
  font-size: 14px;
}
.prop-report__row:hover { background: var(--accent-lt); }
.prop-report__label {
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 500;
  min-width: 76px;
}
.prop-report__badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.prop-report__badge--good    { background: #d1fae5; color: #065f46; }
.prop-report__badge--normal  { background: #fef3c7; color: #92400e; }
.prop-report__badge--caution { background: #fee2e2; color: #991b1b; }
.prop-report__num {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-sub);
  font-family: var(--font-en), sans-serif;
  white-space: nowrap;
}

/* 追加情報（間取り・管理費・駐車場） */
.prop-report__extras {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.prop-report__extra {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 10px;
}
.prop-report__extra span:first-child {
  color: var(--text-sub);
  font-weight: 500;
}
.prop-report__extra span:last-child {
  color: var(--text);
  font-weight: 600;
}

/* 指標データグリッド */
.prop-report__datagrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.prop-report__di {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--bg);
  border-radius: 8px;
  padding: 10px 12px;
}
.prop-report__di-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--text-sub);
  text-transform: uppercase;
}
.prop-report__di-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-en), var(--font), sans-serif;
}
@media (max-width: 768px) {
  .prop-report__datagrid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .prop-report__di { padding: 8px 10px; }
  .prop-report__di-val { font-size: 13px; }
}

/* 一言コメント */
.prop-report__comment {
  background: var(--accent-lt);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.8;
}

/* モバイル */
@media (max-width: 768px) {
  .prop-report { padding: 20px 18px; margin: 20px auto 8px; }
  .prop-report__score-val { font-size: 26px; }
  .prop-report__score-bar { width: 72px; }
  .prop-report__label { min-width: 64px; font-size: 11px; }
  .prop-report__badge { font-size: 11px; padding: 2px 9px; }
  .prop-report__num { font-size: 11px; }
  .prop-report__comment { font-size: 12px; }
}

/* ============================================================
   物件分析レポート 拡張パーツ
   ============================================================ */

/* スコアラベル */
.prop-report__score-label {
  font-size: 10px;
  color: var(--text-sub);
  text-align: right;
  margin-top: 2px;
  letter-spacing: .04em;
}

/* セクション共通 */
.prop-report__sections { display: flex; flex-direction: column; gap: 0; }
.prop-report__sec {
  border-top: 1px solid var(--border);
  padding: 16px 0 4px;
}
.prop-report__sec:first-child { border-top: none; }
.prop-report__sec-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}
.prop-report__sec-icon { font-size: 15px; line-height: 1; }
.prop-report__sec-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .05em;
  text-transform: uppercase;
  flex: 1;
}
.prop-report__sec-badge { margin-left: auto; font-size: 10px !important; }
.prop-report__sec-body { padding: 0 2px 10px; }

/* 相場比較バー */
.prop-report__compare { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.prop-report__compare-row { display: flex; align-items: center; gap: 8px; }
.prop-report__compare-label {
  font-size: 11px;
  color: var(--text-sub);
  min-width: 76px;
  flex-shrink: 0;
}
.prop-report__compare-bar-wrap {
  flex: 1;
  background: #eef3f0;
  border-radius: 4px;
  height: 10px;
  overflow: hidden;
}
.prop-report__compare-bar {
  height: 100%;
  border-radius: 4px;
  transition: width .6s ease;
}
.prop-report__compare-bar--prop { background: var(--accent); }
.prop-report__compare-bar--mkt  { background: #a8c4b8; }
.prop-report__compare-bar--ref  { background: #c9ddd5; }
.prop-report__compare-row--ref  { opacity: .55; }
.prop-report__compare-val--ref  { color: var(--text-sub); }
.prop-report__compare-val {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  min-width: 84px;
  text-align: right;
}
.prop-report__compare-val small { font-size: 9px; font-weight: 400; margin-left: 1px; }
.prop-report__compare-note {
  font-size: 11px;
  color: var(--text-sub);
  margin: 4px 0 0;
  line-height: 1.5;
}
.prop-report__compare-note strong { color: var(--accent); }

/* ローン試算 */
.prop-report__loan {
  background: var(--accent-lt);
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 10px;
}
.prop-report__loan-head {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 8px;
  letter-spacing: .03em;
}
.prop-report__loan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 6px; }
.prop-report__loan-item {
  background: var(--surface);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.prop-report__loan-label { font-size: 10px; color: var(--text-sub); }
.prop-report__loan-val   { font-size: 12px; color: var(--text); }
.prop-report__loan-val strong { font-size: 17px; color: var(--accent); }
.prop-report__loan-total {
  font-size: 11px;
  color: var(--text);
  margin: 4px 0 0;
}
.prop-report__loan-total strong { color: var(--accent); }
.prop-report__loan-note { font-size: 10px; color: var(--text-sub); margin: 6px 0 0; line-height: 1.4; }

/* 耐震バッジ */
.prop-report__quake-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.prop-report__quake-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: .03em;
}
.prop-report__quake-badge--good    { background: #d1fae5; color: #065f46; }
.prop-report__quake-badge--normal  { background: #fef3c7; color: #92400e; }
.prop-report__quake-badge--caution { background: #fee2e2; color: #991b1b; }
.prop-report__quake-age  { font-size: 11px; color: var(--text-sub); }
.prop-report__quake-note { font-size: 11px; color: var(--text-sub); line-height: 1.55; margin: 0 0 8px; }
.prop-report__cost-row   { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }
.prop-report__cost-item  { font-size: 11px; color: var(--text-sub); }
.prop-report__cost-item strong { color: var(--text); }

/* 立地評価 */
.prop-report__walk-val  { font-size: 14px; color: var(--text); margin: 0 0 4px; }
.prop-report__walk-val strong { font-size: 20px; color: var(--accent); }
.prop-report__walk-note { font-size: 11px; color: var(--text-sub); margin: 0; line-height: 1.5; }

/* 周辺施設 */
.prop-report__fac-loading {
  font-size: 12px;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}
.prop-report__fac-spin {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid #ccc;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: pr-spin .8s linear infinite;
  flex-shrink: 0;
}
@keyframes pr-spin { to { transform: rotate(360deg); } }
.prop-report__fac-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.prop-report__fac-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--accent-lt);
  border-radius: 6px;
  padding: 8px 10px;
}
.prop-report__fac-item--none { opacity: .5; background: #f5f5f5; }
.prop-report__fac-icon  { font-size: 18px; line-height: 1; flex-shrink: 0; }
.prop-report__fac-info  { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.prop-report__fac-name  { font-size: 10px; font-weight: 600; color: var(--text); letter-spacing: .03em; }
.prop-report__fac-stat  { font-size: 11px; color: var(--text-sub); line-height: 1.4; word-break: break-all; }
.prop-report__fac-stat strong { color: var(--accent); }
.prop-report__fac-link  {
  display: inline-block;
  font-size: 11px;
  color: var(--accent);
  text-decoration: underline;
  margin-top: 4px;
}

/* 水害リスク */
.prop-report__hazard-text {
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0 0 10px;
}
.prop-report__hazard-links { display: flex; gap: 8px; flex-wrap: wrap; }
.prop-report__hazard-link {
  font-size: 11px;
  color: #fff;
  background: #991b1b;
  padding: 4px 10px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
.prop-report__hazard-link:hover { background: #7f1d1d; }

/* 内覧チェックリスト */
.prop-report__checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.prop-report__checklist li {
  font-size: 11px;
  color: var(--text);
  padding: 6px 10px 6px 28px;
  background: var(--accent-lt);
  border-radius: 4px;
  position: relative;
  line-height: 1.5;
}
.prop-report__checklist li::before {
  content: '□';
  position: absolute;
  left: 10px;
  color: var(--accent);
  font-size: 12px;
}

/* 投資指標グリッド */
.prop-report__invest {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 10px 0;
}
.prop-report__invest-item {
  background: var(--accent-lt);
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.prop-report__invest-label {
  font-size: 9px;
  color: var(--text-sub);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.prop-report__invest-val { font-size: 13px; color: var(--text); font-weight: 600; }
.prop-report__invest-val strong { font-size: 18px; color: var(--accent); }
.prop-report__invest-val small  { font-size: 9px; font-weight: 400; color: var(--text-sub); margin-left: 1px; }
/* 3列レイアウト（項目が少ないとき幅を広げて大きく見せる）*/
.prop-report__invest--3col { grid-template-columns: repeat(3, 1fr); }
.prop-report__invest--3col .prop-report__invest-val strong { font-size: 22px; }
.prop-report__invest--3col .prop-report__invest-label { font-size: 10px; }

/* 資産価値シミュレーション */
.prop-report__future {
  background: #f8fbf9;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  margin: 10px 0;
}
.prop-report__future-head {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 10px;
  letter-spacing: .03em;
}
.prop-report__future-head small { font-weight: 400; color: var(--text-sub); font-size: 10px; }
.prop-report__future-row {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 8px;
}
.prop-report__future-arrow {
  font-size: 18px;
  color: var(--border);
  display: flex;
  align-items: center;
  padding: 0 2px;
}
.prop-report__future-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 4px;
  text-align: center;
}
.prop-report__future-item--now { border-color: var(--accent); background: var(--accent-lt); }
.prop-report__future-label { font-size: 9px; color: var(--text-sub); letter-spacing: .03em; }
.prop-report__future-val   { font-size: 11px; color: var(--text); font-weight: 600; }
.prop-report__future-val strong { font-size: 14px; color: var(--accent); }
.prop-report__future-chg   { font-size: 10px; color: #991b1b; font-weight: 600; }
.prop-report__future-chg--base { color: var(--accent); }
.prop-report__future-note  { font-size: 10px; color: var(--text-sub); margin: 0; line-height: 1.4; }

/* エリアトレンドコメント */
.prop-report__trend-note {
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.65;
  margin: 8px 0 0;
  padding: 8px 10px;
  background: var(--accent-lt);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

/* 生活利便スコア */
.prop-report__life-score { margin-bottom: 12px; }
.prop-report__life-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.prop-report__life-label { font-size: 11px; color: var(--text-sub); flex: 1; }
.prop-report__life-num   { font-size: 18px; font-weight: 700; }
.prop-report__life-num small { font-size: 11px; font-weight: 400; color: var(--text-sub); }
.prop-report__life-bar-wrap {
  height: 8px;
  background: #eef3f0;
  border-radius: 4px;
  overflow: hidden;
}
.prop-report__life-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .8s ease;
}

/* 周辺施設 8カテゴリグリッド */
.prop-report__fac-grid8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}
.prop-report__fac-place {
  display: block;
  font-size: 10px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.prop-report__fac-sub {
  display: block;
  font-size: 10px;
  color: var(--text-sub);
  margin-top: 2px;
  padding-top: 2px;
  border-top: 1px solid #e8f0ec;
}
.prop-report__fac-sub strong { color: var(--accent); font-size: 10px; }
.prop-report__fac-cnt {
  display: block;
  font-size: 9px;
  color: var(--text-sub);
  margin-top: 3px;
  letter-spacing: .02em;
}

/* 周辺施設 詳細リスト */
.prop-report__fac-list { margin: 10px 0; }
.prop-report__fac-list-head {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 6px;
  letter-spacing: .04em;
}
.prop-report__fac-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.prop-report__fac-list-items li {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 6px;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}
.prop-report__fac-list-items li:last-child { border-bottom: none; }
.prop-report__fac-list-icon  { font-size: 13px; flex-shrink: 0; }
.prop-report__fac-list-name  { flex: 1; color: var(--text); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.prop-report__fac-list-dist  { color: var(--text-sub); flex-shrink: 0; font-size: 10px; text-align: right; }
.prop-report__fac-list-dist strong { color: var(--accent); font-size: 11px; }

/* モバイル */
@media (max-width: 768px) {
  .prop-report__invest    { grid-template-columns: repeat(2, 1fr); }
  .prop-report__fac-grid8 { grid-template-columns: repeat(2, 1fr); }
  .prop-report__future-row { flex-wrap: wrap; }
  .prop-report__future-arrow { display: none; }
  .prop-report__future-item { min-width: 0; }
  .prop-report__compare-label { min-width: 60px; font-size: 10px; }
  .prop-report__compare-val   { min-width: 64px; font-size: 11px; }
  .prop-report__sec-title  { font-size: 11px; }
}

/* ============================================================
   物件詳細 問い合わせパネル (.contact-panel)
   ============================================================ */
.contact-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px 24px;
  margin: 32px 0;
  text-align: center;
}
.contact-panel__lead {
  font-size: 14px;
  color: var(--text-sub);
  margin: 0 0 20px;
}
.contact-panel__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
  min-width: 220px;
  justify-content: center;
}
.contact-panel__btn:hover {
  opacity: .85;
  transform: translateY(-2px);
  text-decoration: none;
}
.contact-panel__btn--line {
  background: #06C755;
  color: #fff;
}
.contact-panel__btn--mail {
  background: var(--accent);
  color: #fff;
}
.contact-panel__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.contact-panel__note {
  font-size: 12px;
  color: var(--text-sub);
  margin: 16px 0 0;
}
@media (max-width: 768px) {
  .contact-panel { padding: 24px 16px 20px; }
  .contact-panel__btn { min-width: 100%; padding: 14px 20px; font-size: 14px; }
  .contact-panel__btns { flex-direction: column; }
}

/* ============================================================
   問い合わせモーダル (#contact-modal-overlay)
   ============================================================ */
#contact-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
#contact-modal-overlay.is-open {
  display: flex;
}
.contact-modal {
  background: var(--surface);
  border-radius: 12px;
  padding: 36px 32px 28px;
  width: 100%;
  max-width: 480px;
  position: relative;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
}
.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-sub);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.contact-modal__close:hover { color: var(--text); }
.contact-modal__lead {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 24px;
}
.contact-modal__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.contact-modal__btn:hover {
  opacity: .85;
  transform: translateY(-2px);
  text-decoration: none;
}
.contact-modal__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.contact-modal__btn--line { background: #06C755; color: #fff; }
.contact-modal__btn--mail { background: var(--accent); color: #fff; }
.contact-modal__note {
  font-size: 12px;
  color: var(--text-sub);
  margin: 16px 0 0;
}
@media (max-width: 480px) {
  .contact-modal { padding: 28px 20px 24px; }
}

/* ============================================================
   ローンシミュレーター (.loan-sim)
   ============================================================ */
.loan-sim {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 28px 20px;
  margin: 24px 0 8px;
}
.loan-sim__title {
  font-family: var(--font-en), var(--font), sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.loan-sim__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
/* 入力フィールド群 */
.loan-sim__inputs { display: flex; flex-direction: column; gap: 14px; }
.loan-sim__field  { display: flex; flex-direction: column; gap: 5px; }
.loan-sim__label  { font-size: 12px; color: var(--text-sub); font-weight: 500; }
.loan-sim__input-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}
.loan-sim__input,
.loan-sim__select {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
  max-width: 120px;
}
.loan-sim__select { max-width: 140px; }
.loan-sim__input:focus,
.loan-sim__select:focus { border-color: var(--accent); }
.loan-sim__unit { font-size: 13px; color: var(--text-sub); white-space: nowrap; }
/* 結果表示 */
.loan-sim__results {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.loan-sim__result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  font-size: 13px;
  border-bottom: 1px solid var(--border);
}
.loan-sim__result-row:last-child { border-bottom: none; }
.loan-sim__result-label { color: var(--text-sub); }
.loan-sim__result-val   { font-weight: 600; color: var(--text); }
.loan-sim__result-row--monthly .loan-sim__result-val,
.loan-sim__result-row--total   .loan-sim__result-val {
  color: var(--accent);
  font-size: 15px;
}
.loan-sim__result-row--total { background: var(--accent-lt); }
.loan-sim__note {
  font-size: 11px;
  color: var(--text-sub);
  margin: 14px 0 0;
}
@media (max-width: 768px) {
  .loan-sim { padding: 18px 16px 16px; }
  .loan-sim__body { grid-template-columns: 1fr; gap: 16px; }
  .loan-sim__input { max-width: 100%; }
  .loan-sim__select { max-width: 100%; }
}

/* ============================================================
   物件アーカイブ カード レイアウト（2026-06-24 改修）
   親テーマ archive-fudo-loop.php v5.9.0 のDOM構造:
   article.hentry > div.list_picsam
     > div.list_picsam_img     ← 画像
     > span.top_title          ← タイトル
     > div.list_price.rent > ul
         > li.price-box        ← 価格（dpoint4）
         > li:nth-child(2)     ← 間取り（dpoint4）
     > div.list_address        ← 所在地（非表示）
     > div.list_address_koutu  ← 交通・駅徒歩
     > div.list_price_others   ← 詳細ボタン
   ============================================================ */

/* ── カード本体（article.hentry） ── */
#list_simplepage .hentry {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .25s ease, transform .25s ease;
  display: inline-flex !important;
  flex-direction: column;
  width: 100% !important;
  vertical-align: top;
}
#list_simplepage .hentry:hover {
  box-shadow: 0 8px 28px rgba(45,106,79,.14);
  transform: translateY(-3px);
}

/* ── .list_picsam = カード内コンテナ ── */
#list_simplepage .list_picsam {
  display: flex;
  flex-direction: column;
  flex: 1;
  float: none !important;
  width: 100% !important;
}

/* ── 画像 ── */
#list_simplepage .list_picsam_img {
  width: 100% !important;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eaeaea;
  flex-shrink: 0;
  position: relative;
}
#list_simplepage .list_picsam_img a {
  display: block;
  width: 100%;
  height: 100%;
}
#list_simplepage .list_picsam_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
#list_simplepage .hentry:hover .list_picsam_img img {
  transform: scale(1.04);
}

/* ── タイトル（span.top_title） ── */
#list_simplepage .top_title {
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  padding: 12px 14px 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
}

/* ── 価格リスト ── */
#list_simplepage .list_price.rent {
  padding: 4px 14px 0;
  background: none !important;
  border: none !important;
}
#list_simplepage .list_price.rent ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 3番目以降のli（坪単価・管理費等）を非表示 */
#list_simplepage .list_price.rent ul li:nth-child(n+3) {
  display: none !important;
}

/* 価格（1番目 .price-box）「価格」ラベルと末尾の「円」テキストを非表示 */
#list_simplepage .list_price.rent ul li.price-box {
  font-size: 0;
  padding: 0;
  line-height: 1;
}
#list_simplepage .list_price.rent ul li.price-box .dpoint4 {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #e05a00;
  letter-spacing: -.3px;
  line-height: 1.3;
}

/* 間取り（2番目のli） */
#list_simplepage .list_price.rent ul li:nth-child(2) {
  display: block;
  padding: 2px 0 4px;
  font-size: 0;
}
#list_simplepage .list_price.rent ul li:nth-child(2) .dpoint4 {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-sub);
}

/* ── 所在地を非表示 ── */
#list_simplepage .list_address {
  display: none !important;
}

/* ── 交通・駅徒歩 ── */
#list_simplepage .list_address_koutu {
  margin: 0 14px;
  padding: 6px 0 8px;
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.5;
  border-top: 1px solid var(--border);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ── 詳細ボタン ── */
#list_simplepage .list_price_others {
  padding: 8px 14px 14px;
  margin-top: auto;
}
/* 会員テキスト等を非表示（ボタン以外） */
#list_simplepage .list_price_others > *:not(a) {
  display: none !important;
}
#list_simplepage .list_price_others > a {
  display: block !important;
}
#list_simplepage .list_details_button {
  display: block;
  width: 100% !important;      /* 親テーマ width:40% を上書き */
  box-sizing: border-box;
  background: var(--accent);
  color: #fff !important;
  text-align: center;
  padding: 11px 0;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s;
  border: none !important;
  text-decoration: none;
}
#list_simplepage .list_price_others > a:hover .list_details_button {
  background: var(--accent-mid);
}

/* ── モバイル（768px以下） ── */
@media (max-width: 768px) {
  #list_simplepage .top_title { padding: 10px 12px 4px; font-size: 12px; }
  #list_simplepage .list_price.rent { padding: 4px 12px 0; }
  #list_simplepage .list_price.rent ul li.price-box .dpoint4 { font-size: 17px; }
  #list_simplepage .list_address_koutu { margin: 0 12px; }
  #list_simplepage .list_price_others { padding: 8px 12px 12px; }
}

/* ── スマートフォン（560px以下） ── */
@media (max-width: 560px) {
  #list_simplepage .list_price.rent ul li.price-box .dpoint4 { font-size: 15px; }
  #list_simplepage .list_address_koutu { display: none !important; }
  #list_simplepage .list_details_button { padding: 9px 0; font-size: 12px; }
}

/* 価格（dpoint1）: 大きくオレンジで表示 */
#list_simplepage .dpoint1 {
  padding: 10px 14px 3px;
  font-size: 20px;
  font-weight: 600;
  color: #e05a00;
  letter-spacing: -.5px;
  line-height: 1.3;
}

/* 間取り・面積（dpoint2）*/
#list_simplepage .dpoint2 {
  padding: 0 14px 8px;
  font-size: 11px;
  color: var(--text-sub);
}

/* 物件名タイトル（list_simple_boxtitle）: 上線で区切る */
#list_simplepage .list_simple_boxtitle {
  padding: 8px 14px 4px;
  border-top: 1px solid var(--border);
}
#list_simplepage .list_simple_boxtitle h2 a {
  color: var(--text);
  text-decoration: none;
}
#list_simplepage .list_simple_boxtitle h2 a:hover {
  color: var(--accent);
}

/* 価格テーブル: dpoint1/dpoint2 で代替するため非表示 */
#list_simplepage .list_price > table {
  display: none;
}

/* 築年月・構造・階建等: list_price_others 内のボタン以外を非表示（上部の #list_simplepage .list_price_others > *:not(a) を参照） */

/* 所在地・交通（list_address）*/
#list_simplepage .list_address {
  padding: 4px 14px 14px;
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.5;
}
#list_simplepage .list_address table {
  width: 100%;
  table-layout: auto;
}
#list_simplepage .list_address .list_address_th {
  font-size: 10px;
  color: var(--text-sub);
  opacity: .65;
  white-space: nowrap;
  padding-right: 6px;
  vertical-align: top;
  width: 30px;
}
#list_simplepage .list_address .list_address_td {
  font-size: 11px;
  color: var(--text-sub);
  line-height: 1.55;
}

/* ==========================================================
   レスポンシブ：タブレット（〜768px）— 2カラム化
   おすすめ物件（.property-grid）は !important で3列ベースを上書き
   ========================================================== */
@media (max-width: 768px) {
  #list_simplepage,
  .property-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  #list_simplepage .dpoint1 {
    font-size: 16px;
    padding: 8px 12px 2px;
  }
  #list_simplepage .dpoint2 {
    font-size: 10px;
    padding: 0 12px 6px;
  }
  #list_simplepage .list_simple_boxtitle {
    padding: 6px 12px 4px;
  }
  #list_simplepage .list_address {
    padding: 4px 12px 12px;
  }
}

/* ==========================================================
   レスポンシブ：スマートフォン（〜560px）— 既存ルール補完
   ========================================================== */
@media (max-width: 560px) {
  #list_simplepage .dpoint1 {
    font-size: 15px !important;
    padding: 6px 10px 2px !important;
  }
  #list_simplepage .dpoint2 {
    font-size: 10px !important;
    padding: 0 10px 4px !important;
  }
  #list_simplepage .list_simple_boxtitle {
    padding: 4px 10px 6px !important;
  }
  /* 所在地は560px以下で非表示（カードをコンパクトに） */
  #list_simplepage .list_address {
    display: none !important;
  }
}

/* ==========================================================
   会員ログインゲートモーダル
   2026-06-25 追加
   ========================================================== */

#kaiin-gate-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#kaiin-gate-modal.is-open {
  display: flex;
}
.kgm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,30,18,.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none; /* ボックス内リンクのクリックを横取りしないように */
}

.kgm-box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  padding: 40px 40px 32px;
  max-width: 440px;
  width: calc(100% - 32px);
  box-shadow: 0 24px 64px rgba(0,0,0,.28);
  text-align: center;
  animation: kgm-in .28s cubic-bezier(.22,1,.36,1);
}
@keyframes kgm-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.kgm-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: var(--text-sub);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s;
}
.kgm-close:hover { background: var(--accent-lt); color: var(--accent); }

.kgm-icon { font-size: 36px; margin-bottom: 12px; }
.kgm-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}
.kgm-desc {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0 0 24px;
}

.kgm-form { text-align: left; }
.kgm-field { margin-bottom: 14px; }
.kgm-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  margin-bottom: 5px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.kgm-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s;
}
.kgm-input:focus { border-color: var(--accent); background: #fff; }

.kgm-submit {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  letter-spacing: .03em;
  transition: background .2s, transform .1s;
}
.kgm-submit:hover  { background: var(--accent-mid); }
.kgm-submit:active { transform: scale(.98); }

.kgm-register {
  margin: 20px 0 0;
  font-size: 12.5px;
  color: var(--text-sub);
  text-align: center;
}
.kgm-register-link {
  color: var(--accent);
  text-decoration: underline;
}

/* 物件カードのロックバッジ（非ログイン時） */
.kgm-lock-badge {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(12,30,18,.75);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  pointer-events: none;
  letter-spacing: .03em;
  backdrop-filter: blur(4px);
}

/* ログイン必要バナー */
#kaiin-required-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.krb-icon { font-size: 18px; flex-shrink: 0; }
.krb-text { flex: 1; }
.krb-close {
  background: none; border: none; color: #fff;
  font-size: 20px; cursor: pointer; line-height: 1; padding: 0 4px;
  opacity: .7; transition: opacity .15s;
}
.krb-close:hover { opacity: 1; }

@media (max-width: 768px) {
  .kgm-box { padding: 32px 24px 28px; }
}

/* ==========================================================
   物件詳細ページ インラインログインオーバーレイ
   ページ全体を覆い、同一ページでログインを完結させる
   2026-06-25 追加
   ========================================================== */
#fudo-gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(12,30,18,.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.fgo-box {
  background: #fff;
  border-radius: 16px;
  padding: 44px 44px 36px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.32);
  text-align: center;
  animation: fgo-in .3s cubic-bezier(.22,1,.36,1);
}
@keyframes fgo-in {
  from { opacity:0; transform:translateY(20px) scale(.96); }
  to   { opacity:1; transform:none; }
}

.fgo-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 24px;
  text-decoration: none;
  color: var(--accent);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
}
.fgo-brand-dot { width:8px; height:8px; background:var(--accent); border-radius:50%; }

.fgo-icon  { font-size:38px; margin-bottom:10px; }
.fgo-title { font-size:19px; font-weight:600; color:var(--text); margin:0 0 8px; }
.fgo-desc  { font-size:13.5px; color:var(--text-sub); line-height:1.7; margin:0 0 24px; }

.fgo-form  { text-align: left; }
.fgo-field { margin-bottom: 14px; }
.fgo-label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.fgo-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  box-sizing: border-box;
  transition: border-color .18s, box-shadow .18s;
  font-family: var(--font);
}
.fgo-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.fgo-submit {
  display: block;
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  letter-spacing: .03em;
  transition: background .2s, transform .1s;
  font-family: var(--font);
}
.fgo-submit:hover  { background: var(--accent-mid); }
.fgo-submit:active { transform: scale(.98); }

.fgo-register {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--text-sub);
}
.fgo-register a { color: var(--accent); text-decoration: underline; }

.fgo-back {
  margin: 10px 0 0;
  font-size: 12.5px;
}
.fgo-back a { color: var(--text-sub); text-decoration: none; }
.fgo-back a:hover { color: var(--accent); }

@media (max-width: 540px) {
  .fgo-box { padding: 32px 20px 28px; }
}

/* ==========================================================
   売却査定 TOPページ CTA バナー
   ========================================================== */
.satei-top-cta {
  padding: 0 24px 64px;
}
.satei-top-cta__inner {
  max-width: 960px;
  margin: 0 auto;
  background: var(--dark-green, #0c1e12);
  border-radius: 16px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.satei-top-cta__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--accent-mid, #3d8862);
  margin-bottom: 12px;
}
.satei-top-cta__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 16px;
  letter-spacing: .04em;
}
.satei-top-cta__sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin-bottom: 28px;
}
.satei-top-cta__btn {
  display: inline-block;
  background: var(--accent, #2d6a4f);
  color: #fff;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s;
  letter-spacing: .04em;
}
.satei-top-cta__btn:hover { background: var(--accent-mid, #3d8862); }

/* ---- ダミーバーグラフ（装飾） ---- */
.satei-top-cta__visual {
  text-align: right;
}
.satei-top-cta__chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.stc-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 36px;
  border-radius: 4px;
  padding-right: 12px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  /* 初期幅 0 → アニメで伸ばす */
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-left: auto;
}
.stc-bar--a { background: rgba(255,255,255,.18); }
.stc-bar--b { background: var(--accent,  #2d6a4f); }
.stc-bar--c { background: var(--accent-mid, #3d8862); opacity: .65; }
/* visible クラス付与でアニメ開始 */
.satei-top-cta--visible .stc-bar--a { width: 100%; }
.satei-top-cta--visible .stc-bar--b { width:  80%; transition-delay: .1s; }
.satei-top-cta--visible .stc-bar--c { width:  60%; transition-delay: .2s; }

.satei-top-cta__price-hint {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.satei-top-cta__price-hint small {
  font-size: .6em;
  font-weight: 400;
  color: rgba(255,255,255,.55);
}

@media (max-width: 680px) {
  .satei-top-cta__inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }
  .satei-top-cta__visual { display: none; }
}

/* ========================================
   エドカツくん チャットウィジェット（Dify API版）
   2026-07-07
   ======================================== */

/* ルートコンテナ */
#ed-chatbot-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2147483647;
  font-family: var(--font), 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* ---- バブルボタン ---- */
/* ---- チャットバブル 初回フェードイン ---- */
@keyframes ed-bubble-fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- チャットバブル（pill テキスト型） ---- */
#ed-chatbot-bubble {
  animation: ed-bubble-fadein .4s ease 1.8s both, ed-bubble-pulse 2.4s ease-in-out 2.2s infinite;
  height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  background: #e05a00;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 22px rgba(224,90,0,.50);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
@keyframes ed-bubble-pulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(224,90,0,.50); }
  50%      { box-shadow: 0 4px 30px rgba(224,90,0,.80); }
}
#ed-chatbot-bubble:hover {
  background: #c94b00;
  box-shadow: 0 6px 30px rgba(224,90,0,.65);
  transform: translateY(-1px);
}
.ed-bubble-chat-text,
.ed-bubble-close-text {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  gap: 4px;
}
/* 開いている時は少し暗く */
#ed-chatbot-bubble.ed-is-open {
  background: #a83d00;
}

/* ---- チャットウィンドウ ---- */
#ed-chatbot-window {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 360px;
  height: 520px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0,0,0,.16);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* 閉じている状態 */
  opacity: 0;
  transform: translateY(16px) scale(.96);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}
#ed-chatbot-window.ed-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* ---- ヘッダー ---- */
#ed-chatbot-header {
  background: var(--accent, #2d6a4f);
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.ed-chatbot-hd-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ed-chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.ed-chatbot-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}
.ed-chatbot-subtitle {
  font-size: 11px;
  opacity: .78;
  line-height: 1.3;
}
#ed-chatbot-close {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  opacity: .75;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s, background .15s;
}
#ed-chatbot-close:hover {
  opacity: 1;
  background: rgba(255,255,255,.15);
}

/* ---- メッセージエリア ---- */
#ed-chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #f5f7fa;
  scroll-behavior: smooth;
}
#ed-chatbot-messages::-webkit-scrollbar {
  width: 4px;
}
#ed-chatbot-messages::-webkit-scrollbar-thumb {
  background: #d0d5dd;
  border-radius: 2px;
}

/* ---- メッセージバブル ---- */
.ed-msg {
  display: flex;
  max-width: 86%;
}
.ed-msg-user {
  align-self: flex-end;
}
.ed-msg-bot {
  align-self: flex-start;
}
.ed-msg-bubble {
  padding: 10px 14px;
  border-radius: 16px;
  word-break: break-word;
  white-space: pre-wrap;
}
.ed-msg-user .ed-msg-bubble {
  background: var(--accent, #2d6a4f);
  color: #fff;
  border-bottom-right-radius: 4px;
}
.ed-msg-bot .ed-msg-bubble {
  background: #fff;
  color: var(--text, #1a1a1a);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.ed-msg-error .ed-msg-bubble {
  background: #fff0f0;
  color: #c0392b;
}

/* ---- ローディング（ドット3つ） ---- */
.ed-msg-loading .ed-msg-bubble {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 14px 18px;
}
.ed-msg-loading .ed-msg-bubble span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b0bec5;
  animation: ed-dot-bounce 1.3s ease-in-out infinite;
}
.ed-msg-loading .ed-msg-bubble span:nth-child(2) { animation-delay: .22s; }
.ed-msg-loading .ed-msg-bubble span:nth-child(3) { animation-delay: .44s; }
@keyframes ed-dot-bounce {
  0%, 80%, 100% { transform: scale(.75); opacity: .4; }
  40%           { transform: scale(1.1); opacity: 1;   }
}

/* ---- 入力フッター ---- */
#ed-chatbot-footer {
  padding: 12px;
  background: #fff;
  border-top: 1px solid #eaecf0;
  display: flex;
  gap: 8px;
  align-items: flex-end;
  flex-shrink: 0;
}
#ed-chatbot-input {
  flex: 1;
  border: 1.5px solid #d0d5dd;
  border-radius: 22px;
  padding: 9px 16px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  outline: none;
  max-height: 120px;
  line-height: 1.45;
  color: var(--text, #1a1a1a);
  background: #f9fafb;
  transition: border-color .2s;
}
#ed-chatbot-input:focus {
  border-color: var(--accent, #2d6a4f);
  background: #fff;
}
#ed-chatbot-input:disabled {
  opacity: .6;
  cursor: not-allowed;
}
#ed-chatbot-send {
  padding: 0 16px;
  height: 40px;
  border-radius: 8px;
  background: var(--accent, #2d6a4f);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
  transition: background .2s;
}
#ed-chatbot-send:hover:not(:disabled) {
  background: var(--accent-mid, #3d8862);
}
#ed-chatbot-send:disabled {
  background: #b0bec5;
  cursor: not-allowed;
}
/* チャット内URLリンク */
.ed-chat-link {
  color: var(--accent, #2d6a4f);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-all;
}
.ed-chat-link:hover {
  color: var(--accent-mid, #3d8862);
}

/* ---- モバイル対応（フルスクリーン） ---- */
@media (max-width: 480px) {
  #ed-chatbot-root {
    bottom: 16px;
    right: 16px;
  }
  /* チャットウィンドウを画面全体に展開 */
  #ed-chatbot-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
  }
  /* チャットが開いている間はバブルボタンを非表示（重なり防止） */
  #ed-chatbot-window.ed-open ~ #ed-chatbot-bubble {
    display: none;
  }
  /* iPhoneノッチ・ホームバー対応 */
  #ed-chatbot-header {
    padding-top: max(14px, env(safe-area-inset-top));
  }
  #ed-chatbot-footer {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    flex-wrap: nowrap;
  }
  /* テキストエリアの高さを制限 */
  #ed-chatbot-input {
    max-height: 80px;
    font-size: 16px; /* iOS自動ズーム防止（16px未満でズームする） */
  }
  /* 送信ボタンを常に表示 */
  #ed-chatbot-send {
    flex-shrink: 0;
  }
  /* フォントを少し大きく */
  #ed-chatbot-messages {
    font-size: 15px;
  }
}

/* ============================================================
   物件詳細ページ：写真ギャラリーをPC版のみ「4列スライダー」に変更
   （card-reorder.js の rebuildPhotoGalleryPC() が生成する
   .prop-photo-slider を使用。既存の .main_picsam/.list_picsam は
   IDセレクタで高詳細度化されており上書きできないため非表示化し、
   代わりにサイトで既に読み込み済みのSwiperライブラリで
   4枚ずつ表示・矢印でスライドできるカルーセルに置き換えている。
   （旧: 2列固定グリッド → 新: 4列スライダーに変更 2026-07-20）
============================================================ */
.prop-photo-slider { display: none; }
@media (min-width: 769px) {
  .single-fudo #list_simplepage2 .main_picsam,
  .single-fudo #list_simplepage2 .list_picsam {
    display: none !important;
  }
  .prop-photo-slider {
    display: block !important;
    position: relative;
    max-width: 960px;
    margin: 0 auto 24px !important;
    padding: 0 42px;
    box-sizing: border-box;
  }
  .prop-photo-slider .swiper-wrapper {
    align-items: stretch;
  }
  .prop-photo-slider__item {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius, 10px);
    overflow: hidden;
    border: 1px solid var(--border, #e2e2e2);
    box-shadow: var(--shadow, 0 2px 8px rgba(0,0,0,.06));
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .prop-photo-slider__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0,0,0,.14);
  }
  .prop-photo-slider__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .prop-photo-slider .swiper-button-next,
  .prop-photo-slider .swiper-button-prev {
    width: 32px;
    height: 32px;
    margin-top: -16px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
    color: var(--accent, #2f8f5b);
  }
  .prop-photo-slider .swiper-button-next::after,
  .prop-photo-slider .swiper-button-prev::after {
    font-size: 13px;
    font-weight: 700;
  }
  .prop-photo-slider .swiper-button-disabled {
    opacity: .25;
    cursor: default;
  }
}

/* ⑤ LINE友だち追加バナー（ヒーロー直下・「3つのメリット」直前。2026-07-22追加、2026-07-26 新デザイン：バッジ+大見出し+エリア対応追記） */
.line-add-banner {
  background: #f4f7f5;
  padding: 28px 0;
}
.line-add-banner__inner {
  display: flex;
  justify-content: center;
}
.line-add-banner__card {
  width: 100%;
  max-width: 640px;
  background: #ffffff;
  border: 1.5px solid #c8ead6;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.08);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}
/* バッジ行 */
.line-add-banner__badge-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.line-add-banner__badge {
  display: inline-block;
  padding: 4px 12px;
  border: 1.5px solid #06C755;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1a6635;
  background: #f0fdf4;
  line-height: 1.5;
}
.line-add-banner__badge--area {
  border-color: #a0c4b0;
  color: #3d6b52;
  background: #f5faf7;
}
/* 見出し */
.line-add-banner__headline {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.6;
}
.line-add-banner__accent {
  color: #d32f2f;
  font-weight: 800;
}
/* 本文 */
.line-add-banner__sub {
  margin: 0;
  font-size: 13.5px;
  color: #4a5c51;
  line-height: 1.75;
}
/* ボタン */
.line-add-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  background: #06C755;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 5px 16px rgba(6, 199, 85, 0.35);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
  animation: line-add-banner-pulse 2.4s ease-in-out infinite;
}
.line-add-banner__btn:hover,
.line-add-banner__btn:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(6, 199, 85, 0.45);
  color: #ffffff;
}
.line-add-banner__btn:active {
  transform: scale(0.98);
  opacity: .9;
}
/* 注記 */
.line-add-banner__note {
  margin: 0;
  font-size: 11.5px;
  color: #8a9e92;
  line-height: 1.5;
}
@keyframes line-add-banner-pulse {
  0%, 100% { box-shadow: 0 5px 16px rgba(6, 199, 85, 0.35); }
  50%       { box-shadow: 0 5px 22px rgba(6, 199, 85, 0.52); }
}
@media (min-width: 769px) {
  .line-add-banner { padding: 32px 0; }
  .line-add-banner__card { padding: 36px 48px 28px; }
  .line-add-banner__headline { font-size: 22px; }
  .line-add-banner__sub { font-size: 14.5px; }
}

/* ============================================================
   物件詳細ページ — UI/UX改善 v1.0
   2026-07-28
   ============================================================ */

/* --------------------------------------------------------
   スティッキーCTAバー (.fudo-sticky-cta)
   -------------------------------------------------------- */
.fudo-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.10);
  padding: 10px 16px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  /* safe-area-inset対応（iPhone底部） */
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}
.fudo-sticky-cta.is-visible {
  transform: translateY(0);
}
.fudo-sticky-cta.is-hidden {
  transform: translateY(100%);
}
.fudo-sticky-cta__price {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.fudo-sticky-cta__price-label {
  font-size: 10px;
  color: var(--text-sub);
  line-height: 1;
  margin-bottom: 2px;
}
.fudo-sticky-cta__price-val {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fudo-sticky-cta__price-madori {
  font-size: 11px;
  color: var(--text-sub);
  margin-top: 1px;
}
.fudo-sticky-cta__btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.fudo-sticky-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.2;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.fudo-sticky-cta__btn:hover { opacity: .85; transform: translateY(-1px); text-decoration: none; }
.fudo-sticky-cta__btn--line {
  background: #06C755;
  color: #fff;
}
.fudo-sticky-cta__btn--mail {
  background: var(--accent);
  color: #fff;
}
.fudo-sticky-cta__btn svg {
  flex-shrink: 0;
}
/* デスクトップでは非表示 */
@media (min-width: 769px) {
  .fudo-sticky-cta { display: none; }
}
/* コンテンツが短いページでは自動非表示用 */
body.fudo-cta-bottom-reached .fudo-sticky-cta {
  transform: translateY(100%);
}

/* --------------------------------------------------------
   物件ハイライトバッジ (.prop-highlights)
   -------------------------------------------------------- */
.prop-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}
.prop-highlights__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--accent-lt);
  color: var(--accent);
  border: 1px solid rgba(45,106,79,.18);
  line-height: 1.3;
}
.prop-highlights__badge--station { background: #e8f4fd; color: #1565c0; border-color: rgba(21,101,192,.18); }
.prop-highlights__badge--new     { background: #fef3c7; color: #92400e; border-color: rgba(146,64,14,.18); }
.prop-highlights__badge--wide    { background: var(--accent-lt); color: var(--accent); }
.prop-highlights__badge--handy   { background: #f3e8ff; color: #6b21a8; border-color: rgba(107,33,168,.18); }

/* --------------------------------------------------------
   物件詳細テーブル (#list_other, #list_add) — デザイン改善
   -------------------------------------------------------- */
#list_other_table,
#list_add_table {
  margin: 16px 0;
}
#list_other,
#list_add {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(45,106,79,.06);
}
#list_other tr,
#list_add tr {
  border-bottom: 1px solid var(--border);
}
#list_other tr:last-child,
#list_add tr:last-child {
  border-bottom: none;
}
#list_other tr:nth-child(even),
#list_add tr:nth-child(even) {
  background: var(--accent-lt);
}
#list_other th.th1,
#list_other th.th2,
#list_add th {
  background: transparent;
  color: var(--text-sub);
  font-size: 11.5px;
  font-weight: 500;
  padding: 9px 10px 9px 14px;
  white-space: nowrap;
  vertical-align: middle;
  width: 100px;
}
#list_other td.td1,
#list_other td.td2,
#list_add td {
  font-size: 13px;
  color: var(--text);
  padding: 9px 14px;
  vertical-align: middle;
}

/* --------------------------------------------------------
   価格エリア (.list_price) — 視覚的改善
   -------------------------------------------------------- */
.list_price {
  background: linear-gradient(135deg, var(--accent-lt) 0%, #ffffff 100%);
  border: 1.5px solid rgba(45,106,79,.20);
  border-radius: 12px;
  padding: 16px 18px 14px !important;
  margin-bottom: 16px;
}
.list_price dt {
  font-size: 11px;
  color: var(--text-sub);
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: .03em;
}
.list_price dd.dpoint4 {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: var(--accent) !important;
  line-height: 1.15 !important;
  margin: 0 0 6px !important;
  letter-spacing: -.01em;
}
.list_price dd {
  font-size: 12px;
  color: var(--text-sub);
  margin: 0;
}

/* --------------------------------------------------------
   設備バッジ (.setsubi_dat)
   -------------------------------------------------------- */
.setsubi_dat {
  display: inline-flex !important;
  align-items: center;
  font-size: 11.5px !important;
  font-weight: 500;
  padding: 3px 8px !important;
  margin: 2px 3px 2px 0 !important;
  border-radius: 4px;
  background: var(--accent-lt);
  color: var(--accent);
  border: 1px solid rgba(45,106,79,.15);
}

/* --------------------------------------------------------
   PC版: スティッキーCTAバー（サイドバー形式）
   -------------------------------------------------------- */
@media (min-width: 769px) {
  /* PC版はページ右端にフローティングボタンとして表示 */
  .fudo-sticky-cta--pc {
    display: flex;
    flex-direction: column;
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 8000;
    gap: 10px;
    transform: translateX(calc(100% + 20px));
    transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .fudo-sticky-cta--pc.is-visible {
    transform: translateX(0);
  }
  .fudo-sticky-cta--pc .fudo-sticky-cta__btn {
    flex-direction: column;
    padding: 12px 14px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    font-size: 10px;
    gap: 3px;
  }
}

/* ============================================================
   物件詳細ページ — 動的デザイン v2.0
   2026-07-28
   ============================================================ */

/* --------------------------------------------------------
   スクロールフェードインアニメーション
   -------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.anim-hidden {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(0.16,1,0.3,1),
              transform .55s cubic-bezier(0.16,1,0.3,1);
}
.anim-hidden.anim-delay-1 { transition-delay: .1s; }
.anim-hidden.anim-delay-2 { transition-delay: .2s; }
.anim-hidden.anim-delay-3 { transition-delay: .3s; }

.anim-hidden.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------
   ヒーロー価格オーバーレイ (.fudo-hero-overlay)
   -------------------------------------------------------- */
.fudo-hero-overlay {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.fudo-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,30,18,.82) 0%, transparent 52%);
  pointer-events: none;
  z-index: 1;
}
.fudo-hero-price {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 20px 18px;
  animation: fadeInUp .6s cubic-bezier(0.16,1,0.3,1) .1s both;
}
.fudo-hero-price__label {
  font-size: 10px;
  color: rgba(255,255,255,.75);
  letter-spacing: .07em;
  font-weight: 500;
  margin-bottom: 3px;
}
.fudo-hero-price__val {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
}
.fudo-hero-price__val small {
  font-size: 15px;
  font-weight: 500;
  margin-left: 2px;
}
.fudo-hero-price__meta {
  font-size: 12px;
  color: rgba(255,255,255,.82);
  margin-top: 4px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fudo-hero-price__meta span::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  vertical-align: middle;
  margin-right: 5px;
  margin-bottom: 1px;
}
.fudo-hero-price__meta span:first-child::before { display: none; }

/* --------------------------------------------------------
   LINE友達追加 リッチCTAパネル (.line-cta-rich)
   -------------------------------------------------------- */
.line-cta-rich {
  margin: 24px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #06C755;
  box-shadow: 0 8px 32px rgba(6,199,85,.18), 0 2px 8px rgba(6,199,85,.10);
}
.line-cta-rich__head {
  background: #06C755;
  padding: 18px 20px 14px;
  text-align: center;
}
.line-cta-rich__kv {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .08em;
  text-transform: none;
  margin-bottom: 6px;
}
.line-cta-rich__title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
}
.line-cta-rich__title-accent {
  display: inline-block;
  background: #fff;
  color: #06C755;
  border-radius: 4px;
  padding: 0 6px 1px;
  margin-top: 2px;
  font-size: 18px;
}
.line-cta-rich__body {
  background: #fff;
  padding: 18px 20px 20px;
}
.line-cta-rich__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.line-cta-rich__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1a2e20;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid #f0f7f3;
  line-height: 1.4;
}
.line-cta-rich__list li:last-child { border-bottom: none; }
.line-cta-rich__check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e4f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: #2d6a4f;
}
.line-cta-rich__btn {
  display: block;
  background: #06C755;
  color: #fff !important;
  text-align: center;
  padding: 15px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: .02em;
  box-shadow: 0 4px 16px rgba(6,199,85,.35);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: line-add-banner-pulse 2.4s ease-in-out infinite;
}
.line-cta-rich__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,199,85,.45);
  text-decoration: none !important;
}
.line-cta-rich__note {
  font-size: 10.5px;
  color: #7a8c84;
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .line-cta-rich { margin: 32px 0; }
  .line-cta-rich__head { padding: 24px 32px 18px; }
  .line-cta-rich__title { font-size: 20px; }
  .line-cta-rich__title-accent { font-size: 22px; }
  .line-cta-rich__body { padding: 22px 32px 28px; }
  .line-cta-rich__list li { font-size: 14px; padding: 10px 0; }
  .line-cta-rich__btn { font-size: 16px; padding: 17px 24px; }
}

/* --------------------------------------------------------
   セクション区切りラベル (.section-divider)
   -------------------------------------------------------- */
.section-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 18px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-sub);
  letter-spacing: .1em;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ========================================
   エドカツくん 追従ボタン非表示
   （TOPページ・詳細ページに固定配置ボタンを設けるため）
======================================== */
#ed-chatbot-bubble {
  display: none !important;
}

/* ========================================
   エドカツくんセクション（TOPページ）
======================================== */
.edkatsu-section {
  background: linear-gradient(135deg, #0c1e12 0%, #1a3d25 100%);
  border-radius: 16px;
  overflow: hidden;
  padding: 40px 28px;
  margin: 0 0 32px;
  position: relative;
}
.edkatsu-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(45,106,79,.25);
  pointer-events: none;
}
.edkatsu-section__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.edkatsu-section__avatar {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.25);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.edkatsu-section__avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.edkatsu-section__avatar-fallback {
  font-size: 32px; line-height: 1;
}
.edkatsu-section__text { flex: 1; }
.edkatsu-section__label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em;
  color: rgba(255,255,255,.6); text-transform: uppercase; margin-bottom: 6px;
}
.edkatsu-section__title {
  font-size: 20px; font-weight: 700; color: #fff;
  line-height: 1.4; margin-bottom: 8px;
}
.edkatsu-section__desc {
  font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.65;
}
.edkatsu-section__badges {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px;
}
.edkatsu-section__badge {
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  border-radius: 20px; padding: 3px 10px; border: 1px solid rgba(255,255,255,.2);
}
.edkatsu-section__cta {
  margin-top: 28px;
}
.edkatsu-open-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #e05a00; color: #fff;
  font-size: 15px; font-weight: 700;
  border: none; border-radius: 12px;
  padding: 14px 28px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(224,90,0,.45);
  transition: background .2s, transform .2s, box-shadow .2s;
  width: 100%;
  justify-content: center;
}
.edkatsu-open-btn:hover {
  background: #c94b00;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,90,0,.55);
}
.edkatsu-open-btn svg { flex-shrink: 0; }
@media (min-width: 769px) {
  .edkatsu-section { padding: 48px 52px; }
  .edkatsu-section__inner { gap: 36px; }
  .edkatsu-section__avatar { width: 100px; height: 100px; }
  .edkatsu-section__title { font-size: 24px; }
  .edkatsu-section__desc { font-size: 14px; }
  .edkatsu-open-btn { width: auto; font-size: 16px; padding: 16px 36px; }
}

/* ========================================
   エドカツくんボタン（物件詳細ページ内）
======================================== */
.edkatsu-detail-cta {
  border-radius: 14px;
  background: linear-gradient(135deg, #1a3d25 0%, #0c1e12 100%);
  padding: 22px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.1);
}
.edkatsu-detail-cta__avatar {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.2);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.edkatsu-detail-cta__avatar img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 50%;
}
.edkatsu-detail-cta__body { flex: 1; }
.edkatsu-detail-cta__title {
  font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px;
}
.edkatsu-detail-cta__sub {
  font-size: 11px; color: rgba(255,255,255,.65); line-height: 1.5;
}
.edkatsu-detail-cta__btn {
  flex-shrink: 0;
  background: #e05a00; color: #fff;
  font-size: 13px; font-weight: 700;
  border: none; border-radius: 10px;
  padding: 11px 18px; cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(224,90,0,.4);
  transition: background .2s, transform .2s;
}
.edkatsu-detail-cta__btn:hover {
  background: #c94b00; transform: translateY(-1px);
}
@media (max-width: 480px) {
  .edkatsu-detail-cta { flex-wrap: wrap; }
  .edkatsu-detail-cta__btn { width: 100%; text-align: center; padding: 12px; }
}
