/* トマリギ 全ページ共通グローバルヘッダー/ナビ（LP・求人クラスタ・ガイド・サブページ共通）
   ブランド: Noto Sans JP / orange #ee5705 / green #22a033・#3f9b4a */
.site-hdr { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.96); backdrop-filter: blur(6px); border-bottom: 1px solid #f2ece1; }
.site-hdr__in { max-width: 1160px; margin: 0 auto; padding: 0 20px; height: 76px; display: flex; align-items: center; gap: 26px; }
.site-brand { display: flex; align-items: center; gap: 10px; flex: none; text-decoration: none; }
.site-brand img { width: 32px; height: auto; }
.site-brand__name { display: block; font-size: 25px; font-weight: 900; color: #ee5705; letter-spacing: 0.02em; line-height: 1.1; }
.site-brand__tag { display: block; font-size: 10.5px; font-weight: 500; color: #8b8579; margin-top: 2px; letter-spacing: 0.02em; }

.site-nav { display: flex; align-items: center; gap: 26px; margin-left: 6px; }
.site-nav > a, .site-nav__group > a { font-size: 14px; font-weight: 700; color: #3d4247; text-decoration: none; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
.site-nav > a:hover, .site-nav__group > a:hover { color: #ee5705; }
.site-nav__group { position: relative; }
.site-nav__group > a .caret { font-size: 10px; color: #9b9b96; }

/* dropdown (desktop hover / touch click) */
.site-drop { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 10px; display: none; background: #fff; border: 1px solid #f0e7d8; border-radius: 14px; box-shadow: 0 12px 30px rgba(120,100,70,0.16); padding: 18px 20px; gap: 30px; }
.site-drop::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; } /* hover bridge */
.site-nav__group.is-open .site-drop, .site-nav__group:hover .site-drop { display: flex; }
.site-drop__col { display: flex; flex-direction: column; gap: 2px; min-width: 150px; }
.site-drop__col b { font-size: 11.5px; font-weight: 700; color: #3f9b4a; letter-spacing: 0.04em; padding: 0 8px 8px; border-bottom: 1px solid #f0e7d8; margin-bottom: 6px; }
.site-drop__col a { font-size: 14px; font-weight: 700; color: #23282b; text-decoration: none; padding: 9px 8px; border-radius: 8px; white-space: nowrap; }
.site-drop__col a:hover { background: #f6faf4; color: #2f7a3a; }
.site-drop__col a.all { color: #ee5705; }

.site-hdr__cta { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }
.site-btn { display: inline-flex; align-items: center; gap: 8px; color: #fff !important; padding: 11px 18px; border-radius: 999px; font-size: 13.5px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.site-btn--line { background: #22a033; box-shadow: 0 2px 6px rgba(34,160,51,0.28); }
.site-btn--line:hover { background: #1d8c2c; }
.site-btn--shindan { background: #ee5705; box-shadow: 0 2px 6px rgba(238,87,5,0.28); }
.site-btn--shindan:hover { background: #d94d02; }
.site-btn .lb { width: 20px; height: 20px; border-radius: 50%; background: #fff; color: #22a033; font-size: 7.5px; font-weight: 900; display: flex; align-items: center; justify-content: center; letter-spacing: -0.02em; }

/* hamburger */
.site-burger { display: none; margin-left: auto; width: 44px; height: 44px; border: none; background: none; cursor: pointer; padding: 10px; }
.site-burger span { display: block; height: 2.5px; background: #3d4247; border-radius: 2px; margin: 4px 0; transition: transform .25s, opacity .2s; }
.site-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-burger.is-open span:nth-child(2) { opacity: 0; }
.site-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer scrim */
.site-scrim { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,0.35); }
.site-scrim.is-open { display: block; }

@media (max-width: 900px) {
  .site-hdr__in { height: 60px; gap: 12px; }
  .site-brand__name { font-size: 21px; }
  .site-brand__tag { display: none; }
  .site-burger { display: block; }
  .site-hdr__cta { display: none; }
  /* drawer */
  .site-nav { position: fixed; top: 60px; right: 0; width: min(84vw, 340px); height: calc(100dvh - 60px); background: #fff; border-left: 1px solid #f0e7d8; box-shadow: -8px 0 30px rgba(0,0,0,0.12); flex-direction: column; align-items: stretch; gap: 0; margin: 0; padding: 10px 0 30px; overflow-y: auto; transform: translateX(100%); transition: transform .28s ease; z-index: 95; }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav > a, .site-nav__group > a { padding: 15px 22px; font-size: 15.5px; border-bottom: 1px solid #f5efe4; }
  .site-nav__group > a { justify-content: space-between; }
  .site-drop { position: static; transform: none; display: none; box-shadow: none; border: none; border-radius: 0; margin: 0; padding: 4px 0 10px; background: #fbf8f3; flex-direction: column; gap: 12px; }
  .site-nav__group.is-open .site-drop { display: flex; }
  .site-nav__group:hover .site-drop { display: none; } /* hoverはモバイル無効化 */
  .site-nav__group.is-open .site-drop { display: flex; }
  .site-drop__col { min-width: 0; padding: 0 22px; }
  .site-drop__col a { font-size: 15px; padding: 11px 10px; }
  .site-nav__mcta { display: flex; gap: 10px; padding: 16px 22px 4px; }
  .site-nav__mcta a { flex: 1; justify-content: center; }
}
@media (min-width: 901px) { .site-nav__mcta { display: none; } }
