/* サイト共通ヘッダー（全ページで読み込む）。1280×80を基準にしたレイアウト。 */
.rl-site-header {
  position: sticky;
  top: 0;
  z-index: 101;
  width: 100%;
  background: #fff;
}

.rl-site-header__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 80px;
  width: 100%;
  margin: 0;
  padding: 0 20px;
  text-align: center;
}

.rl-site-header__logo {
  flex-shrink: 0;
  display: block;
  line-height: 0;
  margin-right: 40px;
}

.rl-site-header__logo img {
  display: block;
  width: 187px;
  height: 40px;
}

/* ============================================================
   ナビゲーション
   ============================================================ */
.rl-site-header__nav {
  flex: 0 1 auto;
  min-width: 0;
}

.rl-site-header__menu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.rl-site-header__menu a {
  font-family: 'Zen Old Mincho', 'Yu Mincho', serif;
  font-size: 13px;
  font-weight: 500;
  color: #222222;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease-out;
}

.rl-site-header__menu a:hover,
.rl-site-header__menu a:focus-visible {
  color: #009DE6;
}

/* ============================================================
   お問い合わせボタン・ハンバーガーメニュー
   ============================================================ */
.rl-site-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.rl-site-header__contact {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #009DE6;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.rl-site-header__contact-icon {
  display: flex;
  align-items: center;
}

.rl-site-header__contact-icon img {
  display: block;
  width: 16px;
  height: 16px;
}

.rl-site-header__contact-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #009DE6;
}

.rl-site-header__menu-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: #009DE6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.rl-site-header__menu-icon {
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1079px) {
  .rl-site-header__nav {
    display: none;
  }
}

@media (max-width: 480px) {
  .rl-site-header__inner {
    gap: 16px;
    padding: 0 16px;
  }

  .rl-site-header__contact-text {
    display: none;
  }

  .rl-site-header__contact {
    padding: 12px;
  }
}