.Header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
}

.site-header {
  position: fixed !important;
  top: 0;
  right: 0;
  left: 0;
  background: transparent;
  transition: none;
}

.site-header::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  height: 444px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 19;
  background: rgba(8, 10, 14, 0.26);
  opacity: 0;
  pointer-events: none;
  transition: opacity 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 84px;
  padding: 0 56px;
  background: transparent;
  column-gap: 0;
  transition: background 360ms ease;
}

.site-header__brand {
  position: absolute;
  left: 50%;
  z-index: 1;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
  transform: translateX(-50%);
}

.site-header__brand img {
  display: block;
  width: clamp(132px, 11.2vw, 190px);
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter 360ms ease;
}

.site-header__nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: start;
  align-self: center;
  margin-right: auto;
  margin-left: 0;
  color: rgba(246, 245, 241, 0.94);
  font-size: clamp(14px, 0.72vw, 15px);
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 300;
  white-space: nowrap;
  column-gap: clamp(24px, 2vw, 40px);
}

.site-header__nav a {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  line-height: 1.25;
  opacity: 0.95;
  transition: opacity 240ms ease, color 240ms ease;
}

.site-header__nav a:hover,
.site-header__nav a:focus-visible {
  opacity: 0.85;
}

.site-header__flyout {
  position: absolute;
  top: 84px;
  right: 0;
  left: 0;
  z-index: 2;
  height: 360px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 520ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1), visibility 520ms ease;
}

.site-header__flyoutInner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10px 56px 30px;
}

.site-header__flyoutList {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__flyoutList li {
  display: flex;
}

.site-header__flyoutHeading {
  width: auto;
  justify-content: flex-start;
}

.site-header__flyoutHeading span {
  padding: 0;
  color: rgba(25, 25, 25, 0.56);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.14em;
}

.site-header__flyoutList a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: 8px;
  color: #191919;
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.92;
}

.site-header__flyoutShop {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: flex-start;
  width: min(1240px, 100%);
  margin: 0 auto;
  column-gap: 0;
}

.site-header__shopHeading {
  margin: 0 0 14px;
  color: rgba(25, 25, 25, 0.58);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.14em;
}

.site-header__shopOnline a {
  justify-content: center;
  min-height: 0;
  padding: 0;
  border-radius: 0;
}

.site-header__shopRegions {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 30px 56px;
}

.site-header__shopRegionName {
  margin: 0 0 12px;
  color: rgba(25, 25, 25, 0.72);
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: 0.14em;
}

.site-header__shopStoreList {
  display: grid;
  row-gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__shopStoreList a {
  justify-content: flex-start;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  opacity: 0.9;
}

.site-header.is-nav-expanded .site-header__inner,
.site-header.is-nav-expanded {
  background: transparent;
  color: #191919;
  text-shadow: none;
}

body.is-desktop-nav-expanded .site-header::after {
  background: #f3efe6;
  opacity: 1;
}

body:not(.is-desktop-nav-expanded) .site-header::after {
  background: transparent !important;
  opacity: 0 !important;
}

body.is-desktop-nav-expanded::before {
  opacity: 1;
  transition-delay: 160ms;
}

.site-header.is-nav-expanded .site-header__brand img {
  filter: none;
}

.site-header.is-nav-expanded .site-header__actions,
.site-header.is-nav-expanded .site-header__instagram,
.site-header.is-nav-expanded .site-header__store {
  color: #191919;
}

.site-header.is-nav-expanded .site-header__menu i {
  background: #191919;
}

.site-header.is-nav-expanded .site-header__nav a {
  color: #191919;
  opacity: 1;
}

.site-header.is-nav-expanded .site-header__nav a.is-active,
.site-header.is-nav-expanded .site-header__nav a:hover,
.site-header.is-nav-expanded .site-header__nav a:focus-visible {
  color: #191919;
  background: transparent;
  opacity: 1;
}

.site-header.is-nav-expanded .site-header__flyout {
  background: transparent;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 20px;
  color: rgba(246, 245, 241, 0.95);
}

.site-header__instagram,
.site-header__store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #f6f5f1;
  transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
}

.site-header__instagram svg,
.site-header__store svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header__menu {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.site-header__menu i {
  position: absolute;
  left: 1px;
  width: 20px;
  height: 1px;
  border-radius: 0;
  background: #f6f5f1;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header__menu i:nth-child(1) {
  top: 7px;
}

.site-header__menu i:nth-child(2) {
  top: 11px;
}

.site-header__menu i:nth-child(3) {
  top: 15px;
}

body.is-subpage .site-header__brand img {
  filter: none;
}

body.is-subpage .site-header__nav,
body.is-subpage .site-header__actions {
  color: rgba(25, 25, 25, 0.92);
}

body.is-subpage .site-header__instagram,
body.is-subpage .site-header__store {
  color: #191919;
}

body.is-subpage .site-header__menu i {
  background: #191919;
}

body.is-subpage.is-nav-open .site-header__brand img {
  filter: brightness(0) invert(1);
}

body.is-subpage.is-nav-open .site-header__menu i {
  background: #f6f5f1;
}

/* Top/Hero pages: white source + difference blend. */
body:not(.is-subpage) .site-header__brand img {
  filter: brightness(0) invert(1) !important;
  mix-blend-mode: difference !important;
}

body:not(.is-subpage) .site-header__instagram,
body:not(.is-subpage) .site-header__store {
  color: #f6f5f1 !important;
  mix-blend-mode: difference !important;
}

body:not(.is-subpage) .site-header__nav a {
  color: #f6f5f1 !important;
  mix-blend-mode: difference !important;
}

body:not(.is-subpage) .site-header__menu i {
  background: #f6f5f1 !important;
  mix-blend-mode: difference !important;
}

/* Subpages: force readable black on light backgrounds. */
body.is-subpage .site-header__brand img {
  filter: none !important;
  mix-blend-mode: normal !important;
}

body.is-subpage .site-header__instagram,
body.is-subpage .site-header__store,
body.is-subpage .site-header__nav a {
  color: #191919 !important;
  mix-blend-mode: normal !important;
}

body.is-subpage .site-header__menu i {
  background: #191919 !important;
  mix-blend-mode: normal !important;
}

body.is-subpage.is-nav-open .site-header__brand img {
  filter: brightness(0) invert(1) !important;
  mix-blend-mode: difference !important;
}

body.is-subpage.is-nav-open .site-header__instagram,
body.is-subpage.is-nav-open .site-header__store,
body.is-subpage.is-nav-open .site-header__nav a {
  color: #f6f5f1 !important;
  mix-blend-mode: difference !important;
}

body.is-subpage.is-nav-open .site-header__menu i {
  background: #f6f5f1 !important;
  mix-blend-mode: difference !important;
}

/* PC: always invert header colors against background via parent blend. */
@media (min-width: 1101px) {
  .site-header__brand img {
    width: 168px;
  }

  .site-header__inner {
    align-items: center;
    height: 84px;
  }

  .site-header__brand {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .site-header__brand a {
    display: block;
    line-height: 1;
  }

  .site-header__nav {
    display: flex;
    align-items: center;
    column-gap: clamp(24px, 2vw, 40px);
    height: 84px;
  }

  .site-header__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    line-height: 1;
  }

  .site-header__actions {
    display: flex;
    align-items: center;
    height: 84px;
  }

  .site-header__menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header__inner {
    mix-blend-mode: difference !important;
  }

  .site-header__brand img {
    filter: brightness(0) invert(1) !important;
    mix-blend-mode: normal !important;
  }

  .site-header__nav a,
  .site-header__instagram,
  .site-header__store {
    color: #f6f5f1 !important;
    mix-blend-mode: normal !important;
  }

  .site-header__menu i {
    background: #f6f5f1 !important;
    mix-blend-mode: normal !important;
  }

  /* Unify desktop hover (LOOK/ABOUT flyout) UI across all pages. */
  .site-header.is-nav-expanded .site-header__inner {
    mix-blend-mode: normal !important;
  }

  .site-header.is-nav-expanded .site-header__brand img {
    filter: none !important;
    mix-blend-mode: normal !important;
  }

  .site-header.is-nav-expanded .site-header__nav a,
  .site-header.is-nav-expanded .site-header__instagram,
  .site-header.is-nav-expanded .site-header__store {
    color: #191919 !important;
    mix-blend-mode: normal !important;
    opacity: 1 !important;
  }

  .site-header.is-nav-expanded .site-header__menu i {
    background: #191919 !important;
    mix-blend-mode: normal !important;
  }
}

.site-header__menu.is-open i:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.site-header__menu.is-open i:nth-child(2) {
  opacity: 0;
}

.site-header__menu.is-open i:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.hamburger-nav {
  position: fixed;
  inset: 0;
  z-index: 19;
  background: transparent;
  visibility: visible;
  pointer-events: none;
}

.hamburger-nav.is-open {
  pointer-events: auto;
}

.hamburger-nav__panel {
  position: fixed;
  inset: 0;
  width: 100dvw;
  height: 100dvh;
  padding: 128px 56px 52px;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hamburger-nav__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(8, 10, 14, 0.16), rgba(8, 10, 14, 0.34));
  opacity: 0;
  pointer-events: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  will-change: opacity;
  transition: opacity 380ms ease;
}

.hamburger-nav.is-open .hamburger-nav__panel::before {
  opacity: 1;
}

.hamburger-nav__links {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: end;
  row-gap: 28px;
  text-align: right;
}

.hamburger-nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
  color: #f6f5f1;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.3;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 480ms ease, transform 480ms ease, visibility 480ms ease;
  transition-delay: 0ms;
}

/* Keep hamburger nav text/icons in inverted contrast color. */
.hamburger-nav__panel {
  color: #f6f5f1;
}

.hamburger-nav__links > a,
.hamburger-nav__social a {
  color: #f6f5f1;
  mix-blend-mode: difference;
}

.hamburger-nav.is-open .hamburger-nav__links a {
  opacity: 1;
  transform: translateY(0);
}

.hamburger-nav__links a:hover {
  opacity: 0.72;
}

.hamburger-nav__social .hamburger-nav__instagram,
.hamburger-nav__social .hamburger-nav__store {
  justify-content: center;
  width: 26px;
  height: 44px;
  line-height: 1;
  padding: 0;
}

.hamburger-nav__social .hamburger-nav__instagram svg,
.hamburger-nav__social .hamburger-nav__store svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hamburger-nav__social {
  position: relative;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  min-height: 44px;
}

/* Keep social icons out of nav text flow while hamburger menu is open. */
body.is-nav-open .hamburger-nav__social {
  display: none;
}

body.is-nav-open {
  overflow: hidden;
}

body.is-nav-open .site-header__instagram,
body.is-nav-open .site-header__store {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.site-header__nav,
.copylight,
#page_top,
.Hero__scrollmark {
  transition: opacity 480ms ease, transform 480ms ease, visibility 480ms ease;
}

body.is-nav-open .site-header__nav,
body.is-nav-open .copylight,
body.is-nav-open #page_top,
body.is-nav-open .Hero__scrollmark {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
}

body.is-nav-open .Hero__slide,
body.is-nav-open .Hero__bg,
body.is-nav-open .Hero__scrollmarkFill {
  transition: none !important;
}

@media (max-width: 1366px) {
  :root {
    --sp-side-pad: 16px;
    --sp-top-pad: 17px;
    --sp-nav-gap: 10px;
    --sp-nav-vpad: 10px;
    --sp-nav-font-size: clamp(12px, 1.4vw, 14px);
    --sp-nav-letter-spacing: 0.08em;
    --sp-nav-line-height: 1.15;
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 56px;
    padding: 0 16px;
  }

  .site-header__brand {
    position: absolute;
    right: auto;
    left: 50%;
    padding-top: 0;
    transform: translateX(-50%);
  }

  .site-header__brand img {
    width: 128px;
  }

  .site-header__nav {
    position: fixed;
    top: 50dvh;
    right: auto;
    left: var(--sp-side-pad);
    z-index: 22;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-nav-gap);
    width: max-content;
    max-width: calc(100vw - 96px);
    padding: 0;
    background: transparent;
    text-align: left;
    border-radius: 0;
    transform: translateY(-50%);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header__nav a {
    position: relative;
    display: inline-block;
    width: auto;
    min-height: 0;
    padding: var(--sp-nav-vpad) 0;
    border-radius: 0;
    font-size: var(--sp-nav-font-size);
    line-height: var(--sp-nav-line-height);
    letter-spacing: var(--sp-nav-letter-spacing);
    white-space: nowrap;
  }

  .site-header__nav a::before {
    content: "";
    position: absolute;
    inset: -4px -8px;
  }

  /* Keep mobile nav anchored vertically; avoid jump caused by global translateY(8px). */
  body.is-nav-open .site-header__nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-50% + 8px));
  }

  .site-header__actions {
    position: static;
    margin-left: auto;
    transition: none;
  }

  .site-header__actions a,
  .site-header__actions button {
    pointer-events: auto;
    transition: none;
  }

  .site-header__instagram,
  .site-header__store,
  .site-header__menu {
    transform: none;
    z-index: 24;
  }

  .site-header__instagram {
    position: fixed;
    top: var(--sp-top-pad);
    left: var(--sp-side-pad);
    width: 22px;
    height: 22px;
    padding: 0;
    box-sizing: border-box;
  }

  .site-header__store {
    position: fixed;
    top: var(--sp-top-pad);
    left: 52px;
    width: 22px;
    height: 22px;
    padding: 0;
    box-sizing: border-box;
  }

  .site-header__menu {
    position: fixed;
    top: var(--sp-top-pad);
    right: var(--sp-side-pad);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 0;
    gap: 0;
    flex-shrink: 0;
  }

  .site-header__flyout {
    display: none;
  }

  .site-header__menu i {
    transform: translateZ(0);
  }

  .site-header__menu i:nth-child(1) {
    top: 7px;
  }

  .site-header__menu i:nth-child(2) {
    top: 11px;
  }

  .site-header__menu i:nth-child(3) {
    top: 15px;
  }

  .site-header__menu.is-open i:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header__menu.is-open i:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-header__instagram::before,
  .site-header__store::before,
  .site-header__menu::before {
    content: "";
    position: absolute;
    inset: -9px;
  }

  .hamburger-nav__panel {
    inset: 0;
    display: block;
    width: 100dvw;
    height: 100dvh;
    padding: 0;
  }

  .hamburger-nav__links {
    position: fixed;
    top: 50dvh;
    bottom: auto;
    right: var(--sp-side-pad);
    left: auto;
    width: max-content;
    max-width: calc(100vw - 96px);
    align-content: start;
    row-gap: var(--sp-nav-gap);
    justify-items: end;
    text-align: right;
    transform: translateY(-50%);
  }

  .hamburger-nav__links > a {
    position: relative;
    justify-content: flex-end;
    width: auto;
    min-height: 0;
    padding: var(--sp-nav-vpad) 0;
    font-size: var(--sp-nav-font-size);
    line-height: var(--sp-nav-line-height);
    letter-spacing: var(--sp-nav-letter-spacing);
    opacity: 0;
    transform: translateY(1em);
    transition: opacity 220ms ease, transform 220ms ease;
    transition-delay: 0s;
  }

  .hamburger-nav__links > a:nth-child(1) {
    transition-delay: 0ms;
  }

  .hamburger-nav__links > a:nth-child(2) {
    transition-delay: 45ms;
  }

  .hamburger-nav__links > a:nth-child(3) {
    transition-delay: 90ms;
  }

  .hamburger-nav__links > a:nth-child(4) {
    transition-delay: 135ms;
  }

  .hamburger-nav.is-open .hamburger-nav__links > a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0ms;
  }

  body.is-nav-open .site-header__instagram,
  body.is-nav-open .site-header__store {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .hamburger-nav__links > a::before {
    content: "";
    position: absolute;
    inset: -4px -8px;
  }

  .hamburger-nav__social {
    display: none;
  }

  .hamburger-nav__social .hamburger-nav__instagram,
  .hamburger-nav__social .hamburger-nav__store {
    position: relative;
    width: 22px;
    height: 22px;
    min-height: 22px;
  }

  .hamburger-nav__social .hamburger-nav__instagram::before,
  .hamburger-nav__social .hamburger-nav__store::before {
    content: "";
    position: absolute;
    inset: -9px;
  }

  .hamburger-nav__social .hamburger-nav__instagram svg,
  .hamburger-nav__social .hamburger-nav__store svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 1366px) and (pointer: fine) {
  body.is-nav-open .site-header__instagram,
  body.is-nav-open .site-header__store {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
  }

  .hamburger-nav__social { display: none; }

  .site-header__actions {
    position: static;
    margin-left: auto;
    transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
  }

  .site-header__instagram,
  .site-header__store {
    position: static;
    width: 24px;
    height: 24px;
    padding: 0;
    box-sizing: content-box;
    z-index: auto;
  }

  .site-header__menu {
    position: relative;
    top: auto;
    right: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-left: 0;
  }

  .site-header__menu i {
    position: absolute;
    left: 1px;
    width: 20px;
    transform: translateZ(0);
  }

  .site-header__menu i:nth-child(1) {
    top: 7px;
  }

  .site-header__menu i:nth-child(2) {
    top: 11px;
  }

  .site-header__menu i:nth-child(3) {
    top: 15px;
  }

  .site-header__menu.is-open i:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header__menu.is-open i:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 767px) {
  .site-header__nav {
    left: var(--sp-side-pad);
    gap: 8px;
  }

  .site-header__nav a {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .hamburger-nav__links {
    row-gap: 8px;
  }

  .hamburger-nav__links > a {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

/* 1100px以下のサブページはハンバーガーのみ。PCナビは出さない。 */
@media (max-width: 1100px) {
  body.is-subpage .site-header__nav {
    display: none;
  }
}

/* サブページのPCナビは TOP のヘッダーナビ（1367px以上の形）に合わせる。
   1366px以下のブロックが縦組みの固定ナビ＋SP用の字送りへ倒すため、
   ここで TOP と同じ値へ戻している。 */
@media (min-width: 1101px) {
  body.is-subpage .site-header__nav {
    position: static;
    top: auto;
    right: auto;
    left: auto;
    z-index: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(24px, 2vw, 40px);
    width: auto;
    max-width: none;
    height: 84px;
    margin-right: auto;
    margin-left: 0;
    font-size: clamp(14px, 0.72vw, 15px);
    line-height: 1;
    letter-spacing: 0.02em;
    transform: none;
  }

  body.is-subpage .site-header__nav a {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    /* TOPと同じ字間・当たり判定にするため padding と角丸も揃える。 */
    padding: 2px 10px;
    border-radius: 999px;
    font-size: inherit;
    line-height: 1;
    letter-spacing: inherit;
  }
}

/* 1101〜1366px はヘッダーの基準が要素ごとにバラけていた。
   ・枠は56px、アイコンだけ84pxで上下にはみ出す
   ・ロゴは top:28px 固定で、ナビ・アイコンより約9px下
   1367px以上で揃っている形（枠84px・ロゴ中央）をこの帯にも適用して統一する。 */
@media (min-width: 1101px) and (max-width: 1366px) {
  .site-header__inner {
    height: 84px;
    align-items: center;
  }

  .site-header__brand {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .site-header__actions {
    height: 84px;
  }

  /* 横並びナビに戻したサブページでは SHOP LIST のフライアウトも使う。 */
  body.is-subpage .site-header__flyout {
    display: block;
  }
}
