/* ==========================================================
   オーナーチェンジ物件投資LP - カスタムスタイル
   ========================================================== */

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* アンカーリンク先がヘッダーに隠れないようにオフセット */
section[id] {
  scroll-margin-top: 90px;
}

/* ヘッダー：スクロールで影をつける */
#site-header.scrolled {
  box-shadow: 0 2px 12px rgba(10, 22, 34, 0.08);
}

/* モバイルナビの開閉アニメーション */
#mobile-nav {
  transition: max-height 0.25s ease;
}

/* フォームのフォーカス状態を少し強調 */
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 0 3px rgba(199, 154, 75, 0.15);
}

/* セクション見出しなどのフェードイン */
.fade-in-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* スクロールバーを少し上品に（対応ブラウザのみ） */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #eef2f7;
}
::-webkit-scrollbar-thumb {
  background: #c79a4b;
  border-radius: 999px;
}
