@charset "utf-8";

/*------------------------------------------------------
© 2026 Nudge Inc. All Rights
ページヘッダ共通の追加スタイルを定義する
------------------------------------------------------*/

:root {
  --page-header-height: 60px;
}

.pageHeaderStickySlot {
  width: 100%;
  height: var(--page-header-height, 60px);
}

#pageHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  width: auto;
  height: auto;
  overflow: visible;
  margin-top: 0;
  margin-bottom: 0;
  border-bottom: none;
  background: var(--ws-ink, #111111);
  /* 親要素の幅制約下でヘッダ背景を全幅表示するための指定 */
  box-shadow: 0 0 0 100vmax var(--ws-ink, #111111);
  clip-path: inset(0 -100vmax);
  color: #ffffff;
}

#pageHeader * {
  box-sizing: border-box;
}

#pageHeader #siteLogo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

#pageHeader #siteLogo picture {
  display: block;
  width: 58px;
  height: 32px;
  overflow: hidden;
}

#pageHeader #siteLogo img {
  display: block;
  width: 168px;
  height: 32px;
  max-width: none;
  transform: translateX(-8px);
}

@media screen and (max-width: 991px) {
  #pageHeader #siteLogo picture {
    width: 52px;
    height: 28px;
  }

  #pageHeader #siteLogo img {
    width: 147px;
    height: 28px;
    transform: translateX(-7px);
  }
}

@media screen and (max-width: 767px) {
  #pageHeader #siteLogo img {
    transform: translateX(-48px);
  }
}
