@charset "UTF-8";
/*
|---------------------------------------------------------------
| layout / header.css
|---------------------------------------------------------------
*/
:root {
  --mbs-header-top-height: 33px;
  --mbs-header-main-height: 45px;
  --mbs-header-nav-height: 55px;
  --mbs-header-main-color: var(--mbs-color-foreground);
  --mbs-header-main-bgcolor: var(--mbs-color-background);
  --mbs-header-fixed-height: calc(var(--mbs-header-main-height) + var(--mbs-header-nav-height));
  --mbs-header-height: calc(var(--mbs-header-top-height) + var(--mbs-header-main-height) + var(--mbs-header-nav-height));
  --mbs-header-zindex: 1005;
}
@media (min-width: 1000.02px) {
  :root {
    --mbs-header-top-height: 34px;
    --mbs-header-main-height: 79px;
    --mbs-header-nav-height: 0px;
  }
}

:root {
  --mbs-headerMenu-primary-color: var(--mbs-color-subcolor1__font);
  --mbs-headerMenu-primary-bgcolor: var(--mbs-color-subcolor1);
}

/*
 * Header
------------------------------------------------*/
.mbs-header {
  --mbs-container-maxwidth: 1400px;
  --mbs-container-padding: 25px;
  --mbs-border-color: #efefef;
  display: block;
  width: 100%;
  color: var(--mbs-header-main-color);
  background-color: var(--mbs-header-main-bgcolor);
  position: relative;
  z-index: var(--mbs-header-zindex);
}
@media (max-width: 1000px) {
  .mbs-header .is-only-wide {
    display: none !important;
  }
}
@media (min-width: 1000.02px) {
  .mbs-header .is-only-narrow {
    display: none !important;
  }
}
.mbs-header__top {
  --mbs-container-maxwidth: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  height: var(--mbs-header-top-height);
  color: var(--mbs-color-foreground);
  background-color: #f6f6f6;
}
@media (min-width: 1000.02px) {
  .mbs-header__top {
    border-bottom: 1px solid var(--mbs-border-color);
  }
}
.mbs-header__fixed {
  display: block;
  width: 100%;
  height: var(--mbs-header-fixed-height, 0px);
}
.mbs-header__main {
  display: block;
  width: 100%;
  height: var(--mbs-header-main-height);
  color: var(--mbs-header-main-color);
  background-color: var(--mbs-header-main-bgcolor);
  border-bottom: 1px solid var(--mbs-border-color);
}
.mbs-header__main__layout {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: var(--mbs-header-main-height);
}
.mbs-header__main__layout__brand {
  flex-grow: 1;
  flex-basis: 0;
  padding: 0 15px;
}
.mbs-header__main__layout__nav {
  display: none;
}
.mbs-header__main__layout__leftMenu {
  order: -1;
  --mbs-justify-content: flex-start;
}
.mbs-header__main__layout__rightMenu {
  --mbs-justify-content: flex-end;
}
@media (min-width: 1000.02px) {
  .mbs-header__main__layout__brand {
    width: auto;
    flex: 0 0 15%;
    max-width: 15%;
    padding: 0;
  }
  .mbs-header__main__layout__nav {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
  .mbs-header__main__layout__leftMenu {
    display: none;
  }
  .mbs-header__main__layout__rightMenu {
    flex: 0 0 15%;
    max-width: 15%;
  }
}
.mbs-header__nav {
  --mbs-container-maxwidth: 100%;
  --mbs-container-padding: 0px;
  display: flex;
  width: 100%;
  height: var(--mbs-header-nav-height);
  color: var(--mbs-color-foreground);
  background-color: #fbfbfb;
}
@media (min-width: 1000.02px) {
  .mbs-header__nav {
    display: none;
  }
}

/*--------------- fixed header ---------------*/
body.js--headerFixed .mbs-header__fixed {
  min-height: var(--mbs-header-fixed-height, 0px);
}
body.js--headerFixed .mbs-header__main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  z-index: var(--mbs-header-zindex);
}
body.js--headerFixed .mbs-header__nav {
  position: fixed;
  top: var(--mbs-header-main-height);
  left: 0;
  right: 0;
  bottom: auto;
  margin: auto;
  z-index: calc(var(--mbs-header-zindex) - 1);
  transition: transform 0.25s;
  transform: translateY(0%);
}
body.js--headerFixed.js--headerOvered.js--scrollDown .mbs-header__nav {
  transform: translateY(-105%);
}

*[id] {
  scroll-margin-top: var(--mbs-header-fixed-height, 0px);
}

/*
 * 上部メッセージ
------------------------------------------------*/
.mbs-header-messages {
  display: block;
  width: 100%;
}
.mbs-header-messages a {
  color: inherit;
  text-decoration: none;
}
.mbs-header-messages a:hover {
  text-decoration: underline;
}
.mbs-header-messages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(12px, 1.6vw, 14px);
  font-weight: 400;
  text-align: center;
}
.mbs-header-messages ul li {
  display: block;
}
.mbs-header-messages ul li > * {
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.mbs-header-messages:not(.swiper-initialized) ul li:not(:first-child) {
  display: none;
}

/*
 * ロゴ
------------------------------------------------*/
.mbs-header-brand {
  display: block;
  width: 140px;
  max-width: 100%;
  margin: 0 auto;
  color: var(--mbs-color-brand, #000000);
  font-size: 1em;
}
@media (min-width: 1000.02px) {
  .mbs-header-brand {
    width: 100%;
    margin: 0;
  }
}
.mbs-header-brand img {
  display: block;
  width: 100%;
  height: auto;
}

/*
 * メニュー
------------------------------------------------*/
.mbs-header-menu {
  --mbs-grid-gap: 15px;
}
.mbs-header-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  justify-content: var(--mbs-justify-content, center);
  gap: var(--mbs-grid-gap);
}
.mbs-header-menu__list__item {
  display: block;
}
@media (min-width: 1000.02px) {
  .mbs-header-menu {
    --mbs-grid-gap: 26px;
  }
}

.mbs-header-menu-link {
  display: block;
  width: 1.5em;
  aspect-ratio: 1;
}
.mbs-header-menu-link[data-header-action] {
  cursor: pointer;
}
@media (min-width: 1000.02px) {
  .mbs-header-menu-link {
    width: 2em;
  }
}
.mbs-header-menu-link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.mbs-header-menu-cart {
  position: relative;
}
.mbs-header-menu-cart .fs-client-cart-count {
  pointer-events: none;
  display: block;
  width: auto;
  min-width: 1.25em;
  max-width: 2.5em;
  height: 1.25em;
  line-height: 1.25em;
  text-align: center;
  font-style: normal;
  font-size: max(10px, 0.85em);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--mbs-cart-button-color, var(--mbs-color-button--primary__font));
  background: var(--mbs-cart-button-bgcolor, var(--mbs-color-button--primary));
  border-color: var(--mbs-cart-button-border-color, var(--mbs-color-button--primary__border));
  border-radius: 0.75em;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  margin: auto;
  transform: translate(25%, -25%);
}
.mbs-header-menu-cart .fs-client-cart-count:empty {
  display: none;
}

.mbs-hamburgerMenu {
  --mbs-border-color: currentColor;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  aspect-ratio: 1;
  padding: 3.5px 0;
  cursor: pointer;
  background-image: linear-gradient(var(--mbs-border-color));
  background-repeat: no-repeat;
  background-size: 100% 2px;
  background-position: center;
}
.mbs-hamburgerMenu::before, .mbs-hamburgerMenu::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--mbs-border-color);
}

/*
 * ナビゲーション
------------------------------------------------*/
.mbs-header-nav {
  --mbs-grid-gap: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.mbs-header-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: var(--mbs-justify-content, center);
  gap: var(--mbs-grid-gap);
  background-image: linear-gradient(var(--mbs-border-color));
  background-repeat: no-repeat;
  background-size: 1px 50%;
  background-position: left center;
}
.mbs-header-nav__list__item {
  display: flex;
  flex-grow: 1;
  flex-basis: 0;
  background-image: linear-gradient(var(--mbs-border-color));
  background-repeat: no-repeat;
  background-size: 1px 50%;
  background-position: right center;
}
.mbs-header-nav__list__item[data-item=premium] {
  --mbs-small-font-size: 8px;
}
.mbs-header-nav__list__item[data-item=feature] {
  --mbs-small-font-size: 12px;
}
@media (max-width: 1000px) {
  .mbs-header-nav__list, .mbs-header-nav__list__item:last-child {
    background-image: none;
  }
}
@media (min-width: 1000.02px) {
  .mbs-header-nav {
    display: flex;
    justify-content: center;
  }
  .mbs-header-nav__list {
    width: auto;
    max-width: 100%;
  }
  .mbs-header-nav__list__item {
    width: 146px;
    max-width: 100%;
    flex-grow: 1;
    flex-basis: 0;
  }
  .mbs-header-nav__list__item[data-item=premium] {
    --mbs-small-font-size: 10px;
  }
  .mbs-header-nav__list__item[data-item=feature] {
    --mbs-small-font-size: 12px;
  }
}

.mbs-header-nav-text {
  --mbs-font-size: 12px;
  width: 100%;
  padding: 0.75em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: var(--mbs-font-size);
  font-weight: 600;
  text-align: center;
  line-height: 1.33;
  color: inherit !important;
  text-decoration: none !important;
  transition: none;
  opacity: 1 !important;
}
@media (min-width: 1000.02px) {
  .mbs-header-nav-text {
    --mbs-font-size: 15px;
  }
}
.mbs-header-nav-text > span {
  display: block;
  word-break: normal;
}
.mbs-header-nav-text > small {
  display: block;
  font-size: calc(var(--mbs-small-font-size, 12px) / var(--mbs-font-size) * 1em);
  line-height: var(--mbs-font-size);
}

.mbs-header-nav-text.has-more {
  position: relative;
}
.mbs-header-nav-text.has-more::after {
  content: "";
  pointer-events: none;
  width: 7.5px;
  height: 7.5px;
  background-color: var(--mbs-header-main-bgcolor);
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: var(--mbs-border-color);
  transform: scaleY(1.33) translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 5;
  margin: auto;
  opacity: 0;
}
@media (min-width: 1000.02px) {
  .mbs-header-nav-text.has-more::after {
    width: 9px;
    height: 9px;
  }
}

.mbs-header-nav__list__item .mbs-header-nav-text {
  background-image: linear-gradient(#000000);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% 0px;
}
.mbs-header-nav__list__item:hover .mbs-header-nav-text {
  background-size: 100% 1px;
}
.mbs-header-nav__list__item:hover .mbs-header-nav-text::after {
  opacity: 1;
}

/*--------------- マウスオーバーコンテンツ ---------------*/
.mbs-header-nav-more {
  display: block;
  opacity: 0;
  pointer-events: none;
  color: var(--mbs-color-foreground);
  background-color: var(--mbs-color-background);
  box-shadow: 2px 2px 4px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 2;
  margin: auto;
  border-top: 1px solid var(--mbs-border-color);
}
.mbs-header-nav__list__item:hover .mbs-header-nav-more {
  opacity: 1;
  pointer-events: auto;
}

.mbs-header-nav-more__content {
  display: block;
  width: 100%;
  padding: 25px 10px;
  position: relative;
}
@media (min-width: 1000.02px) {
  .mbs-header-nav-more__content {
    padding: 40px 40px;
  }
}

/*
 * Category
------------------------------------------------*/
.mbs-header-nav-category {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--mbs-font-family-en, inherit);
  font-size: clamp(13px, 1.73vw, 15px);
  font-weight: 600;
}
.mbs-header-nav-category > ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}
@media (min-width: 1000.02px) {
  .mbs-header-nav-category > ul {
    gap: 15px 25px;
  }
}
.mbs-header-nav-category > ul > li {
  display: block;
  margin: 0;
}
.mbs-header-nav-category > ul > li > a {
  --mbs-arrow-size: 0.35em;
  --mbs-grid-gap: 0.35em;
  display: inline-flex;
  align-items: center;
  gap: var(--mbs-grid-gap);
}
@media (min-width: 1000.02px) {
  .mbs-header-nav-category > ul > li > a {
    --mbs-arrow-size: 0.5em;
    --mbs-grid-gap: 0.5em;
  }
}
.mbs-header-nav-category > ul > li > a::after {
  content: "";
  display: block;
  width: var(--mbs-arrow-size);
  height: var(--mbs-arrow-size);
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: #555555;
  transform: rotate(45deg);
}

/*
|---------------------------------------------------------------
| Header Menu
|---------------------------------------------------------------
*/
.mbs-headerMenu {
  --mbs-padding-y: 10px;
  --mbs-padding-x: 25px;
  --mbs-border-color: #000000;
  --mbs-bgcolor-light: #eeeeee;
  width: 100%;
  display: flex;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--mbs-header-zindex, 1000) + 10);
  margin: auto;
}
.mbs-headerMenu__dialog {
  width: 100%;
  display: flex;
}
.mbs-headerMenu__content {
  container-type: inline-size;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  color: var(--mbs-header-main-color);
  background-color: var(--mbs-header-main-bgcolor);
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (min-width: 1000.02px) {
  .mbs-headerMenu__content {
    max-width: 375px;
    margin-left: auto;
  }
}

/*--------------- Action ---------------*/
.mbs-headerMenu {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mbs-headerMenu__dialog {
  transition: transform 0.3s;
  transform: translateX(-120%);
}
@media (min-width: 1000.02px) {
  .mbs-headerMenu__dialog {
    transform: translateX(120%);
  }
}

body[data-open=menu] .mbs-headerMenu {
  opacity: 1;
  pointer-events: auto;
}
body[data-open=menu] .mbs-headerMenu__dialog {
  transform: translateX(0%);
}

/*--------------- layouts ---------------*/
.mbs-headerMenu__header {
  flex-shrink: 0;
  padding: 25px var(--mbs-padding-x);
  width: 100%;
  display: flex;
  align-items: center;
}
.mbs-headerMenu__body {
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  font-size: 16px;
  font-size: 4.27cqw;
}
.mbs-headerMenu__footer {
  flex-shrink: 0;
  padding: 25px var(--mbs-padding-x);
  width: 100%;
  display: flex;
  align-items: center;
}
.mbs-headerMenu__group {
  display: block;
  width: 100%;
}
.mbs-headerMenu__group + .mbs-headerMenu__group {
  border-top: 1px solid var(--mbs-border-color);
}

/*
 * ロゴ
------------------------------------------------*/
.mbs-headerMenu-brand {
  display: block;
  width: 10em;
  max-width: 50%;
  flex-shrink: 0;
}
.mbs-headerMenu-brand img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/*
 * 閉じる
------------------------------------------------*/
.mbs-headerMenu-closer {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: auto;
  cursor: pointer;
}
.mbs-headerMenu-closer img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}

/*
 * ABOUT Megabass
------------------------------------------------*/
.mbs-headerMenu-abouts {
  margin-bottom: 25px;
  padding: var(--mbs-padding-y) var(--mbs-padding-x);
}

.mbs-headerMenu-about {
  display: block;
  width: 100%;
}
.mbs-headerMenu-about__head {
  display: block;
  width: 100%;
  padding: 0.5em calc(1em + 13px);
  position: relative;
  color: var(--mbs-headerMenu-primary-color);
  background-color: var(--mbs-headerMenu-primary-bgcolor);
  font-size: 1.25em;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.mbs-headerMenu-about__head::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%;
  background-position: center;
  position: absolute;
  top: 0;
  left: auto;
  right: 1em;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.mbs-headerMenu-about__head.js--opened::after {
  background-size: 100% 1px, 1px 0%;
}
.mbs-headerMenu-about__head span {
  display: block;
  width: 100%;
  font-size: 1em;
}
.mbs-headerMenu-about__head small {
  display: block;
  width: 100%;
  margin-top: 0.25em;
  font-size: 0.6em;
  font-weight: normal;
}
.mbs-headerMenu-about__body {
  display: none;
  width: 100%;
}

.mbs-headerMenu-aboutMenu {
  display: block;
  width: 100%;
  font-size: 0.88em;
}
.mbs-headerMenu-aboutMenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mbs-headerMenu-aboutMenu ul li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--mbs-border-color);
}
.mbs-headerMenu-aboutMenu a {
  display: block;
  width: 100%;
  padding: 0.75em 1.5em 0.75em 0;
  position: relative;
  text-decoration: none !important;
}
.mbs-headerMenu-aboutMenu a::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: auto;
  right: 0.5em;
  bottom: 0;
  z-index: 2;
  margin: auto;
}

/*
 * 会員メニュー
------------------------------------------------*/
.mbs-headerMenu-memberMenu {
  display: block;
  width: 100%;
  overflow: hidden;
}
.mbs-headerMenu-memberMenu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  width: auto;
  margin-left: -1px;
}
.mbs-headerMenu-memberMenu__list__item {
  display: flex;
  margin: 0;
  padding: 0;
  background-image: linear-gradient(var(--mbs-border-color), var(--mbs-border-color));
  background-repeat: no-repeat;
  background-size: 1px 60%;
  background-position: left center;
}

.mbs-headerMenu-memberMenu-link {
  width: 100%;
  padding: 1em 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
}
.mbs-headerMenu-memberMenu-link.is-light {
  color: inherit;
  background-color: var(--mbs-bgcolor-light);
}
.mbs-headerMenu-memberMenu-link img {
  display: block;
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  -o-object-fit: contain;
  object-fit: contain;
}

/*
 * カテゴリー
------------------------------------------------*/
.mbs-headerMenu-category {
  display: block;
  width: 100%;
}
.mbs-headerMenu-category__head {
  display: block;
  width: 100%;
  margin: 0;
  padding: var(--mbs-padding-y) calc(var(--mbs-padding-x) + 1.5em) var(--mbs-padding-y) var(--mbs-padding-x);
  font-size: 1.25em;
  font-weight: bold;
  color: var(--mbs-headerMenu-primary-color);
  background-color: var(--mbs-headerMenu-primary-bgcolor);
  border-bottom: 1px solid var(--mbs-border-color);
}
.mbs-headerMenu-category__body {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.mbs-headerMenu-category .mbs-categoryTree > ul {
  margin: 0;
}
.mbs-headerMenu-category .mbs-categoryTree > ul > li {
  margin: 0;
  border-bottom: 1px solid var(--mbs-border-color);
}
.mbs-headerMenu-category .mbs-categoryTree__children {
  display: none;
  overflow: hidden;
  border-top: 1px solid var(--mbs-border-color);
  font-size: 0.88em;
  padding: 1.5em var(--mbs-padding-x);
}
.mbs-headerMenu-category .mbs-categoryTree__children ul {
  list-style: none;
}
.mbs-headerMenu-category .mbs-categoryTree__children ul li {
  margin: 0;
  border-bottom: 1px solid #dddddd;
}
.mbs-headerMenu-category .mbs-categoryTree__children a {
  display: block;
  width: 100%;
  padding: var(--mbs-padding-y) 1.5em var(--mbs-padding-y) 0;
  position: relative;
  text-decoration: none !important;
  font-size: 1em;
  font-weight: normal;
}
.mbs-headerMenu-category .mbs-categoryTree__children a::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: auto;
  right: 0.25em;
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.mbs-headerMenu-category .mbs-categoryTree-link {
  --mbs-border-color: #cccccc;
  display: block;
  padding: 0.75em calc(13px + var(--mbs-padding-x)) 0.75em var(--mbs-padding-x);
  font-weight: 600;
  position: relative;
  text-decoration: none !important;
  color: inherit;
  background-color: var(--mbs-bgcolor-light);
}
.mbs-headerMenu-category .mbs-categoryTree-link::after {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  background-image: linear-gradient(currentColor, currentColor), linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 100% 1px, 1px 100%;
  background-position: center;
  position: absolute;
  top: 0;
  left: auto;
  right: var(--mbs-padding-x);
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.mbs-headerMenu-category .mbs-categoryTree-link.js--opened::after {
  background-size: 100% 1px, 0px 100%;
}

.mbs-headerMenu-secondaryLinks {
  display: block;
  width: 100%;
  color: var(--mbs-headerMenu-primary-color);
  background-color: var(--mbs-headerMenu-primary-bgcolor);
}
.mbs-headerMenu-secondaryLinks ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
}
.mbs-headerMenu-secondaryLinks ul li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}
.mbs-headerMenu-secondaryLinks ul li + li {
  border-top: 1px solid var(--mbs-border-color);
}
.mbs-headerMenu-secondaryLinks a {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: var(--mbs-padding-y) calc(var(--mbs-padding-x) + 1.5em) var(--mbs-padding-y) var(--mbs-padding-x);
  position: relative;
  text-decoration: none !important;
  font-size: 1.25em;
  font-weight: bold;
}
.mbs-headerMenu-secondaryLinks a::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: auto;
  right: var(--mbs-padding-x);
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.mbs-headerMenu-secondaryLinks a small {
  font-size: 0.7em;
  font-weight: 500;
}
.mbs-headerMenu-secondaryLinks a small::before {
  content: "/";
  margin: 0 0.5em;
}

/*
 * メニュー
------------------------------------------------*/
.mbs-headerMenu-menus {
  width: 100%;
  padding: 30px var(--mbs-padding-x);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--mbs-padding-x, 25px);
}

.mbs-headerMenu-menu {
  display: block;
  width: 100%;
}
.mbs-headerMenu-menu__head {
  display: block;
  width: 100%;
  font-family: var(--mbs-font-family-en, inherit);
  font-size: 1.25em;
  font-weight: bold;
  border-bottom: 1px solid currentColor;
}
.mbs-headerMenu-menu__body {
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 0.88em;
}
.mbs-headerMenu-menu ul {
  --mbs-gap: 0.5em;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mbs-headerMenu-menu ul li {
  display: block;
  margin: var(--mbs-gap) 0;
}

/*
|---------------------------------------------------------------
| Header Search
|---------------------------------------------------------------
*/
.mbs-headerSearch {
  --mbs-padding-y: 15px;
  --mbs-padding-x: 15px;
  --mbs-border-color: #eeeeee;
}
@media (min-width: 750.02px) {
  .mbs-headerSearch {
    --mbs-padding-y: 20px;
  }
}
.mbs-headerSearch {
  width: 100%;
  display: flex;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--mbs-header-zindex, 1000) + 10);
  margin: auto;
}
.mbs-headerSearch__dialog {
  width: 100%;
  padding: 10px 10px;
  display: block;
}
@media (min-width: 1000.02px) {
  .mbs-headerSearch__dialog {
    padding: min(40px, 2.5vw) min(40px, 2.5vw);
  }
}
.mbs-headerSearch__content {
  container-type: inline-size;
  width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--mbs-header-main-color);
  background-color: var(--mbs-header-main-bgcolor);
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media (min-width: 1000.02px) {
  .mbs-headerSearch__content {
    max-width: 960px;
    margin: 0 auto;
  }
}

/*--------------- Action ---------------*/
.mbs-headerSearch {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
body[data-open=search] .mbs-headerSearch {
  opacity: 1;
  pointer-events: auto;
}

/*--------------- layouts ---------------*/
.mbs-headerSearch__header {
  flex-shrink: 0;
  padding: 0 calc(var(--mbs-padding-x) + 20px);
  width: 100%;
  height: 3.29em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-bottom: 1px solid #dddddd;
}
.mbs-headerSearch__body {
  width: 100%;
  flex: 1 1 auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  font-size: 16px;
}
@container (min-width: 750.02px) {
  .mbs-headerSearch__body {
    font-size: 14px;
  }
}
.mbs-headerSearch__footer {
  flex-shrink: 0;
  padding: 25px var(--mbs-padding-x);
  width: 100%;
  display: flex;
  align-items: center;
}

/*
 * 見出し
------------------------------------------------*/
.mbs-headerSearch-title {
  display: block;
  width: 100%;
  font-size: 1.06;
  text-align: center;
}
.mbs-headerSearch-title img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/*
 * 閉じる
------------------------------------------------*/
.mbs-headerSearch-closer {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-left: auto;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: auto;
  right: var(--mbs-padding-x);
  bottom: 0;
  z-index: 2;
  margin: auto;
}
.mbs-headerSearch-closer img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  pointer-events: none;
}

/*
 * Form
------------------------------------------------*/
.mbs-headerSearch-search__keywords {
  padding: var(--mbs-padding-y) var(--mbs-padding-x);
  background-color: #dddddd;
}
.mbs-headerSearch-search .mbs-search-keyword__input {
  border: 0;
}
.mbs-headerSearch-search .mbs-d-search__action {
  position: sticky;
  bottom: 0;
}
