@charset "UTF-8";
/*
|---------------------------------------------------------------
| v2026 header 202607
|---------------------------------------------------------------
*/
:root {
  --sp-header-height: 83px;
  --pc-header-height: 140px;
  --sp-header-main-height: 43px;
  --pc-header-main-height: 80px;
  --v2026-header-container-maxwidth: 1200px;
  --v2026-header-container-paddingX: 10px;
  --v2026-header-zIndex: 1001;
  --v2026-header-height: var(--sp-header-height, 83px);
  --v2026-header-main-height: var(--sp-header-main-height, 43px);
  --v2026-header-nav-min-height: 40px;
  --v2026-header-title-logo-height: calc(var(--v2026-header-main-height) - 13px);
  --v2026-header-title-logo-gap: 5px;
  --v2026-bottomNav-height: 66px;
  --v2026-bottomNav-paddingY: 8px;
  --v2026-bottomNav-paddingX: 12px;
  --v2026-bottomNav-color: #000000;
  --v2026-bottomNav-bgcolor: #ffffff;
}
@media (min-width: 750.02px) {
  :root {
    --v2026-header-height: var(--pc-header-height, 140px);
    --v2026-header-main-height: var(--pc-header-main-height, 80px);
    --v2026-header-nav-min-height: 60px;
    --v2026-header-title-logo-height: calc(var(--v2026-header-main-height) - 20px);
    --v2026-header-title-logo-gap: 10px;
  }
}

body {
  padding-top: var(--sp-header-height, 83px);
}

@media (min-width: 750.02px) {
  body {
    padding-top: var(--pc-header-height, 140px);
  }
}
.v2026header {
  display: block;
  width: 100%;
  color: #000000;
  background: #ffffff;
}
.v2026header__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: var(--v2026-header-main-height);
  color: inherit;
  background: inherit;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: var(--v2026-header-zIndex);
  margin: auto;
}
.v2026header__main__content {
  display: block;
  width: 100%;
  position: relative;
}
@media (min-width: 750.02px) {
  .v2026header__main__content {
    max-width: calc(var(--v2026-header-container-maxwidth) + var(--v2026-header-container-paddingX) * 2);
    margin: 0 auto;
  }
}
.v2026header__main__layout {
  width: 100%;
  height: var(--v2026-header-main-height);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2026header__main__layout__left {
  flex: 0 0 50%;
  max-width: 48.73%;
  padding: 0;
}
.v2026header__main__layout__right {
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.v2026header__nav {
  display: block;
  width: 100%;
  min-height: var(--v2026-header-nav-min-height, 40px);
  color: #ffffff;
  background: #04224a;
  position: fixed;
  top: var(--v2026-header-main-height, 0);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: calc(var(--v2026-header-zIndex) - 1);
  margin: auto;
}
.v2026header__bottomNav {
  width: 100%;
  display: block;
  position: fixed;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--v2026-header-zIndex, 100) - 2);
}
@media (min-width: 750.02px) {
  .v2026header__bottomNav {
    display: none;
  }
}

.v2026header-container {
  display: block;
  width: 100%;
  max-width: calc(var(--v2026-header-container-maxwidth) + var(--v2026-header-container-paddingX) * 2);
  padding: 0 var(--v2026-header-container-paddingX);
  margin: 0 auto;
}

/*
* ログイン状態
------------------------------------------------*/
.v2026header[data-status=guest] *[data-show-status=member] {
  display: none !important;
}

.v2026header[data-status=member] *[data-show-status=guest] {
  display: none !important;
}

/*
* Title
------------------------------------------------*/
.v2026header-title {
  display: block;
  width: auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: var(--v2026-header-title-logo-gap);
  text-decoration: none !important;
  outline: none !important;
}
.v2026header-title::before {
  content: "";
  display: block;
  width: auto;
  height: var(--v2026-header-title-logo-height);
  aspect-ratio: 56/60;
  background-image: url(/images/v2026/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.v2026header-title img {
  display: block;
  width: auto;
  height: auto;
  max-height: calc(var(--v2026-header-title-logo-height) - 10px);
}
@media (min-width: 750.02px) {
  .v2026header-title {
    max-width: 350px;
  }
}

/*
* メニュー
------------------------------------------------*/
.v2026header-ecmenu {
  display: block;
}
.v2026header-ecmenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin: 0 -7.5px;
}
.v2026header-ecmenu__list__item {
  display: flex;
  padding: 0 7.5px;
  width: auto;
  flex-grow: 1;
  flex-basis: auto;
  max-width: 100%;
}
@media (min-width: 750.02px) {
  .v2026header-ecmenu__list {
    margin: 0 -15px;
  }
  .v2026header-ecmenu__list__item {
    padding: 0 15px;
  }
}

.v2026header-ecmenu-link {
  display: block;
  width: auto;
  height: auto;
  position: relative;
  text-decoration: none !important;
  outline: none !important;
}

.v2026header-ecmenu-link img {
  display: block;
  width: 20px;
  height: auto;
}
@media (min-width: 750.02px) {
  .v2026header-ecmenu-link img {
    width: auto;
    height: auto;
    max-height: 33px;
  }
}

.v2026header-ecmenu-link svg {
  display: block;
  width: 30px;
  height: auto;
}
@media (min-width: 750.02px) {
  .v2026header-ecmenu-link svg {
    width: auto;
    height: auto;
    height: 44px;
  }
}

.v2026header-cartBadge {
  display: block;
  width: auto;
  min-width: 16px;
  min-height: 16px;
  padding: 3px 0.25em;
  color: #ffffff;
  background: #ab0008;
  border-radius: 50%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  line-height: 1;
  font-style: normal;
  text-align: center;
  max-width: 50%;
  text-overflow: ellipsis;
  position: absolute;
  top: -8px;
  left: auto;
  right: 0;
  bottom: auto;
  z-index: 1;
  margin: auto;
  transform: translateX(50%);
}
@media (min-width: 750.02px) {
  .v2026header-cartBadge {
    min-width: 18px;
    min-height: 18px;
    font-size: 11px;
    padding: 4px 0.25em 5px;
  }
}

/* SPのみ構造変更 */
@media (max-width: 750px) {
  .v2026header-ecmenu__list__item[data-key=search] {
    order: -3;
  }
  .v2026header-ecmenu__list__item[data-key=member] {
    order: -2;
  }
  .v2026header-ecmenu__list__item[data-key=bookmark] {
    order: -1;
  }
  .v2026header-ecmenu__list__item[data-key=cart] {
    display: none;
  }
}
/*
 * 格納メニュー
------------------------------------------------*/
.v2026header-menu {
  display: block;
  margin-left: clamp(6px, 4.8vw, 18px);
}
@media (min-width: 750.02px) {
  .v2026header-menu {
    margin-left: 40px;
  }
}

.v2026header-hamburger {
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 26px;
  padding: 5px 0px;
  color: #000000 !important;
  text-decoration: none !important;
  outline: none !important;
  position: relative;
}
.v2026header-hamburger__bar {
  opacity: 1;
}
.v2026header-hamburger::before, .v2026header-hamburger::after {
  content: "";
}
.v2026header-hamburger::before, .v2026header-hamburger::after, .v2026header-hamburger__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: all 0.25s;
}
@media (min-width: 750.02px) {
  .v2026header-hamburger {
    width: 32px;
    height: 38px;
    color: #04224a !important;
  }
  .v2026header-hamburger::before, .v2026header-hamburger::after, .v2026header-hamburger__bar {
    height: 3px;
    border-radius: 3px;
  }
}

/*
* Nav
------------------------------------------------*/
.v2026header-nav {
  display: block;
  width: 100%;
}
.v2026header-nav__list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.v2026header-nav__list__item {
  display: flex;
  width: auto;
  flex: 0 0 auto;
  max-width: 100%;
}
@media (min-width: 750.02px) {
  .v2026header-nav__list {
    justify-content: center;
  }
}

.v2026header-nav-link {
  display: block;
  width: 100%;
  height: auto;
  font-size: 13px;
  line-height: 1.5;
  padding: 0.79em 0.25em;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: inherit !important;
  text-decoration: none !important;
  outline: none !important;
}
@media (min-width: 750.02px) {
  .v2026header-nav-link {
    font-size: 22px;
    line-height: 1.5;
    padding: 0.61em clamp(25px, 3.33vw, 50px);
    letter-spacing: 0.2em;
  }
}

/*
* Aside
------------------------------------------------*/
.v2026header-aside {
  display: block;
  width: 100%;
  height: auto;
  font-size: 12px;
  line-height: 1.5;
  padding: 0.29em 10px;
  font-weight: bold;
  text-align: center;
  color: #000000;
  background: #eeeeee;
}
@media (min-width: 750.02px) {
  .v2026header-aside {
    font-size: 18px;
    line-height: 1.5;
    padding: 0.5em 10px;
  }
}
.v2026header-aside .js--hidden {
  display: none !important;
}

.home_top-news {
  display: none;
}

.v2026header-message {
  display: block;
  width: 100%;
  font-size: 1em;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.v2026header-aside .home_top-news {
  padding: 0;
  display: block;
  line-height: 1.5;
}

.v2026header-notice {
  width: 100%;
  display: block;
}

.v2026header-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v2026header-notice__list__item {
  display: block;
}

/*
* Category
------------------------------------------------*/
.v2026header-categoryList {
  list-style: none;
  padding: 0;
  width: 100%;
  display: block;
  margin: 0;
}

.v2026header-categoryList__item {
  width: 100%;
  display: block;
}

.v2026header-category-link {
  display: flex;
  width: 100%;
  height: auto;
  font-size: 14.5px;
  line-height: 1.5;
  padding: 0.84em 10px;
  color: inherit;
  text-decoration: none !important;
  text-align: left;
  position: relative;
}

.v2026header-category-link img,
.v2026header-category-link svg {
  vertical-align: middle;
  margin-right: 10px;
}

@media (min-width: 750.02px) {
  .v2026header-category-link {
    font-size: 13px;
    line-height: 1.5;
    padding: 0.87em 12px;
  }
  .v2026header-category-link img,
  .v2026header-category-link svg {
    max-height: 100%;
  }
}
.v2026header-category-image {
  display: block;
}

.v2026header-category-image img,
.v2026header-category-image svg {
  display: block;
  width: 100%;
  height: auto;
}

.v2026header-categoryClose {
  display: block;
  width: 100%;
  max-width: 120px;
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
  text-decoration: none !important;
  color: #000000;
  border: 1px solid #000000;
  padding: 4px 15px;
  cursor: pointer;
}

.v2026header-categoryMenu {
  display: block;
  width: 100%;
  height: auto;
  color: #000000;
  background: #f7f7f7;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 5;
  margin: auto;
  max-height: calc(100vh - var(--v2026-header-fixed-height, var(--v2026-header-height)));
  max-height: calc(100dvh - var(--v2026-header-fixed-height, var(--v2026-header-height)));
  overflow-y: auto;
  overscroll-behavior: contain;
}
.v2026header-categoryMenu__footer {
  display: block;
  width: 100%;
  padding: 25px 0 15px;
}
@media (min-width: 750.02px) {
  .v2026header-categoryMenu__footer {
    display: none;
  }
}
.v2026header-categoryMenu .v2026header-categoryList {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.v2026header-categoryMenu .v2026header-categoryList__item {
  display: flex;
}
.v2026header-categoryMenu .v2026header-category-link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  width: 100%;
  height: 100%;
  padding: 5px;
  font-size: 11px;
}
.v2026header-categoryMenu .v2026header-category-image {
  display: block;
  width: 100%;
}
.v2026header-categoryMenu .v2026header-category-name {
  display: block;
  text-align: center;
}
.v2026header-categoryMenu .v2026header-category__children {
  display: none;
}
@media (min-width: 750.02px) {
  .v2026header-categoryMenu {
    padding: 20px 0;
  }
  .v2026header-categoryMenu .v2026header-categoryList {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 10px;
  }
  .v2026header-categoryMenu .v2026header-category-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: 100%;
    height: 100%;
    padding: 5px;
    color: #000000;
    background: #ffffff;
    font-size: 13px;
  }
  .v2026header-categoryMenu .v2026header-category-image {
    width: 60px;
    flex-shrink: 0;
  }
  .v2026header-categoryMenu .v2026header-category-name {
    display: block;
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
  }
}

/*
* Header Menu
------------------------------------------------*/
.v2026menu {
  width: 100%;
  color: #000000;
  background-color: #efefef;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
}
.v2026menu__content {
  width: 100%;
  max-height: calc(100vh - var(--v2026-header-fixed-height, var(--v2026-header-main-height)));
  max-height: calc(100dvh - var(--v2026-header-fixed-height, var(--v2026-header-main-height)));
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (min-width: 750.02px) {
  .v2026menu {
    max-width: 240px;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    bottom: auto;
  }
}
.v2026menu .v2026accordion + * {
  display: none;
}

.v2026menu-group {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.v2026menu-group.has-light {
  color: #000000;
  background-color: #efefef;
}

.v2026menu-group.has-navy {
  color: #ffffff;
  background-color: #00214b;
}

.v2026menu-group__list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: block;
  margin: 0;
}

.v2026menu-group__list__item {
  display: block;
  width: 100%;
  border-bottom: 1px solid #ccc;
}

.v2026menu-group__list .v2026menu-group__list {
  color: #00214b;
  background: #ffffff;
}

.v2026menu-group__list .v2026menu-group__list__item {
  border-top: 1px solid #ccc;
  border-bottom: 0;
}

.v2026menu-link {
  display: block;
  width: 100%;
  height: auto;
  font-size: 14.5px;
  line-height: 1.5;
  padding: 0.84em 10px;
  color: inherit !important;
  text-decoration: none !important;
  outline: none !important;
  text-align: left;
  position: relative;
}

.v2026menu-link img,
.v2026menu-link svg {
  max-height: 1.4em;
  vertical-align: middle;
  margin-right: 10px;
}

.v2026menu-link svg {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
}

@media (min-width: 750.02px) {
  .v2026menu-link {
    font-size: 13px;
    line-height: 1.5;
    padding: 0.87em 12px;
  }
}
.v2026accordion {
  padding-right: calc(1em + 10px);
  position: relative;
}

.v2026accordion::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2px 100%, 100% 2px;
  background-image: linear-gradient(#cccccc 0%, #cccccc 100%), linear-gradient(#cccccc 0%, #cccccc 100%);
  position: absolute;
  top: 0;
  left: auto;
  right: 10px;
  bottom: 0;
  z-index: 1;
  margin: auto;
}

@media (min-width: 750.02px) {
  .v2026accordion::after {
    width: 12px;
    height: 12px;
  }
}
.has-light .v2026accordion::after {
  background-image: linear-gradient(#000 0%, #000 100%), linear-gradient(#000 0%, #000 100%);
}

.has-navy .v2026accordion::after {
  background-image: linear-gradient(#cccccc 0%, #cccccc 100%), linear-gradient(#cccccc 0%, #cccccc 100%);
}

.v2026accordion.js--opened::after {
  background-size: 2px 0%, 100% 2px;
}

.v2026menu .v2026header-categoryList {
  color: #00214b;
  background: #ffffff;
}

.v2026menu .v2026header-categoryList__item {
  border-bottom: 1px solid #ccc;
}

.v2026menu .v2026header-category-image img,
.v2026menu .v2026header-category-image svg {
  width: auto;
  max-height: 2.6em;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
  margin-right: 10px;
  vertical-align: middle;
}

.v2026menu .v2026header-category__children {
  border-top: 1px solid #ccc;
}

/*
* Search
------------------------------------------------*/
.v2026searchMenu {
  --v2026-header-search-height: calc(100dvh - var(--v2026-header-fixed-height, var(--v2026-header-height)));
  --v2026-header-search-padding: 16px;
  --v2026-header-search-content-height: calc(var(--v2026-header-search-height) - var(--v2026-header-search-padding) * 2);
  --v2026-header-search-offset-top: var(--v2026-header-height);
  --v2026-header-search-closer-size: 23px;
  --v2026-header-search-closer-translateX: 50%;
  --v2026-header-search-closer-translateY: -50%;
}
@media (min-width: 750.02px) {
  .v2026searchMenu {
    --v2026-header-search-height: calc(100vh - var(--v2026-header-height));
    --v2026-header-search-padding: 0;
    --v2026-header-search-content-height: min(778px, calc(100dvh - var(--v2026-header-height)));
    --v2026-header-search-offset-top: var(--v2026-header-height);
    --v2026-header-search-closer-size: 46px;
    --v2026-header-search-closer-translateX: 50%;
    --v2026-header-search-closer-translateY: 4px;
  }
}

.v2026searchMenu {
  display: block;
  width: 100%;
  height: var(--v2026-header-search-height);
  padding: var(--v2026-header-search-padding);
  color: #00214b;
  background-color: rgba(16, 16, 16, 0.83);
  position: fixed;
  top: var(--v2026-header-search-offset-top);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 10;
}
.v2026searchMenu__content {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
  max-width: 1200px;
  max-height: var(--v2026-header-search-content-height);
  color: #00214b;
  background: #f7f7f7;
  position: relative;
  overflow: visible;
  padding: 0;
}

.v2026searchMenu-content {
  max-height: var(--v2026-header-search-content-height);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-top: var(--v2026-header-search-content-paddingY, 70px);
  padding-bottom: var(--v2026-header-search-content-paddingY, 70px);
}

.v2026search {
  display: block;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.v2026search__head {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin: 15px 0 0.5em;
}

@media (min-width: 750.02px) {
  .v2026search__head {
    font-size: 28px;
    margin: 20px auto 10px;
  }
}
.v2026search__body {
  display: block;
  width: 100%;
}

.v2026search .lso_ds_form__group {
  margin: 0 0 15px;
}
.v2026search .lso_ds_form__group[data-search-group=price] {
  display: none;
}
.v2026search .lso_ds_form__group[data-search-group=size] {
  display: none;
}
.v2026search .lso_ds_form__group__head {
  font-size: 16px;
}
.v2026search .lso_ds_form .lso_ds_form__select,
.v2026search .lso_ds_form .lso_ds_form__input {
  font-size: 12px;
}
@media (min-width: 750.02px) {
  .v2026search .lso_ds_form__group {
    margin-bottom: 50px;
  }
  .v2026search .lso_ds_form .lso_ds_form__select,
  .v2026search .lso_ds_form .lso_ds_form__input {
    font-size: 18px;
  }
}

.v2026searchMenu-closer {
  display: block;
  width: var(--v2026-header-search-closer-size, 46px);
  height: var(--v2026-header-search-closer-size, 46px);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  margin: auto;
  transform: translate(var(--v2026-header-search-closer-translateX, 0), var(--v2026-header-search-closer-translateY, 0));
  cursor: pointer;
}
.v2026searchMenu-closer svg {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/*
* メニュー開閉
------------------------------------------------*/
.v2026header .v2026menu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.v2026header .v2026searchMenu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.v2026header .v2026header-categoryMenu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.v2026header[data-open=menu] .v2026menu {
  opacity: 1;
  pointer-events: auto;
}

.v2026header[data-open=menu] .v2026header-hamburger__bar {
  opacity: 0;
}

.v2026header[data-open=menu] .v2026header-hamburger::before,
.v2026header[data-open=menu] .v2026header-hamburger::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}

.v2026header[data-open=menu] .v2026header-hamburger::before {
  transform: rotate(45deg);
}

.v2026header[data-open=menu] .v2026header-hamburger::after {
  transform: rotate(-45deg);
}

.v2026header[data-open=search] .v2026searchMenu {
  opacity: 1;
  pointer-events: auto;
}

.v2026header[data-open=category] .v2026header-categoryMenu {
  opacity: 1;
  pointer-events: auto;
}

/*
 * ボトムナビゲーション
------------------------------------------------*/
.v2026-bottomNav {
  width: 100%;
  height: var(--v2026-bottomNav-height);
  padding: var(--v2026-bottomNav-paddingY) var(--v2026-bottomNav-paddingX);
  color: var(--v2026-bottomNav-color);
  background-color: var(--v2026-bottomNav-bgcolor);
  overflow: hidden;
  border-top: 1px solid #04224A;
}
.v2026-bottomNav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.v2026-bottomNav__list__item {
  display: flex;
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
}

.v2026-bottomNav-link {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  font-size: clamp(11px, 2.93vw, 13px);
  font-weight: 700;
  text-align: center;
  text-decoration: none !important;
}
.v2026-bottomNav-link__image {
  display: block;
  width: round(3em, 1px);
  max-width: 100%;
  position: relative;
}
.v2026-bottomNav-link__image img, .v2026-bottomNav-link__image svg {
  display: block;
  width: 100%;
  height: auto;
}
.v2026-bottomNav-link__text {
  display: block;
  width: 100%;
  font-size: 1em;
  line-height: 1.5;
}

.v2026-bottomNav-cartBadge {
  display: block;
  width: auto;
  min-width: 1.25em;
  min-height: 1.25em;
  padding: 1px 1px;
  color: #ffffff;
  background: #FF0000;
  border-radius: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.73em;
  line-height: 1;
  font-style: normal;
  text-align: center;
  max-width: 50%;
  text-overflow: ellipsis;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  z-index: 1;
  margin: auto;
  transform: translate(-25%, 50%);
}

/*--------------- scroll ---------------*/
@media (max-width: 750px) {
  .v2026header__main, .v2026header__nav, .v2026header__bottomNav {
    transition: transform 0.25s;
  }
  .v2026header__bottomNav {
    transform: translateY(100%);
  }
  .v2026header[data-scroll=up] .v2026header__bottomNav {
    transform: translateY(100%);
  }
  .v2026header[data-scroll=down] {
    --v2026-header-fixed-height: var(--v2026-header-nav-min-height, 0px);
  }
  .v2026header[data-scroll=down] .v2026header__main,
  .v2026header[data-scroll=down] .v2026header__nav {
    transform: translateY(calc(-1 * var(--v2026-header-main-height)));
  }
  .v2026header[data-scroll=down] .v2026menu {
    --v2026-header-fixed-height: var(--v2026-bottomNav-height);
  }
  .v2026header[data-scroll=down] .v2026header__bottomNav {
    transform: translateY(0%);
  }
}
/*--------------- 2026.08 ---------------*/
body {
  --v2026-bottomNav-fixed-height: 0px;
}
body[data-scroll=down] {
  --v2026-bottomNav-fixed-height: var(--v2026-bottomNav-height, 0px);
}
