body:before {
  background: url(../common/background.webp) center no-repeat;
  background-size: cover;
}


header.site-header {
  width: 100%;
  height: 63px;
  background: rgba(0,0,0,1);
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 20%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  z-index: 90;
  border-bottom: none;
}
header.site-header .container {
  /* padding: 12px 0; */
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 25px;
  box-shadow: none;
  background-color: transparent;
}
header.site-header .container::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 44px);
  height: 12px;
  background: url(../images/header/header-top.webp) top left no-repeat;
  background-size: 100% 100%;
  content: '';
  z-index: 1;
}
header.site-header .container::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 44px);
  height: 12px;
  background: url(../images/header/header-bottom.webp) top left no-repeat;
  background-size: 100% 100%;
  content: '';
  z-index: 1;
}

.header-inner {
  height: 100%;
  padding-top: 5px;
  z-index: 2;
}
.header-inner::before {
  position: absolute;
  top: 0;
  left: -26px;
  width: 25px;
  height: 100%;
  background: url(../images/header/header-left.webp) top left no-repeat;
  background-size: contain;
  content: '';
  z-index: 1;
}
.header-inner::after {
  position: absolute;
  top: 0;
  right: -26px;
  width: 25px;
  height: 100%;
  background: url(../images/header/header-right.webp) top left no-repeat;
  background-size: contain;
  content: '';
  z-index: 1;
}
.header-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: calc(100% + 16px);
  height: 40px;
  border-radius: 4px;
  background: url(../images/header/header-background.webp) top left no-repeat;
  background-size: cover;
  z-index: 2;
}
.site-header .topbar-branding.logo-text {
  min-width: unset;
}
.second-nav {
  z-index: 5;
}
.site-header .menu-toggle {
  width: 41px;
  top: 21px;
  left: 22px;
}
.toggled .menu-toggle span:nth-of-type(1){
  transform: translateY(10px) rotate(-45deg);
}
.toggled .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(45deg);
}
body.toggled .site-header .overlay {
  z-index: -1;
}
.site-header .overlay {
  top: 63px;
}
.menu-wrap .main-navigation {
  top: 63px;
}

@media screen and (max-width: 1020px) {

  .site-header .topbar-branding.logo-text {
    width: 84px;
    padding-top: 11px;
  }
  .second-nav {
    top: 17px;
    right: -2px;
  }
  .cart-link .nav-cart img {
    height: 25px;
  }

}

@media screen and (min-width: 1021px){ /* pcサイズonly */
  .header-background {
    display: none;
  }
  header.site-header {
    height: 78px;
  }
  header.site-header .container::before,
  header.site-header .container::after,
  .header-inner::before,
  .header-inner::after {
    display: none;
  }
  header.site-header .container {
    padding: 0;
  }
  .header-inner {
    padding-top: 10px;
  }
  .site-header .topbar-branding.logo-text {
    top: 11px;
    left: 27px;
    width: 125px;
    margin: 0;
  }
}