/* ============================================================
   ATAWI FUDOSAN ブランドカラー定義（看板準拠）
   富士ヶ丘サービスの屋外看板「不動産売却」の配色をサイト全体の基準にする。
      看板の地色 …… 空色ブルー   #2E9BD4
      看板の文字 …… 看板イエロー #FFE100 ／ 白 #FFFFFF
      連絡先の帯 …… 白地 × 濃紺 #0B3C5D
   全ページ共通で読み込むこのファイルを唯一の色定義元とする。
   ============================================================ */

:root {
  /* 主役：看板の青（明→暗） */
  --brand-sky-2:   #F2F9FE;  /* ごく淡い水色（広い地色） */
  --brand-sky:     #E9F5FC;  /* 淡い水色（セクション地） */
  --brand-sky-3:   #D3E9F7;  /* 水色（区切り・タグ） */
  --brand-blue-p:  #A9DBF3;  /* ペールブルー（図版の面） */
  --brand-blue-l:  #5FB9E8;
  --brand-blue:    #2E9BD4;  /* ★看板の地色。帯・見出し背景 */
  --brand-blue-d:  #16709F;  /* 白地に置くリンク・強調文字 */
  --brand-blue-dd: #0E5C8A;
  --brand-navy:    #0B3C5D;  /* 濃紺。見出し・看板下部の文字 */

  /* 差し色：看板の黄（青地の上で使う） */
  --brand-yellow:   #FFE100;  /* ★看板の黄。青地・濃紺地の上に置く */
  --brand-yellow-l: #FFF06B;
  --brand-yellow-d: #F2B705;  /* 図版・アイコン・下線 */
  --brand-amber-d:  #8F6200;  /* 黄系を白地の文字に使う場合のみ（可読性確保） */

  /* 地色・文字・罫線 */
  --brand-white: #FFFFFF;
  --brand-paper: #F6FAFD;
  --brand-ink:   #14344A;
  --brand-sub:   #5B7488;
  --brand-line:  #CDE2F0;

  /* 外部ブランド・警告（ブランド色に寄せない） */
  --brand-line-green: #06C755;
  --brand-alert:      #C0392B;
}

html {
  scrollbar-gutter: stable;
  background: var(--brand-white);
}

/* 全ページ共通ヘッダー ------------------------------------------------ */
.site-global-header {
  position: relative;
  left: 50%;
  z-index: 20;
  width: 100vw;
  margin-left: -50vw;
  background: #fff;
  border-bottom: 3px solid var(--brand-blue);
  color: var(--brand-ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.site-global-header *,
.site-global-header *::before,
.site-global-header *::after {
  box-sizing: border-box;
}

.site-global-header__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px 24px;
  flex-wrap: wrap;
}

.site-global-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.site-global-header__logo {
  width: auto;
  height: 38px;
  display: block;
  object-fit: contain;
}

.site-global-header__mark {
  color: var(--brand-blue-d);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .09em;
  white-space: nowrap;
}

.site-global-header__company {
  color: var(--brand-sub);
  font-size: 11px;
  line-height: 1.4;
  white-space: nowrap;
}

.site-global-header__nav {
  display: flex;
  align-items: center;
  gap: 6px 14px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
}

.site-global-header__nav a {
  color: var(--brand-ink);
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}

.site-global-header__nav a:hover,
.site-global-header__nav a:focus-visible {
  color: var(--brand-blue-d);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .site-global-header__inner {
    width: min(100% - 24px, 1180px);
    padding: 9px 0 11px;
  }

  .site-global-header__logo {
    height: 34px;
  }

  .site-global-header__company {
    display: none;
  }

  .site-global-header__nav {
    width: 100%;
    gap: 7px 13px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .site-global-header__mark {
    font-size: 12px;
  }

  .site-global-header__nav {
    gap: 6px 10px;
    font-size: 11.5px;
  }
}

/* 看板ユーティリティ --------------------------------------------------
   青地に黄色を効かせる看板の見せ方を、全ページで使えるようにする。 */
.brand-mark-yellow { background: none; color: var(--brand-yellow); font-weight: 700; }
.brand-band-blue { background: var(--brand-blue); color: #fff; }
.brand-band-navy { background: var(--brand-navy); color: #fff; }
.brand-underline-yellow { box-shadow: inset 0 -.45em 0 rgba(255,225,0,.55); }
