@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.2.0
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/* ===== 前橋不動産 カラー変数 ===== */

:root {

  --color-main: #81c44e;

  --color-accent: #70b534;

  --color-white: #ffffff;

  --color-text: #333333;

  --color-bg: #f8f9fa;

  --color-border: #e0e0e0;

}

/* ===== 全体基本設定 ===== */

body {

  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro', sans-serif;

  color: var(--color-text);

  background-color: var(--color-white);

}

/* ===== リンクカラー ===== */

a {

  color: var(--color-main);

}

a:hover {

  color: var(--color-accent);

}

/* ===== ボタン基本 ===== */

.btn-main {

  display: inline-block;

  background-color: var(--color-main);

  color: var(--color-white);

  padding: 14px 32px;

  border-radius: 4px;

  font-weight: bold;

  text-decoration: none;

  transition: background-color 0.3s;

}

.btn-main:hover {

  background-color: var(--color-accent);

  color: var(--color-white);

}

.btn-white {

  display: inline-block;

  background-color: var(--color-white);

  color: var(--color-main);

  padding: 14px 32px;

  border-radius: 4px;

  font-weight: bold;

  text-decoration: none;

  border: 2px solid var(--color-white);

  transition: all 0.3s;

}

.btn-white:hover {

  background-color: transparent;

  color: var(--color-white);

}

/* ===== セクション共通 ===== */

.section {

  padding: 80px 0;

}

.section-title {

  font-size: 2rem;

  font-weight: bold;

  margin-bottom: 40px;

  text-align: center;

  position: relative;

  padding-bottom: 16px;

}

.section-title::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 50%;

  transform: translateX(-50%);

  width: 60px;

  height: 3px;

  background-color: var(--color-main);

}

/* ===== カードデザイン ===== */

.card {

  background: var(--color-white);

  border-radius: 8px;

  border-left: 5px solid var(--color-main);

  box-shadow: 0 2px 12px rgba(0,0,0,0.08);

  padding: 24px;

}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ===== トップページ全体 ===== */

.home-wrap {
  width: 100%;
  overflow-x: hidden;
}

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

/* ===== ヒーローセクション ===== */

.hero-section {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('http://maebashi-fudosan.com/wp-content/uploads/2026/04/house-maebashi.png') center center / cover no-repeat;
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
}

.hero-sub {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  opacity: 0.9;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 24px;
}

.hero-title span {
  color: #FFE066;
  border-bottom: 3px solid #FFE066;
  padding-bottom: 2px;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-main {
  background: #fff;
  color: #70b534;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-hero-main:hover {
  background: #FFE066;
  color: #70b534;
}

.btn-hero-sub {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s;
}

.btn-hero-sub:hover {
  background: #fff;
  color: #70b534;
}

/* ===== お悩みセクション ===== */

.problems-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.problem-item {
  background: #fff;
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.problem-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 16px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 8px;
}

.problem-icon svg {
  width: 100%;
  height: 100%;
}

.problem-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.problem-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #333;
  margin: 0;
}

/* ===== ワンストップセクション ===== */

.onestop-section {
  background: #fff;
  padding: 80px 0;
}

.section-title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #81c44e;
}

.title-accent {
  color: #81c44e;
}

.section-desc {
  text-align: center;
  color: #666;
  line-height: 1.8;
  margin-bottom: 48px;
}

.onestop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.onestop-item {
  background: #fff;
  border-radius: 8px;
  border-left: 5px solid #81c44e;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 28px 20px;
}

.onestop-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.onestop-icon svg {
  width: 100%;
  height: 100%;
}

.onestop-item h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: #70b534;
  margin-bottom: 10px;
}

.onestop-item p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

.onestop-partners {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 24px 32px;
  text-align: center;
}

.partners-title {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  font-weight: bold;
}

.partners-list {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.partners-list span {
  background: #fff;
  border: 1px solid #81c44e;
  color: #70b534;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
}

/* ===== CTAセクション ===== */

.cta-section {
  background: linear-gradient(135deg, #70b534 0%, #81c44e 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.cta-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 12px;
}

.cta-section p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 36px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-cta-main {
  background: #fff;
  color: #70b534;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-cta-main:hover {
  background: #FFE066;
  color: #70b534;
}

.btn-cta-sub {
  background: transparent;
  color: #fff;
  padding: 16px 40px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  border: 2px solid #fff;
  transition: all 0.3s;
}

.btn-cta-sub:hover {
  background: #fff;
  color: #70b534;
}

.cta-info {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== スマホ対応 ===== */

@media screen and (max-width: 834px) {
  .hero-title { font-size: 2rem; }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .onestop-grid { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 480px) {
  .hero-section { padding: 60px 20px; }
  .hero-title { font-size: 1.7rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .onestop-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ===== トップページ不要要素を非表示 ===== */

.home .entry-title,

.home .post-date,

.home .sns-share-buttons,

.home .breadcrumb,

.home .entry-footer,

.home .author-box,

.home .related-entry-heading,

.home .related-entry-card-wrap,

.home .comments-area {

  display: none !important;

}

.home .entry-content {

  padding: 0 !important;

  margin: 0 !important;

}

.home .content-area {

  width: 100% !important;

  max-width: 100% !important;

}

/* ===== トップページ余白リセット ===== */
.home article.page,
.home .article-body,
.home .article-header,
.home .entry-content,
.home .singular-entry-content,
.home #main,
.home .main-contents,
.home .content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ===== トップページ 空pタグ・content-in余白除去 ===== */
.home .home-wrap > p:empty,
.home .entry-content > p:empty,
.home .home-wrap > p:first-child {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
}
.home .content-in {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* ===== トップページ article上余白除去 ===== */
.home .main > article.page {
  margin-top: -19px !important;
}

/* ===== ヘッダーカスタマイズ ===== */

#header {
  background-color: #ffffff !important;
  border-bottom: 3px solid #81c44e !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}

#header-in {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 20px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-height: 90px !important;
}

/* ロゴ */
.logo-header {
  height: 80px !important;
  display: flex !important;
  align-items: center !important;
}

.site-name-text {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #70b534 !important;
  letter-spacing: 0.05em !important;
}

.site-name-text-link:hover {
  text-decoration: none !important;
  opacity: 0.85 !important;
}

/* ヘッダー右側エリア */
.header-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 4px !important;
}

.header-tel {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  color: #70b534 !important;
  text-decoration: none !important;
  letter-spacing: 0.05em !important;
}

.header-tel:hover {
  color: #81c44e !important;
}

.header-tel-label {
  font-size: 0.7rem !important;
  color: #666 !important;
  text-align: right !important;
}

.header-contact-btn {
  display: inline-block !important;
  background-color: #81c44e !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  border-radius: 4px !important;
  font-size: 0.85rem !important;
  font-weight: bold !important;
  text-decoration: none !important;
  transition: background-color 0.3s !important;
}

.header-contact-btn:hover {
  background-color: #70b534 !important;
  color: #ffffff !important;
}

/* ナビゲーション */
#navi {
  background-color: #70b534 !important;
}

#navi-in {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

#navi .menu-item a {
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  padding: 12px 16px !important;
  display: block !important;
  transition: background-color 0.3s !important;
}

#navi .menu-item a:hover {
  background-color: #81c44e !important;
  text-decoration: none !important;
}

/* スマホ対応 */
@media screen and (max-width: 834px) {
  #header-in {
    height: 60px !important;
    padding: 0 15px !important;
  }

  .site-name-text {
    font-size: 1.2rem !important;
  }

  .header-tel {
    font-size: 1.1rem !important;
  }

  .header-tel-label {
    display: none !important;
  }
}

/* ===== 固定フッターバー ===== */
.fixed-footer-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.15);
}

.fixed-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: bold;
  gap: 4px;
  transition: opacity 0.2s;
}

.fixed-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.fixed-btn svg {
  width: 22px;
  height: 22px;
}

.fixed-btn-consult {
  background-color: #70b534;
  color: #ffffff;
}

.fixed-btn-line {
  background-color: #06C755;
  color: #ffffff;
}

.fixed-btn-tel {
  background-color: #333333;
  color: #ffffff;
}

/* フッターバー分のスペース確保 */
body {
  padding-bottom: 65px;
}

/* スマホのみ表示・PCでも表示 */
@media screen and (max-width: 834px) {
  .fixed-btn {
    font-size: 0.7rem;
    padding: 8px 0;
  }

  .fixed-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* ===== フッターカスタマイズ ===== */
#footer {
  background-color: #222222 !important;
  color: #cccccc !important;
  padding: 0 !important;
}

#footer-in {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.footer-top-area {
  padding: 48px 24px 32px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 40px !important;
  border-bottom: 1px solid #444444 !important;
}

.footer-company {
  flex: 1 !important;
  min-width: 240px !important;
}

.footer-company-name {
  font-size: 1.3rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
}

.footer-company-info {
  font-size: 0.85rem !important;
  color: #aaaaaa !important;
  line-height: 2 !important;
}

.footer-links {
  flex: 1 !important;
  min-width: 200px !important;
}

.footer-links-title {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  padding-bottom: 8px !important;
  border-bottom: 2px solid #70b534 !important;
}

.footer-links ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-links ul li {
  margin-bottom: 8px !important;
}

.footer-links ul li a {
  color: #aaaaaa !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  transition: color 0.3s !important;
}

.footer-links ul li a:hover {
  color: #70b534 !important;
}

.footer-links ul li a::before {
  content: '›' !important;
  margin-right: 6px !important;
  color: #70b534 !important;
}

.footer-bottom-bar {
  padding: 16px 24px !important;
  text-align: center !important;
  font-size: 0.8rem !important;
  color: #666666 !important;
  background-color: #111111 !important;
}

.footer-bottom-logo,
.footer-bottom-content,
#navi-footer,
.copyright {
  display: none !important;
}

/* スマホ対応 */
@media screen and (max-width: 834px) {
  .footer-top-area {
    flex-direction: column !important;
    gap: 24px !important;
    padding: 32px 16px 24px !important;
  }
}

/* =============================
   お客様の声
   ============================= */

.voice-section {
  padding: 80px 20px;
  background: #fff;
}

.voice-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  text-align: left;
}

.voice-card {
  background: #f9fdf5;
  border: 1px solid #d4eabf;
  border-radius: 12px;
  padding: 28px 24px;
}

.voice-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.voice-text {
  font-size: 14px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.voice-name {
  font-size: 13px;
  color: #888;
  text-align: right;
}

@media (max-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr;
  }
}
/* =============================
   アイコン画像スタイル修正
   ============================= */
.problem-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}

.onestop-icon img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
}
/* =============================
   バナーセクション
   ============================= */
.banner-section {
  padding: 40px 20px;
  background: #fff;
}
.banner-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* バナー1：相続 */
.banner-souzoku {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #e8f5ff;
  border: 2px solid #a8d4f0;
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
  position: relative;
}
.banner-souzoku:hover {
  opacity: 0.88;
}
.bsz-left {
  flex-shrink: 0;
  width: 180px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bsz-left img {
  width: 180px;
  height: auto;
  display: block;
}
.bsz-text {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.bsz-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 6px;
}
.bsz-title {
  font-size: 26px;
  font-weight: bold;
  color: #222;
  line-height: 1.5;
  margin-bottom: 16px;
}
.bsz-btn {
  display: inline-block;
  background: #81c44e;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 30px;
  margin: 0 auto;
}
.bsz-right {
  flex-shrink: 0;
  width: 180px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bsz-right img {
  width: 180px;
  height: auto;
  display: block;
}

/* バナー2：売却 */
.banner-sell {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  align-items: center;
}
.banner-sell:hover {
  opacity: 0.88;
}
.bsl-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.55);
  z-index: 0;
}
.bsl-text {
  position: relative;
  z-index: 1;
  padding: 40px 50px;
}
.bsl-title {
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 10px;
}
.bsl-sub {
  font-size: 14px;
  color: #ddd;
  margin-bottom: 20px;
}
.bsl-btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  font-size: 14px;
  padding: 10px 28px;
  border-radius: 4px;
}

/* バナー スマホ対応 */
@media (max-width: 768px) {
  .banner-souzoku {
    flex-direction: column;
    padding: 20px;
    min-height: auto;
  }
  .bsz-left, .bsz-right {
    width: 120px;
  }
  .bsz-left img, .bsz-right img {
    width: 120px;
  }
  .bsz-title {
    font-size: 20px;
  }
  .bsl-text {
    padding: 30px 24px;
  }
  .bsl-title {
    font-size: 22px;
  }
}

/* ========================================
   Cocoon h2デフォルトスタイル上書き
======================================== */
.article h2,
.entry-content h2 {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: inherit !important;
    font-size: inherit !important;
}

/* CTAセクション内h2 */
.cta-section h2 {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: bold !important;
    margin-bottom: 16px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

/* ワンストップセクション内h2 */
.onestop-section h2 {
    color: #333333 !important;
    font-size: 28px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}

/* お客様の声セクション内h2 */
.voice-section h2 {
    color: #333333 !important;
    font-size: 28px !important;
    font-weight: bold !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}


/* ========================================
   共通：セクションタイトル英字ラベル
======================================== */
.section-en {
    font-size: 14px;
    font-weight: bold;
    color: #81c44e;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

/* ========================================
   お悩みカードセクション
======================================== */
.onayami-section {
    padding: 60px 20px;
    background: #ffffff;
}
.onayami-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.onayami-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.onayami-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.onayami-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.onayami-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.onayami-img {
    width: 100%;
    margin-bottom: 16px;
}
.onayami-img img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 8px;
}
.onayami-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 8px;
}
.onayami-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 12px;
}
.onayami-link {
    font-size: 14px;
    color: #81c44e;
    font-weight: bold;
}
@media (max-width: 768px) {
    .onayami-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
@media (max-width: 480px) {
    .onayami-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   当社の強みセクション
======================================== */
.strength-section {
    padding: 60px 20px;
    background: #ecf5e6;
}
.strength-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.strength-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.strength-list {
    margin-top: 40px;
    text-align: left;
}
.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(129,196,78,0.3);
}
.strength-item:last-child {
    border-bottom: none;
}
.strength-num {
    font-size: 36px;
    font-weight: bold;
    color: #81c44e;
    flex-shrink: 0;
    line-height: 1;
    width: 60px;
}
.strength-content {
    flex: 1;
}
.strength-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 8px;
}
.strength-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.8;
}

/* ========================================
   お客様の声セクション（改修）
======================================== */
.voice-section {
    padding: 60px 20px;
    background: #ecf5e6;
}
.voice-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.voice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.voice-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.voice-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 12px;
}
.voice-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.voice-stars {
    color: #f5a623;
    font-size: 18px;
    margin-bottom: 12px;
}
.voice-text {
    font-size: 13px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
}
.voice-info {
    font-size: 12px;
    color: #999999;
}
.voice-more {
    margin-top: 24px;
}
.voice-more a {
    color: #81c44e;
    font-weight: bold;
    font-size: 15px;
}
@media (max-width: 768px) {
    .voice-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .voice-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTAセクション（改修）
======================================== */
.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #70b534, #81c44e);
    text-align: center;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.cta-section h2 {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: bold !important;
    margin-bottom: 16px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.cta-desc {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
}
.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.btn-cta-main {
    display: inline-block;
    background: #ffffff;
    color: #81c44e;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
}
.btn-cta-sub {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 40px;
    border-radius: 50px;
    border: 2px solid #ffffff;
    text-decoration: none;
}
.cta-tel {
    margin-top: 16px;
}
.cta-tel a {
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
}
.cta-tel-info {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    margin-top: 4px;
}

/* ========================================
   買取と仲介の違いセクション
======================================== */
.compare-section {
    padding: 60px 20px;
    background: #ffffff;
}
.compare-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.compare-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.compare-lead {
    font-size: 15px;
    color: #555555;
    margin-top: 16px;
    margin-bottom: 32px;
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.compare-table th,
.compare-table td {
    padding: 16px 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
}
.compare-th-kaitori {
    background: #81c44e;
    color: #ffffff;
    font-size: 18px;
    width: 35%;
}
.compare-th-chukai {
    background: #666666;
    color: #ffffff;
    font-size: 18px;
    width: 35%;
}
.compare-label {
    background: #f9f9f9;
    font-weight: bold;
    text-align: left !important;
    width: 30%;
}
.compare-table tbody td strong {
    color: #81c44e;
}
.compare-note {
    margin-top: 20px;
    font-size: 13px;
    color: #999999;
    text-align: left;
}
@media (max-width: 768px) {
    .compare-table {
        font-size: 13px;
    }
    .compare-table th,
    .compare-table td {
        padding: 10px 8px;
    }
}

/* ========================================
   売却・買取の流れセクション（共通）
======================================== */
.flow-section {
    padding: 60px 20px;
    background: #f7f7f7;
}
.flow-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.flow-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.flow-steps {
    margin-top: 40px;
    text-align: left;
}
.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
}
.flow-step:last-child {
    border-bottom: none;
}
.flow-num {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    background: #81c44e;
    padding: 6px 16px;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap;
}
.flow-step-content {
    flex: 1;
}
.flow-step-title {
    font-size: 17px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 6px;
}
.flow-step-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

/* ========================================
   Q&Aセクション（共通）
======================================== */
.faq-section {
    padding: 60px 20px;
    background: #ffffff;
}
.faq-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.faq-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.faq-list {
    margin-top: 32px;
    text-align: left;
}
.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    cursor: pointer;
    background: #f9f9f9;
    transition: background 0.2s;
}
.faq-question:hover {
    background: #f0f0f0;
}
.faq-q-icon {
    font-size: 18px;
    font-weight: bold;
    color: #81c44e;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #81c44e;
    border-radius: 50%;
}
.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: bold;
    color: #333333;
}
.faq-toggle {
    font-size: 20px;
    color: #81c44e;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}
.faq-answer {
    display: none;
    padding: 16px 20px;
    gap: 12px;
    align-items: flex-start;
    border-top: 1px solid #e0e0e0;
}
.faq-item.open .faq-answer {
    display: flex;
}
.faq-a-icon {
    font-size: 18px;
    font-weight: bold;
    color: #e85d3a;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e85d3a;
    border-radius: 50%;
}
.faq-a-text {
    flex: 1;
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

/* ========================================
   代表挨拶セクション
======================================== */
.greeting-section {
    padding: 60px 20px;
    background: #ffffff;
}
.greeting-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.greeting-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.greeting-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
    text-align: left;
}
.greeting-photo {
    flex-shrink: 0;
    width: 280px;
}
.greeting-photo img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.greeting-text {
    flex: 1;
}
.greeting-name {
    font-size: 20px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #81c44e;
}
.greeting-body {
    font-size: 15px;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 12px;
}
@media (max-width: 768px) {
    .greeting-content {
        flex-direction: column;
        align-items: center;
    }
    .greeting-photo {
        width: 200px;
    }
}

/* ========================================
   LINE誘導セクション
======================================== */
.line-section {
    padding: 48px 20px;
    background: #06C755;
}
.line-inner {
    max-width: 800px;
    margin: 0 auto;
}
.line-content {
    display: flex;
    align-items: center;
    gap: 32px;
}
.line-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}
.line-icon img {
    width: 100%;
    height: 100%;
}
.line-text {
    flex: 1;
    color: #ffffff;
}
.line-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 8px;
}
.line-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.line-btn {
    display: inline-block;
    background: #ffffff;
    color: #06C755;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
}
@media (max-width: 768px) {
    .line-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   FAQ Cocoon競合修正
======================================== */
.faq-section .faq-item {
    display: block !important;
}
.faq-question p,
.faq-answer p {
    margin: 0 !important;
    display: inline;
}

/* ========================================
   スクロールアニメーション
======================================== */
.onayami-card,
.voice-card,
.strength-item,
.promise-card,
.results-card,
.flow-step,
.faq-item,
.compare-section,
.greeting-content,
.line-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.onayami-card.visible,
.voice-card.visible,
.strength-item.visible,
.promise-card.visible,
.results-card.visible,
.flow-step.visible,
.faq-item.visible,
.compare-section.visible,
.greeting-content.visible,
.line-content.visible {
    opacity: 1;
    transform: translateY(0);
}

/* カードの順番に応じた遅延 */
.onayami-card:nth-child(2).visible { transition-delay: 0.1s; }
.onayami-card:nth-child(3).visible { transition-delay: 0.2s; }
.onayami-card:nth-child(4).visible { transition-delay: 0.3s; }

.voice-card:nth-child(2).visible { transition-delay: 0.1s; }
.voice-card:nth-child(3).visible { transition-delay: 0.2s; }
.voice-card:nth-child(4).visible { transition-delay: 0.3s; }

.strength-item:nth-child(2).visible { transition-delay: 0.1s; }
.strength-item:nth-child(3).visible { transition-delay: 0.2s; }
.strength-item:nth-child(4).visible { transition-delay: 0.3s; }
.strength-item:nth-child(5).visible { transition-delay: 0.4s; }

.flow-step:nth-child(2).visible { transition-delay: 0.1s; }
.flow-step:nth-child(3).visible { transition-delay: 0.15s; }
.flow-step:nth-child(4).visible { transition-delay: 0.2s; }
.flow-step:nth-child(5).visible { transition-delay: 0.25s; }

/* ========================================
   安心・安全の約束セクション
======================================== */
.promise-section {
    padding: 60px 20px;
    background: #ffffff;
}
.promise-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.promise-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.promise-card {
    text-align: center;
    padding: 24px 16px;
}
.promise-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
}
.promise-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.promise-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 8px;
}
.promise-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .promise-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   取引実績セクション
======================================== */
.results-section {
    padding: 60px 20px;
    background: #ffffff;
}
.results-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.results-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}
.results-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    background: #ffffff;
}
.results-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.results-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.results-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #81c44e;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
}
.results-area {
    font-size: 15px;
    font-weight: bold;
    color: #333333;
    padding: 12px 12px 4px;
    text-align: left;
}
.results-type {
    font-size: 13px;
    color: #666666;
    padding: 0 12px 12px;
    text-align: left;
}
.results-more {
    margin-top: 24px;
}
.results-more a {
    color: #81c44e;
    font-weight: bold;
    font-size: 15px;
}
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   改善1：Cocoonデフォルト要素の非表示
======================================== */
.home .sns-share,
.home .sns-follow,
.home .author-box,
.home .under-entry-content,
.home .breadcrumb,
.home .entry-categories-tags,
.home .post-date,
.home .post-update,
.home .eye-catch {
    display: none !important;
}

/* ========================================
   改善2：セクション背景の交互配色
======================================== */
.onayami-section {
    background: #ffffff !important;
}
.promise-section {
    background: #f7f7f7 !important;
}
.results-section {
    background: #f7f7f7 !important;
}
.greeting-section {
    background: #ecf5e6 !important;
}

/* ========================================
   改善3：固定サイドCTA（PC専用）
======================================== */
.side-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9990;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.side-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    text-orientation: upright;
    width: 52px;
    padding: 20px 0;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 3px;
    transition: width 0.3s ease;
}
.side-cta a:hover {
    width: 60px;
}
.side-cta-soudan {
    background: #81c44e;
    color: #ffffff;
    border-radius: 8px 0 0 0;
}
.side-cta-satei {
    background: #e85d3a;
    color: #ffffff;
    border-radius: 0 0 0 8px;
}
@media (max-width: 768px) {
    .side-cta {
        display: none;
    }
}

/* ========================================
   更新情報セクション
======================================== */
.news-section {
    padding: 60px 20px;
    background: #f7f7f7;
}
.news-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.news-section h2 {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #333333 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 8px !important;
}
.news-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 24px;
    text-align: left;
}
.news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
}
.news-date {
    font-size: 14px;
    color: #999999;
    flex-shrink: 0;
    width: 100px;
}
.news-tag {
    font-size: 12px;
    color: #ffffff;
    background: #81c44e;
    padding: 2px 12px;
    border-radius: 20px;
    flex-shrink: 0;
}
.news-title {
    font-size: 15px;
    color: #333333;
}
.news-more {
    margin-top: 8px;
}
.news-more a {
    color: #81c44e;
    font-weight: bold;
    font-size: 15px;
}
@media (max-width: 768px) {
    .news-item {
        flex-wrap: wrap;
        gap: 8px;
    }
    .news-date {
        width: auto;
    }
    .news-title {
        width: 100%;
    }
}

/* ========================================
   スマホ表示調整
======================================== */
@media (max-width: 768px) {
    /* ヘッダー電話番号・ボタン調整 */
    .header-right {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }
    .header-tel {
        font-size: 16px;
    }
    .header-tel-label {
        display: none;
    }
    .header-contact-btn {
        font-size: 12px;
        padding: 6px 16px;
    }

    /* 当社の強み 縦並び調整 */
    .strength-item {
        flex-direction: column;
        gap: 12px;
    }
    .strength-num {
        font-size: 28px;
    }

    /* 比較テーブル スクロール対応 */
    .compare-inner {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .compare-table {
        min-width: 500px;
    }

    /* CTA ボタン間隔調整 */
    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .btn-cta-main,
    .btn-cta-sub {
        width: 80%;
        text-align: center;
        padding: 14px 20px;
    }

    /* 代表挨拶 写真サイズ調整 */
    .greeting-photo {
        width: 180px;
    }

    /* ニュースセクション h2 */
    .news-section h2 {
        font-size: 24px !important;
    }

    /* 各セクション h2 サイズ縮小 */
    .onayami-section h2,
    .strength-section h2,
    .promise-section h2,
    .voice-section h2,
    .results-section h2,
    .compare-section h2,
    .flow-section h2,
    .faq-section h2,
    .greeting-section h2,
    .cta-section h2 {
        font-size: 22px !important;
    }
}

@media (max-width: 480px) {
    /* ヒーロー調整 */
    .hero-section {
        padding: 60px 16px 50px;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-sub {
        font-size: 13px;
    }
    .hero-desc {
        font-size: 13px;
    }
    .btn-hero-main,
    .btn-hero-sub {
        font-size: 14px;
        padding: 12px 24px;
    }

    /* CTA電話番号 */
    .cta-tel a {
        font-size: 22px;
    }

    /* 強みの番号サイズ */
    .strength-num {
        font-size: 24px;
        width: auto;
    }
}

/* ========================================
   査定バナーセクション
======================================== */
.assessment-banner {
    position: relative;
    background-image: url('/wp-content/uploads/2026/04/banner-satei.png');
    background-size: cover;
    background-position: center;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ab-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(129,196,78,0.85);
}
.ab-text {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
}
.ab-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 12px;
}
.ab-sub {
    font-size: 16px;
    margin-bottom: 20px;
}
.ab-btn-wrap {
    margin: 0;
}
.ab-btn {
    display: inline-block;
    background: #ffffff;
    color: #81c44e;
    font-weight: bold;
    font-size: 16px;
    padding: 14px 40px;
    border-radius: 50px;
}
.assessment-banner:hover .ab-btn {
    background: #f0f0f0;
}
@media (max-width: 768px) {
    .ab-title {
        font-size: 22px;
    }
    .ab-sub {
        font-size: 14px;
    }
    .ab-btn {
        font-size: 14px;
        padding: 12px 32px;
    }
}


/* ========================================
   グローバルナビ表示修正
======================================== */
.navi .menu-header,
.navi .menu-pc {
    display: flex !important;
    justify-content: center;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0;
}
.navi {
    background: #ffffff !important;
    border-bottom: 1px solid #e0e0e0;
}
.navi-in > ul > .menu-item > a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: #333333 !important;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.navi-in > ul > .menu-item > a:hover {
    background: #f5f5f5;
    color: #81c44e !important;
}
@media (max-width: 768px) {
    .navi {
        display: none !important;
    }
}

/* ========================================
   個別ページ共通
======================================== */
.page-wrap {
    margin: 0;
}
.page-hero {
    padding: 60px 20px;
    text-align: center;
}
.page-hero-inner {
    max-width: 800px;
    margin: 0 auto;
}
.page-hero-title {
    font-size: 32px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 16px;
}
.page-hero-desc {
    font-size: 16px;
    color: #555555;
    line-height: 1.8;
}

/* ========================================
   お手紙ページ
======================================== */
.letter-intro,
.letter-promise {
    padding: 60px 20px;
    background: #ffffff;
}
.letter-inner {
    max-width: 800px;
    margin: 0 auto;
}
.letter-inner h2 {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #333333 !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.letter-text {
    font-size: 15px;
    color: #555555;
    line-height: 1.9;
    margin-bottom: 16px;
}
.letter-service {
    padding: 60px 20px;
}
.letter-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.letter-service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.letter-service-title {
    font-size: 17px;
    font-weight: bold;
    color: #333333;
    line-height: 1.5;
    margin-bottom: 12px;
}
.letter-service-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.7;
}
.letter-promise-list {
    max-width: 500px;
    margin: 0 auto;
}
.letter-promise-item {
    font-size: 16px;
    color: #333333;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}
.letter-promise-item:last-child {
    border-bottom: none;
}
.letter-flow {
    padding: 60px 20px;
}
.letter-flow-steps {
    margin-top: 32px;
}
.letter-flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
.letter-flow-step:last-child {
    border-bottom: none;
}
.letter-flow-num {
    width: 40px;
    height: 40px;
    background: #81c44e;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.letter-flow-content {
    flex: 1;
}
.letter-flow-title {
    font-size: 17px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 4px;
}
.letter-flow-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.7;
}

/* ========================================
   査定フォーム共通
======================================== */
.form-section {
    padding: 60px 20px;
    background: #ffffff;
}
.form-inner {
    max-width: 700px;
    margin: 0 auto;
}
.form-inner h2 {
    font-size: 24px !important;
    font-weight: bold !important;
    color: #333333 !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
}
.form-section-lead {
    text-align: center;
    font-size: 15px;
    color: #555555;
    margin-bottom: 24px;
}
.form-benefits {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.form-benefit-item {
    font-size: 14px;
    color: #81c44e;
    font-weight: bold;
}
.form-section-title {
    font-size: 16px;
    font-weight: bold;
    color: #81c44e;
    margin-top: 32px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #81c44e;
}
.satei-form label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 16px;
}
.satei-form .required {
    color: #e85d3a;
    font-size: 12px;
}
.satei-form input[type="text"],
.satei-form input[type="tel"],
.satei-form input[type="email"],
.satei-form select,
.satei-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 15px;
    margin-top: 6px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.satei-form input:focus,
.satei-form select:focus,
.satei-form textarea:focus {
    border-color: #81c44e;
    outline: none;
    box-shadow: 0 0 0 3px rgba(129,196,78,0.15);
}
.satei-form textarea {
    height: 120px;
    resize: vertical;
}
.satei-form select {
    appearance: auto;
}
.form-note {
    font-size: 12px;
    color: #999999;
    margin-top: 16px;
    margin-bottom: 24px;
}
.btn-satei-submit {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 16px;
    background: #81c44e !important;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-satei-submit:hover {
    background: #70b534 !important;
}
.form-tel-info {
    margin-top: 40px;
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
}
.form-tel-info p {
    margin-bottom: 4px;
    color: #555555;
    font-size: 14px;
}
.form-tel-number a {
    font-size: 28px;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
}
.form-tel-hours {
    font-size: 13px;
    color: #999999;
}
@media (max-width: 768px) {
    .letter-service-grid {
        grid-template-columns: 1fr;
    }
    .form-benefits {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .page-hero-title {
        font-size: 24px;
    }
}

/* ========================================
   会社概要テーブル
======================================== */
.company-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 32px;
}
.company-table th,
.company-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    text-align: left;
    vertical-align: top;
}
.company-table th {
    width: 30%;
    color: #333333;
    font-weight: bold;
    background: #f9f9f9;
}
.company-table td {
    color: #555555;
}
.company-table td a {
    color: #81c44e;
}
.company-map iframe {
    width: 100%;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .company-table th,
    .company-table td {
        display: block;
        width: 100%;
        padding: 12px 16px;
    }
    .company-table th {
        border-bottom: none;
        padding-bottom: 4px;
    }
}

/* ========================================
   デザイン品質向上 — 2026.04.12
======================================== */

/* --- Gemini透かし隠し（右下トリミング） --- */
.onayami-img img,
.voice-photo img,
.results-img img {
    object-position: center top;
}
.onayami-img {
    overflow: hidden;
    border-radius: 8px;
}
.onayami-img img {
    transform: scale(1.08);
}

/* --- セクション余白の拡大 --- */
.onayami-section,
.strength-section,
.promise-section,
.voice-section,
.results-section,
.compare-section,
.flow-section,
.faq-section,
.greeting-section,
.news-section {
    padding: 80px 20px !important;
}

/* --- h2見出し強化 --- */
.onayami-section h2,
.strength-section h2,
.promise-section h2,
.voice-section h2,
.results-section h2,
.compare-section h2,
.flow-section h2,
.faq-section h2,
.greeting-section h2,
.news-section h2 {
    font-size: 30px !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 12px !important;
}

/* --- 英字サブタイトル強化 --- */
.section-en {
    font-size: 13px;
    font-weight: 700;
    color: #81c44e;
    letter-spacing: 4px;
    margin-bottom: 4px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- カード内余白の拡大 --- */
.onayami-card {
    padding: 32px 20px;
}
.voice-card {
    padding: 32px 20px;
}
.letter-service-card {
    padding: 36px 24px;
}

/* --- CTAボタンの差別化 --- */
.btn-cta-main,
.btn-hero-main {
    background: #ffffff;
    color: #81c44e;
    font-size: 16px;
    font-weight: bold;
    padding: 16px 44px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}
.btn-cta-main:hover,
.btn-hero-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.btn-cta-sub,
.btn-hero-sub {
    border: 2px solid #ffffff;
    padding: 16px 44px;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-cta-sub:hover,
.btn-hero-sub:hover {
    background: rgba(255,255,255,0.15);
}

/* --- 固定サイドCTA改善 --- */
.side-cta a {
    width: 56px;
    padding: 24px 0;
    font-size: 15px;
    letter-spacing: 4px;
    box-shadow: -2px 0 12px rgba(0,0,0,0.15);
}
.side-cta-satei {
    background: #e85d3a;
}
.side-cta-satei:hover {
    background: #d04e2e;
}
.side-cta-soudan:hover {
    background: #70b534;
}

/* --- 強みセクションの番号デザイン強化 --- */
.strength-num {
    font-size: 42px;
    color: #81c44e;
    opacity: 0.9;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* --- 比較テーブル強化 --- */
.compare-table {
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border-radius: 8px;
    overflow: hidden;
}
.compare-table tbody tr:hover {
    background: #f9fff4;
}

/* --- FAQ デザイン強化 --- */
.faq-question {
    padding: 20px 24px;
}
.faq-q-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
}
.faq-a-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
}

/* --- ヒーローの奥行き強化 --- */
.hero-section {
    position: relative;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.3));
    pointer-events: none;
}

/* --- リンクのホバーエフェクト --- */
.onayami-link,
.voice-more a,
.results-more a,
.news-more a {
    transition: opacity 0.3s ease;
}
.onayami-link:hover,
.voice-more a:hover,
.results-more a:hover,
.news-more a:hover {
    opacity: 0.7;
}

/* --- 取引実績カードのホバー --- */
.results-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.results-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ========================================
   スマホ最適化 — 2026.04.12
======================================== */

/* --- Cocoonモバイルメニュー非表示 --- */
.mobile-menu-buttons {
    display: none !important;
}
#navi-menu-input:checked ~ .mobile-menu-buttons {
    display: none !important;
}

/* --- 768px以下 --- */
@media (max-width: 768px) {
    /* バナーセクション画像の最適化 */
    .bsz-left img,
    .bsz-right img {
        max-height: 180px;
        object-fit: contain;
    }

    /* 比較テーブルをスマホ対応 */
    .compare-inner {
        overflow-x: visible;
    }
    .compare-table {
        min-width: auto;
        font-size: 12px;
    }
    .compare-table th,
    .compare-table td {
        padding: 10px 6px;
    }
    .compare-th-kaitori,
    .compare-th-chukai {
        font-size: 14px;
    }
}

/* --- 480px以下 --- */
@media (max-width: 480px) {
    /* セクション余白の縮小 */
    .onayami-section,
    .strength-section,
    .promise-section,
    .voice-section,
    .results-section,
    .compare-section,
    .flow-section,
    .faq-section,
    .greeting-section,
    .news-section,
    .cta-section,
    .line-section {
        padding: 48px 16px !important;
    }

    /* h2・英字サブタイトルのサイズ調整 */
    .onayami-section h2,
    .strength-section h2,
    .promise-section h2,
    .voice-section h2,
    .results-section h2,
    .compare-section h2,
    .flow-section h2,
    .faq-section h2,
    .greeting-section h2,
    .news-section h2,
    .cta-section h2 {
        font-size: 20px !important;
        letter-spacing: 0.02em !important;
    }
    .section-en {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }

    /* 取引実績を1列に */
    .results-grid {
        grid-template-columns: 1fr !important;
    }

    /* バナーセクションの最適化 */
    .banner-inner {
        gap: 12px;
    }
    .banner-souzoku {
        padding: 16px !important;
    }
    .bsz-left,
    .bsz-right {
        display: none;
    }
    .bsz-text {
        text-align: center;
    }
    .bsz-title {
        font-size: 18px;
    }
    .banner-sell {
        min-height: 140px !important;
    }
    .bsl-title {
        font-size: 18px;
    }

    /* ヒーローの最適化 */
    .hero-section {
        padding: 50px 16px 40px !important;
    }
    .hero-title {
        font-size: 24px !important;
        line-height: 1.4;
    }
    .hero-sub {
        font-size: 12px !important;
    }
    .hero-desc {
        font-size: 12px !important;
    }
    .hero-btns {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    .btn-hero-main,
    .btn-hero-sub {
        font-size: 14px !important;
        padding: 12px 32px !important;
        width: 85%;
        text-align: center;
    }

    /* CTA最適化 */
    .cta-section h2 {
        font-size: 20px !important;
    }
    .cta-desc {
        font-size: 13px;
    }
    .btn-cta-main,
    .btn-cta-sub {
        width: 85% !important;
        font-size: 14px !important;
        padding: 14px 20px !important;
    }
    .cta-tel a {
        font-size: 22px !important;
    }

    /* 強みセクション番号 */
    .strength-num {
        font-size: 28px !important;
    }
    .strength-title {
        font-size: 16px;
    }
    .strength-desc {
        font-size: 13px;
    }

    /* 安心の約束 画像サイズ */
    .promise-img {
        width: 100px;
        height: 100px;
    }

    /* お客様の声 写真サイズ */
    .voice-photo {
        width: 64px;
        height: 64px;
    }

    /* FAQ調整 */
    .faq-question {
        padding: 14px 16px;
    }
    .faq-q-text {
        font-size: 13px;
    }

    /* 代表挨拶 */
    .greeting-photo {
        width: 150px !important;
    }
    .greeting-name {
        font-size: 18px;
        text-align: center;
    }
    .greeting-body {
        font-size: 14px;
    }

    /* LINE誘導 */
    .line-title {
        font-size: 20px;
    }
    .line-icon {
        width: 64px;
        height: 64px;
    }

    /* 固定フッターバー */
    .fixed-footer-bar {
        z-index: 99999;
    }

    /* 査定バナー */
    .ab-title {
        font-size: 20px !important;
    }
    .ab-sub {
        font-size: 13px !important;
    }
    .ab-btn {
        font-size: 13px !important;
        padding: 10px 28px !important;
    }
}

/* ========================================
   個別ページヒーロー（写真+オーバーレイ）
======================================== */
.page-hero {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    padding: 80px 20px !important;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}
.page-hero-inner {
    position: relative;
    z-index: 1;
}
.page-hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-hero-desc {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
    .page-hero {
        padding: 60px 16px !important;
        min-height: 200px;
    }
    .page-hero-title {
        font-size: 22px !important;
    }
    .page-hero-desc {
        font-size: 13px !important;
    }
}

/* ========================================
   個別ページヒーロー（写真+オーバーレイ）
======================================== */
.page-hero {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    padding: 80px 20px !important;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}
.page-hero-inner {
    position: relative;
    z-index: 1;
}
.page-hero-title {
    color: #ffffff !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-hero-desc {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
@media (max-width: 480px) {
    .page-hero {
        padding: 60px 16px !important;
        min-height: 200px;
    }
    .page-hero-title {
        font-size: 22px !important;
    }
    .page-hero-desc {
        font-size: 13px !important;
    }
}

/* ========================================
   お悩みカード オーバーレイ化 v4
   ======================================== */

.onayami-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.onayami-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.onayami-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.onayami-photo {
    position: relative;
    width: 100%;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onayami-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.onayami-card-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 30px 20px;
}

.onayami-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: bold;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 8px !important;
}

.onayami-desc {
    color: rgba(255,255,255,0.9) !important;
    font-size: 13px !important;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    margin-bottom: 0 !important;
}

.onayami-link {
    display: block;
    text-align: center;
    padding: 16px 0;
    font-size: 16px !important;
    color: #ffffff !important;
    font-weight: bold;
    background: #81c44e;
    margin: 0 !important;
    letter-spacing: 2px;
    transition: background 0.3s ease;
}

.onayami-card:hover .onayami-link {
    background: #70b534;
}

.onayami-card:hover .onayami-photo img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .onayami-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }

    .onayami-photo {
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .onayami-grid {
        grid-template-columns: 1fr !important;
    }

    .onayami-photo {
        min-height: 200px;
    }

    .onayami-title {
        font-size: 18px !important;
    }
}

/* ========================================
   安心の約束 v2（リスト形式）
   ======================================== */

.promise-list-v2 {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: left;
}

.promise-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #e0e0e0;
}

.promise-item-v2:last-child {
    border-bottom: none;
}

.promise-icon-v2 {
    width: 40px;
    height: 40px;
    background: #81c44e;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promise-content-v2 {
    flex: 1;
}

.promise-title-v2 {
    font-size: 17px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 6px;
}

.promise-desc-v2 {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
}

@media (max-width: 480px) {
    .promise-item-v2 {
        gap: 16px;
        padding: 20px 0;
    }

    .promise-icon-v2 {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .promise-title-v2 {
        font-size: 15px;
    }

    .promise-desc-v2 {
        font-size: 13px;
    }
}

/* ========================================
   お客様の声 イニシャルアイコン
   ======================================== */

.voice-initial {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    letter-spacing: 1px;
}

/* ========================================
   取引実績 v2（数字ベース）
   ======================================== */

.results-lead {
    font-size: 15px;
    color: #555555;
    margin-top: 16px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.results-numbers {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.results-num-item {
    text-align: center;
}

.results-num-value {
    font-size: 56px;
    font-weight: bold;
    color: #81c44e;
    line-height: 1;
    font-family: 'Georgia', serif;
}

.results-num-unit {
    font-size: 16px;
    font-weight: bold;
    color: #81c44e;
    margin-top: 4px;
}

.results-num-label {
    font-size: 14px;
    color: #666666;
    margin-top: 8px;
}

.results-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.results-area-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #ffffff;
    border: 1px solid #81c44e;
    color: #81c44e;
    font-size: 14px;
    font-weight: bold;
    border-radius: 30px;
}

.results-athome {
    text-align: center;
    margin-top: 16px;
}

.results-athome a {
    display: inline-block;
    padding: 14px 40px;
    background: #81c44e;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.results-athome a:hover {
    background: #70b534;
}

@media (max-width: 480px) {
    .results-numbers {
        gap: 24px;
    }

    .results-num-value {
        font-size: 40px;
    }

    .results-area-tag {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* ========================================
   物件情報ボタン
   ======================================== */

.results-bukken {
    text-align: center;
    margin-top: 32px;
}

.results-bukken-title {
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 16px;
}

.results-bukken-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.results-bukken-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #81c44e;
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
    min-width: 140px;
    text-align: center;
}

.results-bukken-btn:hover {
    background: #70b534;
}

@media (max-width: 480px) {
    .results-bukken-btns {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .results-bukken-btn {
        width: 80%;
    }
}

/* ========================================
   おすすめ物件カード
======================================== */
.bukken-showcase {
    margin-bottom: 40px;
}
.bukken-showcase-title {
    font-size: 18px;
    font-weight: bold;
    color: #333333;
    text-align: center;
    margin-bottom: 24px;
}
.bukken-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.bukken-card-link {
    text-decoration: none;
    color: inherit;
}
.bukken-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}
.bukken-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.bukken-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.bukken-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bukken-card-noimg {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
}
.bukken-card-info {
    padding: 16px;
}
.bukken-card-title {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    line-height: 1.5;
}
.bukken-detail {
    max-width: 700px;
    margin: 0 auto;
}
.bukken-price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #e85d3a;
    text-align: center;
    margin-bottom: 24px;
}
.bukken-info-table {
    width: 100%;
    border-collapse: collapse;
}
.bukken-info-table th,
.bukken-info-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    text-align: left;
}
.bukken-info-table th {
    width: 30%;
    color: #333333;
    font-weight: bold;
    background: #f9f9f9;
}
.bukken-info-table td {
    color: #555555;
}
.bukken-athome-link {
    text-align: center;
    margin-top: 24px;
}
.bukken-athome-link a {
    color: #81c44e;
    font-weight: bold;
    font-size: 15px;
}
@media (max-width: 480px) {
    .bukken-grid {
        grid-template-columns: 1fr;
    }
    .bukken-price-tag {
        font-size: 24px;
    }
    .bukken-info-table th,
    .bukken-info-table td {
        display: block;
        width: 100%;
        padding: 8px 12px;
    }
    .bukken-info-table th {
        border-bottom: none;
        padding-bottom: 2px;
    }
}

/* 代表写真プレースホルダー非表示（実写入手まで） */
.greeting-photo {
    display: none !important;
}
.greeting-content {
    justify-content: center;
}
.greeting-text {
    max-width: 600px;
}

/* 取引実績 単位空欄の高さ補正 */
.results-num-unit:empty,
.results-num-unit:blank {
    min-height: 1em;
    display: block;
}


/* ========================================
   ヘッダーロゴサイズ調整
======================================== */
.logo-header img,
.site-logo-image,
#header .logo-image img {
    max-height: 50px !important;
    width: auto !important;
}

@media (max-width: 480px) {
    .logo-header img,
    .site-logo-image,
    #header .logo-image img {
        max-height: 36px !important;
    }
}


/* ========================================
   フッター強化
======================================== */
.maebashi-footer {
    padding: 0;
    color: #cccccc;
    font-size: 14px;
}

.footer-top-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 48px 20px 40px;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-company-info {
    font-size: 13px;
    line-height: 1.8;
    color: #aaaaaa;
}

.footer-links-title {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #444444;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #81c44e;
}

.footer-bottom-bar {
    background: #1a1a1a;
    text-align: center;
    padding: 16px 20px;
    font-size: 12px;
    color: #888888;
}

.footer-bottom-bar p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top-area {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .footer-top-area {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 32px 20px;
    }
}
