/* =========================
   グローバルナビ横スクロール機能
   （挙動だけ・見た目は書かない）
========================= */

.global-header {

  display: flex;

  overflow-x: auto;
  overflow-y: hidden;

  white-space: nowrap;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: thin; /* Firefox */
}

/* 横スクロール用：アイテムを縮ませない */
.global-header a {
  flex: 0 0 auto;
}

/* スクロールスナップ（気持ちよく止まる） */
.global-header {
  scroll-snap-type: x proximity;
}

.global-header a {
  scroll-snap-align: start;
}
