/* サブページ用：トップと同型の固定ヘッダー／ハンバーガー */
:root {
  --ng-pink: #ff4f8b;
  --ng-pink-deep: #e83672;
  --ng-orange: #d86530;
  --ng-orange-deep: #a8471e;
  --ng-ink: #1a1a1a;
}

.u-white-outline {
  filter: drop-shadow(0 0 1px #fff) drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 0 #fff)
    drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff);
}

.displayUnderMd {
  display: none;
}

@media (max-width: 767px) {
  .displayUnderMd {
    display: inline;
  }

  .displayMoreMd {
    display: none;
  }
}

/* 固定ヘッダー分の余白 */
body.page-sub {
  padding-top: 112px;
}

@media (max-width: 767px) {
  body.page-sub {
    padding-top: 88px;
  }
}

/* header（トップと同仕様／style.css の .header を上書き） */
body.page-sub .header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px 40px;
  pointer-events: none;
  background: transparent;
}

.header__bottom,
.headerHumberger,
.header__reservation {
  pointer-events: auto;
}

/* 下層：左上は brandLogo のみ */
body.page-sub .header__logoLink {
  display: block;
  position: fixed;
  left: 40px;
  top: 20px;
  right: auto;
  bottom: auto;
  z-index: 1001;
  width: auto;
  line-height: 0;
  pointer-events: auto;
}

body.page-sub .header__brandSet {
  display: block;
  width: auto;
  opacity: 1;
  pointer-events: none;
}

body.page-sub .header.is-brand-c .header__brandSet--c {
  opacity: 1;
}

body.page-sub .header__brandLogo {
  display: block;
  position: static;
  top: auto;
  width: auto;
  height: 72px;
  object-fit: contain;
  object-position: left center;
  pointer-events: auto;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.45)) drop-shadow(0 2px 6px rgba(255, 255, 255, 0.35));
}

.header__logoLink {
  display: grid;
  position: fixed;
  left: 40px;
  right: 40px;
  bottom: 32px;
  z-index: 1001;
  width: auto;
  line-height: 0;
  pointer-events: none;
}

.header__brandSet {
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: minmax(0, 12%) minmax(0, 1fr) minmax(0, 24%);
  align-items: end;
  column-gap: clamp(20px, 3.2vw, 48px);
  width: 100%;
  opacity: 1;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.header__brandSet--c {
  opacity: 0;
}

.header.is-brand-c .header__brandSet--w {
  opacity: 0;
}

.header.is-brand-c .header__brandSet--c {
  opacity: 1;
}

.header__brandLogo2 {
  display: block;
  width: 100%;
  height: auto;
  justify-self: stretch;
  object-fit: contain;
  object-position: left bottom;
  pointer-events: none;
}

.header__brandLabel {
  display: block;
  position: relative;
  top: -0.5vw;
  width: 100%;
  height: auto;
  justify-self: stretch;
  object-fit: contain;
  object-position: center bottom;
  pointer-events: none;
}

.header__brandLogo {
  display: block;
  position: relative;
  top: 0.95vw;
  width: 100%;
  height: auto;
  justify-self: stretch;
  object-fit: contain;
  object-position: right bottom;
  pointer-events: none;
}

.header__brandSet--w .header__brandLogo {
  pointer-events: auto;
}

.header.is-brand-c .header__brandSet--w .header__brandLogo {
  pointer-events: none;
}

.header.is-brand-c .header__brandSet--c .header__brandLogo {
  pointer-events: auto;
}

.header__brandSet--w .header__brandLogo2,
.header__brandSet--w .header__brandLabel,
.header__brandSet--w .header__brandLogo {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.22));
}

.header__brandSet--c .header__brandLogo2,
.header__brandSet--c .header__brandLabel,
.header__brandSet--c .header__brandLogo {
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.45)) drop-shadow(0 2px 6px rgba(255, 255, 255, 0.35));
}

.header__bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1002;
  margin-left: auto;
}

.header__reservation {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 35px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--ng-orange);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.32), 0 0 0 0px rgba(255, 255, 255, 0.28);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  opacity: 1;
}

.header__reservation:hover {
  background: var(--ng-orange-deep);
  color: #fff;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.32), 0 0 0 0px rgba(255, 255, 255, 0.28);
  opacity: 1;
}

.header.is-brand-c .header__reservation {
  background: var(--ng-orange);
  color: #fff;
  opacity: 1;
}

.header.is-brand-c .header__reservation:hover {
  background: var(--ng-orange-deep);
  color: #fff;
  opacity: 1;
}

.headerHumberger {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  position: relative;
  padding: 0;
  cursor: pointer;
}

.headerHumberger__stick {
  position: absolute;
  left: 8px;
  right: 8px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, top 0.3s, background 0.25s;
}

.headerHumberger__stick:nth-child(1) {
  top: 14px;
}

.headerHumberger__stick:nth-child(2) {
  top: 21px;
}

.headerHumberger__stick:nth-child(3) {
  top: 28px;
}

.header.is-brand-c .headerHumberger__stick,
.header[data-nav="open"] .headerHumberger__stick {
  background: var(--ng-ink);
}

.header[data-nav="open"] .headerHumberger__stick:nth-child(1) {
  top: 21px;
  transform: rotate(40deg);
}

.header[data-nav="open"] .headerHumberger__stick:nth-child(2) {
  opacity: 0;
}

.header[data-nav="open"] .headerHumberger__stick:nth-child(3) {
  top: 21px;
  transform: rotate(-40deg);
}

.header__menu {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: #fff;
  color: var(--ng-ink);
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s, visibility 0.35s;
  overflow-y: auto;
  pointer-events: none;
}

.header[data-nav="open"] .header__menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header__menuInner {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px 48px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-sizing: border-box;
}

.header__menuLogo {
  width: min(240px, 70%);
  height: auto;
  display: block;
  margin: 0 auto;
}

.header__menuList {
  display: grid;
  gap: 18px;
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menuList a {
  display: inline-block;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--ng-ink);
  text-decoration: none;
  transition: none;
  opacity: 1;
}

.header__menuList a:hover {
  color: var(--ng-orange);
  opacity: 1;
}

.header__menuSub {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: auto;
}

.header__menuSub a {
  font-size: 14px;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  transition: none;
  opacity: 1;
}

.header__menuSub a:hover {
  color: var(--ng-orange);
  opacity: 1;
}

.header__menuCta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-top: 12px;
  padding: 0 22px;
  border-radius: 16px;
  background: var(--ng-pink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  overflow: visible;
}

.header__menuCtaContent {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 12px 0;
  background: transparent;
  color: #fff;
  font-weight: 800;
}

.header__menuCtaTitle {
  white-space: nowrap;
  font-size: 15px;
  line-height: 1.35;
}

.header__menuCta:hover {
  background: var(--ng-pink-deep);
}

@media (max-width: 767px) {
  body.page-sub .header {
    padding: 16px 14px;
  }

  body.page-sub .header__logoLink {
    left: 14px;
    top: 14px;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    pointer-events: auto;
  }

  body.page-sub .header__brandSet {
    display: block;
    width: auto;
    height: auto;
  }

  body.page-sub .header__brandLogo {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    height: 56px;
    width: auto;
    pointer-events: auto;
  }
}
