/*
===============================================
Components CSS for FujiwaraOffice Website
株式会社ふじわらOffice コーポレートサイト用共通コンポーネント
===============================================
*/

/* ===============================================
   ボタンコンポーネント / Button Components
   =============================================== */

/* 画像ボタンコンポーネントのみ採用 */
.image-btn {
  display: inline-block !important;
  transition: all var(--transition-normal);
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  vertical-align: middle;
}

.image-btn:hover { transform: scale(1.05); opacity: 0.8; }
.image-btn:active { transform: scale(0.98); }
.image-btn img { display: block !important; max-width: 100%; height: 100%; object-fit: contain; min-width: 20px; min-height: 20px; }

/* 地図リンク */
.map-link {
  font-size: var(--font-size-xs);
}
.map-link a.text-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-black);
  gap: var(--spacing-sm);
  letter-spacing: 0;
}
.map-link a.text-btn .btn-icon {
  width: 1em;
  height: 1em;
}

/* ===============================================
   セクション見出し / Section Headings
   共通スタイル（各セクション固有の上書きは各CSSへ）
   =============================================== */

.section-title {
  font-family: var(--font-japanese);
  font-weight: 700;
  font-size: var(--font-size-xs);
  line-height: 1.6;
  color: var(--color-text);
  margin: 0 0 var(--spacing-md);
}

.section-subtitle {
  font-family: var(--font-english);
  font-weight: 600;
  font-size: var(--font-size-2xl);
  line-height: 1.2;
  color: var(--color-primary);
  margin: 0 0 var(--spacing-sm);
  padding-left: 1rem;
  position: relative;
  text-align: left;
  letter-spacing: 0;
}

.section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

.content-title {
  font-family: var(--font-japanese);
  font-weight: 700;
  font-size: var(--font-size-2xl);
  line-height: 1.3;
  color: var(--color-text);
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-gray-subtle);
  position: relative;
}
.content-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 30px;
  height: 1px;
  background-color: var(--color-primary);
}

/* ===============================================
   ページ内ナビゲーション / Page Local Navigation
   =============================================== */

.page-local-nav .nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 12px;
  margin: 0 0 var(--spacing-2xl);
  padding: 0;
  list-style: none;
}

.page-local-nav .nav-item {
  font-size: var(--font-size-sm);
}

.page-local-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--color-gray-subtle);
  padding: 1em;
  text-align: left;
  color: var(--color-text);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.page-local-nav .nav-link::after {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url('../images/icon_down.svg');
  background-size: 8px;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: var(--spacing-md);
  flex-shrink: 0;
}

.page-local-nav .nav-item:hover .nav-link {
  background-color: var(--color-accent);
}


/* ===============================================
   サービスアクション / Service Actions
   =============================================== */

.service-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.service-actions .text-btn {
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-normal);
}

.service-actions .image-btn {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 40px;
  transform: translateX(-50%);
  transition: all var(--transition-normal);
}

.service-actions .image-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  background-image: url('../images/yellow-circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.service-actions .image-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.service-actions:hover .image-btn img {
  transform: translateX(28px);
}

.service-actions.emphasis {
  padding: var(--spacing-md) var(--spacing-2xl);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-2xl);
  justify-content: space-between;
}
.service-actions.emphasis .text-btn {
  font-size: var(--font-size-xl);
  letter-spacing: 0.22em;
}

.is-buy .service-actions.emphasis {
  background-color: var(--color-accent-subtle);
}

/* 売主ページ: 色替え指定 */
.is-sell .service-actions.emphasis {
  background-color: var(--color-primary-subtle);
}
.is-sell .service-actions.emphasis .image-btn::before,
.is-sell .service-actions .image-btn::before {
  background-image: url('../images/blue-circle.svg');
}



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

.section-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-2xl);
}

.section-cta .text-btn {
  font-weight: 700;
  font-size: var(--font-size-sm);
  padding-bottom: var(--spacing-xs);
  border-bottom: 1px solid var(--color-black);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-normal);
}

.section-cta.white .text-btn {
  color: var(--color-white);
  border-color: var(--color-white);
}




/* .btn-icon には特別なスタイルを適用しない */

.section-cta .image-btn {
  display: inline-block !important; /* 確実な表示 */
  flex-shrink: 0; /* フレックス内で縮小を防ぐ */
  transition: all var(--transition-normal);
}

.section-cta:hover .image-btn {
  transform: scale(1.05);
  opacity: 0.8;
}

.section-cta .image-btn img {
  display: block !important; /* 画像の確実な表示 */
  width: auto;
  height: auto;
  min-width: 65px;
  min-height: 60px;
}

/* 物件サーチ */
.bukken-search {
  position: fixed; /* 画面スクロールに追随 */
  bottom: 90px;
  right: 0;
  width: 50px;
  height: 200px;
  z-index: 9;
  display: block;
}

/* ===============================================
   カードコンポーネント（未使用のため削除）
   =============================================== */

/* ===============================================
   リストコンポーネント（未使用のため削除）
   =============================================== */


/* ===============================================
   取引の流れ / Steps List
   =============================================== */

.steps-list {
  list-style: none;
  margin: 0;
  padding: 20px 0; /* 上下余白はラインの端のため */
  counter-reset: step;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 19px; /* 40px 円の中心 - 1px(線の半分) */
  top: 20px;
  bottom: 20px;
  width: 2px;
  background-color: var(--color-black);
  z-index: 0;
}

.steps-list li {
  position: relative;
  width: calc(100% - 20px);
  background-color: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  padding: 5px var(--spacing-sm) 5px 30px;
  margin: 0 0 var(--spacing-md);
  margin-left: 20px; /* バッジより20px右へ */
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  min-height: 30px; /* 円と同じ高さを最低確保 */
  display: flex;
  align-items: center;
  z-index: 1; /* 背面の縦ラインより前に */
  letter-spacing: 0;
}

.steps-list li:last-child { margin-bottom: 0; }

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: -20px; /* li 本体を右に20px動かしたため、バッジは左へ補正 */
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  color: var(--color-text);
  font-size: var(--font-size-xl);
  font-weight: 700;
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-full);
  line-height: 1;
  z-index: 2;
}

/* 売主ページ: フロー色替え */
.is-sell .steps-list li { background-color: var(--color-primary-subtle); }
.is-sell .steps-list li::before { border-color: var(--color-primary); }

/* 縦ラインの上下の余白を隠して、"li と li の間" にのみ見せる */
.steps-list li:first-child::after,
.steps-list li:last-child::after {
  content: '';
  position: absolute;
  left: 19px; /* ライン位置と揃える */
  width: 2px;
  background-color: var(--color-white);
  z-index: 1; /* ラインより上、バッジより下でOK */
}

.steps-list li:first-child::after { top: -20px; bottom: 50%; background: transparent; }
.steps-list li:last-child::after { top: 50%; bottom: -20px; background: transparent; }

@media (max-width: 499px) {
  .steps-list li small {
    display: none;
  }
}

/* ===============================================
   ユーティリティクラス / Utility Classes
   =============================================== */

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-gray-medium); }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-muted { color: var(--color-gray-dark); }

.bg-primary { background-color: var(--color-primary); }
.bg-secondary { background-color: var(--color-gray-subtle); }
.bg-accent { background-color: var(--color-accent); }
.bg-white { background-color: var(--color-white); }
.bg-muted { background-color: var(--color-background); }

.font-light { font-weight: var(--font-weight-light); }
.font-normal { font-weight: var(--font-weight-normal); }
.font-medium { font-weight: var(--font-weight-medium); font-family: var(--font-japanese); }
.font-semibold { font-weight: var(--font-weight-semibold); font-family: var(--font-english); }
.font-bold { font-weight: var(--font-weight-bold); font-family: var(--font-japanese); }

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }
.mb-3xl { margin-bottom: var(--spacing-3xl); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

.p-sm { padding: var(--spacing-sm); }
.p-md { padding: var(--spacing-md); }
.p-lg { padding: var(--spacing-lg); }
.p-xl { padding: var(--spacing-xl); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

.hidden { display: none; }
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }


/* ===============================================
    Back to Top Button
   =============================================== */

.back-to-top {
  width: 60px;
  height: 60px;
  margin: var(--spacing-lg) var(--spacing-md) auto;
  margin-left: auto;
  pointer-events: all;
}

.back-to-top:hover {
  opacity: 0.8;
}
/* カーソルを確実にポインタへ */
.back-to-top,
.back-to-top * { cursor: pointer; }

/* 非表示時はイベント遮断、表示時のみ通す */
.back-to-top { pointer-events: none; }
.back-to-top.visible { pointer-events: auto; }

/* ===============================================
   下層ページ共通
   =============================================== */

/* パンくずリスト */
.breadcrumb {
  margin: var(--spacing-md) 0 var(--spacing-2xl);
  font-size: var(--font-size-xs);
  display: flex;
  flex-wrap: nowrap;
  gap: var(--spacing-md);
  justify-content: flex-end;
}
.breadcrumb li a {
  color: var(--color-gray-medium);
  text-decoration: none;
}
.breadcrumb li a:hover {
  color: var(--color-primary);
}
.breadcrumb li {
  color: var(--color-text);
  display: inline-block;
  position: relative;
}
.breadcrumb li:not(.current) {
  padding-right: var(--spacing-lg);
}
.breadcrumb li:not(.current)::after {
  content: '';
  width: 14px;
  height: 1px;
  background-color: var(--color-gray-subtle);
  position: absolute;
  top: 50%;
  right: 0;
}

.company-profile-table {
  width: 100%;
  margin-bottom: var(--spacing-3xl);
}
.company-profile-table th,
.company-profile-table td {
  padding: var(--spacing-md) 0;
  border-bottom: 1px solid var(--color-gray-subtle);
  font-size: var(--font-size-sm);
  text-align: left;
}
.company-profile-table th {
  font-weight: 700;
  width: 10em;
}




/* ===============================================
   スタッフ紹介セクション / Member Cards
   =============================================== */

.member-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.member-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
}

.member-illustration {
  width: 100%;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-accent);
}

.member-illustration img {
  display: block;
  width: 100%;
  height: auto;
}

.member-meta {
  text-align: center;
}

.member-meta .member-role {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
}

.member-meta .member-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--spacing-sm);
}

.member-actions .text-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.75em 1.5em;
  border-radius: var(--radius-full);
  background: var(--color-gray-subtle);
  color: var(--color-text);
  font-size: var(--font-size-xs);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.member-actions .text-btn::after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image: url('../images/icon_plus_circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.member-actions .text-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

/* ===============================================
   メンバーリスト / Member List
   =============================================== */

.member-list {
  border-top: 1px solid var(--color-gray-subtle);
}

.member-list li {
  padding: var(--spacing-sm) 0;
  border-bottom: 1px solid var(--color-gray-subtle);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-normal);
  display: flex;
  flex-direction: row;
  gap: 1em;
  justify-content: flex-start;
  align-items: center;
}

.member-list .text-btn {
  display: inline-flex;
  align-items: center;
  gap: 1em; /* テキストとアイコンの間隔 */
  font-size: var(--font-size-xs);
  text-decoration: none;
  color: var(--color-text);
  transition: all var(--transition-normal);
}

.member-list .text-btn::after {
  content: '';
  display: inline-block;
  width: 23px;
  height: 23px;
  background-image: url('../images/icon_plus_circle.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.member-list .text-btn:hover { color: var(--color-primary); }

/* 左端: 役職+氏名 / 右端: ボタン */
.member-list .member-role { margin-right: var(--spacing-md); }
.member-list .text-btn { margin-left: auto; }

/* ===============================================
   プロフィール ポップアップ / Profile Popup
   透明の全画面レイヤー + 画面中央固定ボックス
   =============================================== */

.profile-popup[aria-hidden="true"] { display: none; }
.profile-popup[aria-hidden="false"] { display: block; }

.profile-popup {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: var(--z-modal);
  background: transparent; /* 背景の暗転なし */
}

.profile-popup__box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100vw - 40px);
  max-width: 460px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--spacing-2xl) var(--spacing-xl);
  z-index: var(--z-modal);
}

.profile-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
}

.profile-popup__close img {
  width: 60px;
  height: 60px;
}

.profile-popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

.profile-illustration img {
  width: 200px;
  height: 200px;
  display: block;
}

.profile-meta { text-align: center; }
.profile-role { font-size: var(--font-size-xs); font-weight: var(--font-weight-normal); margin-bottom: var(--spacing-xs); }
.profile-name { font-size: var(--font-size-lg); font-weight: var(--font-weight-bold); margin-bottom: var(--spacing-sm); }
.profile-comment { text-align: justify; font-size: var(--font-size-sm); line-height: var(--line-height-relaxed); }


/* ===============================================
   代表あいさつセクション / Representative Greeting Section
   =============================================== */

.president-message-section .message-signature figure{
  width: 100px;
  height: auto;
  margin: 0 0 0 auto;
}

/* ===============================================
   お問い合わせセクション / Contact Section
   =============================================== */

.contact-section .container-fluid {
  background-color: var(--color-primary);
  padding: var(--spacing-2xl) var(--spacing-lg);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  margin-left: var(--spacing-lg);
  margin-right: var(--spacing-lg);
  width: auto;
}

.contact-section .contact-title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--color-white);
}

.contact-section .contact-intro {
  font-size: var(--font-size-base);
}

.contact-section .contact-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  align-items: center;
}

.contact-section .image-btn {
  width: 100%;
  max-width: 340px;
}

.contact-section .contact-address {
  font-style: normal; /* address の斜体を打ち消し */
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.contact-section .map-link a.text-btn {
  color: var(--color-white);
  border-color: var(--color-white);
}

.contact-section .business-hours {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}


/* ===============================================
   コンセプトセクション / Concept Section
   =============================================== */

.concept-keyvisual {
  background: url('../images/concept_keyvisual.webp') no-repeat bottom center / cover;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  padding: var(--spacing-3xl) var(--spacing-lg) 200px;
  color: var(--color-white);
}
.concept-keyvisual img {
  width: 50%;
  margin: 0 auto var(--spacing-2xl);
}

.mvv-section .mvv-subtitle {
  background: url('../images/concept_title_bg.webp') no-repeat left center / 80px 80px;
  padding: 20px 0 20px 30px;
  font-family: var(--font-english);
  font-size: var(--font-size-5xl);
  font-weight: 700;
  color: var(--color-primary);
  text-align: left;
  letter-spacing: 0.06rem;
  margin-bottom: 0;
  line-height: 1;
}

.mvv-section .mvv-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text);
  text-align: left;
  margin-top: -10px;
  margin-bottom: var(--spacing-xl);
  padding-left: 80px;
}

.mvv-section .mvv-body p:has(strong) {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--spacing-sm);
}

.mvv-section .list-bulleted li {
  background: var(--color-background) url('../images/icon_check.svg') no-repeat 1em center / 20px auto;
  padding: 0.75em 1em 0.75em calc(1em + 30px);
  color: var(--color-primary);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  margin-bottom: var(--spacing-sm);
  border-radius: var(--radius-md);
}


/* ===============================================
   サービスセクション / Service Section
   =============================================== */
.service-title.with-icon {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  justify-content: center;
  font-size: var(--font-size-2xl);
  font-weight: 700;
}

.service-title.with-icon img {
  width: 34px;
  height: auto;
}


/* ===============================================
   汎用: セクション用パネル / Feature Panel (再利用可)
   =============================================== */
.feature-panel {
  padding: var(--spacing-lg);
  background-color: var(--color-background);
  border-radius: var(--radius-xl);
}

.feature-panel .feature-title.with-icon {
  display: flex;
  justify-content: flex-start;
  gap: var(--spacing-md);
  align-items: center;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid var(--color-gray-subtle);
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.feature-panel .feature-title .title-icon {
  height: 30px;
  width: auto;
}

.feature-panel .subtitle {
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-align: center;
}

/* ===============================================
   FAQ / Accordion
   =============================================== */
.faq-list {
  display: grid;
  gap: var(--spacing-md);
}

.faq-item {
  border: 1px solid var(--color-gray-subtle);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  overflow: hidden;
}

.faq-question { margin: 0; }

.faq-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  background: none;
  border: none;
  font-size: var(--font-size-sm);
  cursor: pointer;
}

.faq-toggle .q-label { font-weight: 700; margin-right: var(--spacing-sm); }
.faq-toggle .icon { font-weight: 700; font-family: var(--font-english); }

.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg);
  font-size: var(--font-size-sm);
}

.faq-item.is-open { border-color: var(--color-primary); }

/* ===============================================
   FAQ セクション（買主/売主共通デザイン）
   =============================================== */
.faq-section .faq-list { gap: 0; }

.faq-section .faq-item {
  padding-bottom: var(--spacing-lg);
  border: none;
  border-bottom: 1px solid var(--color-gray-subtle);
  border-radius: 0;
  background: transparent;
  margin-bottom: var(--spacing-md);
}

.faq-section .faq-question { margin: 0; }

.faq-section .faq-toggle {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start; /* 左基準で揃える */
  text-align: left;
  line-height: 1.3;
  gap: var(--spacing-md);
  padding-top: calc(var(--spacing-xs) + 2px); /* テキストをわずかに下げる */
  padding-bottom: 0;
}

.faq-section .faq-toggle .q-label {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  color: var(--color-white);
  font-size: var(--font-size-xl);
  display: flex;
  line-height: 1;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  margin-top: calc((var(--spacing-xs) + 2px) * -1); /* ボタンのpadding-top分を相殺 */
}

.faq-section .faq-toggle .icon {
  font-size: var(--font-size-2xl);
  color: var(--color-text);
  line-height: 1;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--color-gray-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  margin-left: auto; /* 右端へ固定 */
  margin-top: calc(var(--spacing-xs) * -1); /* ボタンのpadding-top分を相殺 */
}

.faq-section .faq-answer {
  padding: var(--spacing-sm) var(--spacing-lg) var(--spacing-sm) calc(40px + var(--spacing-lg));
  margin-left: 0; /* 左位置を統一 */
}

/* ===============================================
   バナー / Banners (hover zoom)
   =============================================== */
.banner-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

.banner-item {
  display: block;
  overflow: hidden;
  transition: transform 400ms ease;
}

.banner-item img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
}

.banner-item:hover { transform: scale(1.04); }


/* ===============================================
   課題解決セクション / Pain Section
   =============================================== */
.pain-section .list-bulleted {
  margin-bottom: var(--spacing-2xl);
}
.pain-section .list-bulleted li {
  background: url('../images/icon_voice-yellow.svg') no-repeat left center / 12px auto;
  padding-left: 1.25em;
  margin: 0 0 var(--spacing-sm) 0;
  letter-spacing: 0.06em;
}

/* 売主ページ: 課題提起アイコン色替え */
.is-sell .pain-section .list-bulleted li {
  background-image: url('../images/icon_voice-blue.svg');
}

/* ===============================================
   ふじわらオフィスの強み / Fujiwara Office's Strengths
   =============================================== */
.strengths-section {
  margin-bottom: var(--spacing-4xl);
}
   .strengths-section .strength-card {
  border-radius: var(--radius-lg);
  background: var(--color-background);
  padding: var(--spacing-xl) var(--spacing-md);
  margin-bottom: var(--spacing-sm);
}

.strengths-section .strength-card .strength-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.16em;
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid var(--color-gray-subtle);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--spacing-sm);
  height: 40px;
}
.strengths-section .strength-card .strength-title span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-accent);
  line-height: 1;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding-left: 3px;
}