/* ==================================================
   お知らせページ共通ヘッダー
   通常ページと同じ構造・表示に統一
================================================== */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 1000 !important;
  width: 100%;
  background-color: #111 !important;
  border: 0 !important;
}

.site-header .header-inner {
  width: 100%;
  height: 86px;
  min-height: 0 !important;
  margin: 0;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .site-logo {
  width: auto;
  height: auto;
  min-width: 0;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  flex: 0 1 auto;
}

.site-header .logo-lockup {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
}

.site-header .logo-lockup__image {
  display: block;
  width: 56px;
  height: 56px;
  max-width: none;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-header .logo-lockup__name {
  color: #fff;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.site-header .global-nav-list {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header .global-nav-list a {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: opacity 0.3s;
}

.site-header .global-nav-list a:hover { opacity: 0.7; }

.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-header .header-link {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.site-header .header-shop-link {
  padding: 11px 18px;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.6);
}

.site-header .hamburger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-header .hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  margin: 7px auto;
  background-color: #fff;
  transition: 0.3s;
}

.site-header .hamburger.is-active span:nth-child(1) { transform: translateY(8px) rotate(35deg); }
.site-header .hamburger.is-active span:nth-child(2) { opacity: 0; }
.site-header .hamburger.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-35deg); }

.drawer {
  position: fixed;
  top: 86px;
  right: 0;
  z-index: 999;
  width: 320px;
  max-width: 80%;
  height: calc(100vh - 86px);
  padding: 42px 34px;
  color: #fff;
  background-color: rgba(17,17,17,0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: 0.3s;
}

.drawer.is-active, .drawer.active, .drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.drawer-nav-list { margin: 0; padding: 0; list-style: none; }
.drawer-nav-list li + li { margin-top: 22px; }
.drawer-nav-list a { color: #fff; font-size: 15px; letter-spacing: 0.12em; text-decoration: none; }
.drawer-shop-link { display: inline-block; margin-top: 12px; padding: 12px 18px; border: 1px solid rgba(255,255,255,0.6); }

/* 固定ヘッダー分の余白 */
body > main { padding-top: 86px; }

@media (max-width: 1100px) {
  .site-header .global-nav,
  .site-header .header-actions { display: none; }
  .site-header .hamburger { display: block; }
  .site-header .header-inner { gap: 24px; }
  .site-header .logo-lockup__image { width: 50px; height: 50px; }
  .site-header .logo-lockup__name { font-size: 14px; }
}

@media (max-width: 767px) {
  .site-header .header-inner { height: 70px; padding: 0 20px; }
  .site-header .logo-lockup { gap: 9px; }
  .site-header .logo-lockup__image { width: 42px; height: 42px; }
  .site-header .logo-lockup__name {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: 0.04em;
    white-space: normal;
  }
  .drawer { top: 70px; height: calc(100vh - 70px); }
  body > main { padding-top: 70px; }
}
