@charset "UTF-8";
/*! header.css | futureshop succeed | qinc.co.jp */
:root {
  --qfsd-header-top-height: 0px;
  --qfsd-header-main-height: 70px;
  --qfsd-header-bottom-height: 0px;
  --qfsd-header-zindex: 1005;
  --qfsd-header-height: calc(var(--qfsd-header-top-height) + var(--qfsd-header-main-height) + var(--qfsd-header-bottom-height));
}

:root {
  --qfsd-header-color-foreground: var(--qfsd-color-maincolor__font, #ffffff);
  --qfsd-header-color-background: var(--qfsd-color-maincolor, #004b86);
  --qfsd-header-layout-gap: 10px;
  --qfsd-header-nav-font-size: 18px;
  --qfsd-header-nav-gap: 5px;
  --qfsd-header-ecmenu-gap: 5px;
  --qfsd-header-usermenu-gap: 10px;
  --qfsd-header-menu-padding: 15px;
  --qfsd-header-cart-badge-color-foreground: var(--qfsd-color-button--primary__font, #ffffff);
  --qfsd-header-cart-badge-color-background: var(--qfsd-color-button--primary, #004b86);
}
@media (min-width: 1200.02px) {
  :root {
    --qfsd-header-main-height: 90px;
  }
}

.qfsd-header {
  width: 100%;
  color: var(--qfsd-header-color-foreground);
  background: var(--qfsd-header-color-background);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: var(--qfsd-header-zindex);
}
body {
  padding-top: var(--qfsd-header-height, 0);
}

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

.qfsd-header__top {
  display: block;
  width: 100%;
  min-height: var(--qfsd-header-top-height, 0px);
}
.qfsd-header__main {
  display: block;
  width: 100%;
  color: var(--qfsd-header-color-foreground);
  background-color: var(--qfsd-header-color-background);
}
.qfsd-header__bottom {
  display: block;
  width: 100%;
  min-height: var(--qfsd-header-bottom-height, 0px);
}
.qfsd-header__layout {
  width: 100%;
  min-height: var(--qfsd-header-main-height, 70px);
  display: flex;
  align-items: center;
  gap: var(--qfsd-header-layout-gap, 0px);
}
.qfsd-header__layout__brand {
  flex-grow: 1;
  flex-basis: 0;
}
.qfsd-header__layout__menu {
  flex-grow: 1;
  flex-basis: 0;
}
.qfsd-header__layout__ecmenu {
  margin-left: auto;
}
@media (max-width: 1200px) {
  .qfsd-header__layout__menu {
    order: -1;
    flex: 0 0 auto;
  }
}
@media (min-width: 1200.02px) {
  .qfsd-header__layout__brand {
    align-self: center;
    flex: 0 0 auto;
    max-width: 25%;
  }
  .qfsd-header__layout__menu {
    flex-grow: 1;
    flex-basis: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .qfsd-header__layout__ecmenu {
    align-self: center;
  }
}

/*
 * ロゴ
------------------------------------------------*/
.qfsd-header-brand {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 5px 0;
  font-size: 1em;
}
.qfsd-header-brand .qfsd-brand img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

/*
 * メニュー
------------------------------------------------*/
.qfsd-header-toggle {
  display: block;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
}
.qfsd-header-toggle img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
}
.qfsd-header:not([data-open=menu]) .qfsd-header-toggle .is-opened {
  display: none;
}

.qfsd-header[data-open=menu] .qfsd-header-toggle .is-closed {
  display: none;
}

@media (min-width: 1200.02px) {
  .qfsd-header-toggle {
    display: none;
  }
}

.qfsd-header-nav {
  display: block;
  width: 100%;
  font-size: var(--qfsd-header-nav-font-size, 1em);
}
.qfsd-header-nav .fs-pt-menu * {
  transition: none;
}
.qfsd-header-nav .fs-pt-menu a {
  color: inherit;
  text-decoration: none;
}
.qfsd-header-nav .fs-pt-menu *:where(a) {
  margin: 0;
  padding: 0;
}
.qfsd-header-nav .fs-pt-menu--lv1 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--qfsd-header-nav-gap, 0px);
}
.qfsd-header-nav .fs-pt-menu__item--lv1 {
  display: flex;
  width: auto;
  flex: 0 0 auto;
}
.qfsd-header-nav .fs-pt-menu__heading--lv1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.qfsd-header-nav .fs-pt-menu__link--lv1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: var(--qfsd-header-main-height, 70px);
  margin: 0;
  padding: 0.5em var(--qfsd-header-menu-padding);
  border-width: 2px 0;
  border-style: solid;
  border-color: transparent;
  transition: border-color 0.25s;
  text-decoration: none !important;
}
.qfsd-header-nav .fs-pt-menu__link--lv1:hover {
  border-bottom-color: currentColor;
}
.qfsd-header-nav .fs-pt-menu__submenu {
  display: none;
}
.qfsd-header-nav .fs-pt-menu--lv2 {
  --qfsd-gap: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25em, 1fr));
  gap: var(--qfsd-gap) calc(var(--qfsd-gap) * 0.5);
  width: 100%;
  max-height: calc(80vh - var(--qfsd-header-height));
  max-height: calc(80dvh - var(--qfsd-header-height));
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: var(--qfsd-gap) calc(var(--qfsd-gap) * 2) var(--qfsd-gap) calc(var(--qfsd-gap) * 2 + 10%);
  color: var(--qfsd-header-color-foreground);
  background: var(--qfsd-header-color-background);
  position: fixed;
  top: var(--qfsd-header-main-height);
  left: 0;
  right: 0;
  bottom: auto;
  z-index: calc(var(--qfsd-header-zindex) + 1);
  font-size: 0.78em;
  transition: opacity 0.5s;
}
.qfsd-header-nav .fs-pt-menu--lv2 .fs-pt-menu__submenu {
  display: block;
  padding-left: 5%;
}
.qfsd-header-nav .fs-pt-menu--lv2 .fs-pt-menu__heading {
  margin: 0 0 0.75em;
}
.qfsd-header-nav .fs-pt-menu--lv2 a {
  display: inline-block;
  text-decoration: none;
}
.qfsd-header-nav .fs-pt-menu--lv2 a:hover {
  text-decoration: underline;
}
.qfsd-header-nav .fs-pt-menu__item--lv1:not(:hover) .fs-pt-menu--lv2 {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .qfsd-header-nav {
    display: none;
  }
}

.qfsd-header-menu {
  --qfsd-padding: 10px;
  display: none;
  width: 100%;
  max-height: 100vh;
  max-height: 100dvh;
  color: var(--qfsd-header-color-foreground);
  background: var(--qfsd-header-color-background);
  position: fixed;
  top: var(--qfsd-header-height, 0);
  left: 0;
  right: auto;
  bottom: 0;
  z-index: calc(var(--qfsd-header-zindex, 1) + 5);
  margin: auto;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  transition: opacity 0.25s, transform 0.25s;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-105%);
}
.qfsd-header[data-open=menu] .qfsd-header-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0%);
}

@media (max-width: 1200px) {
  .qfsd-header-menu {
    display: block;
  }
}
.qfsd-header-menu__content {
  padding: var(--qfsd-padding) 0;
}
.qfsd-header-menu .fs-pt-menu {
  display: block;
  width: 100%;
}
.qfsd-header-menu .fs-pt-menu a {
  color: inherit;
}
.qfsd-header-menu .fs-pt-menu *:where(a) {
  margin: 0;
  padding: 0;
}
.qfsd-header-menu .fs-pt-menu__item {
  display: block;
  position: static;
}
.qfsd-header-menu .fs-pt-menu__heading {
  display: block;
  height: auto;
  font-size: 18px;
  line-height: 1.5;
  padding: 1em 1.5em;
}
.qfsd-header-menu .fs-pt-menu__link {
  --qfsd-arrow-size: 0.25em;
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  font-size: 18px;
  line-height: 1.5;
  padding: 1em 1.5em;
}
.qfsd-header-menu .fs-pt-menu__link.has-children::after {
  content: "";
  display: block;
  width: 0.25em;
  height: 0.25em;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: auto;
}
.qfsd-header-menu .fs-pt-menu__link.js--back::before {
  content: "";
  display: block;
  width: var(--qfsd-arrow-size);
  height: var(--qfsd-arrow-size);
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: currentColor;
  transform: rotate(-135deg);
  flex-shrink: 0;
  margin-right: 0.5em;
}
.qfsd-header-menu .fs-pt-menu__heading > .fs-pt-menu__link {
  width: auto;
  margin: -1em -1.5em;
}
.qfsd-header-menu .fs-pt-menu__submenu {
  padding: var(--qfsd-padding) 0;
  color: var(--qfsd-header-color-foreground);
  background: var(--qfsd-header-color-background);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
  transform: translateX(120%);
  transition: transform 0.25s;
}
.qfsd-header-menu .fs-pt-menu__submenu.js--active {
  transform: translateX(0%);
}
.qfsd-header-menu__menu {
  width: 100%;
}
.qfsd-header-menu__sns {
  width: 100%;
  padding: 10px var(--qfsd-header-menu-padding);
}
.qfsd-header-menu__menu + .qfsd-header-menu__sns {
  margin-top: 20px;
}

.qfsd-header-ecmenu {
  display: flex;
  align-items: center;
}
.qfsd-header-ecmenu a {
  color: inherit;
}
.qfsd-header-ecmenu__list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--qfsd-header-ecmenu-gap, 5px);
}
.qfsd-header-ecmenu__list__item {
  display: block;
  padding: 10px 0;
  position: relative;
}
.qfsd-header-ecmenu__link {
  display: block;
  width: 40px;
  height: auto;
  aspect-ratio: 1;
  cursor: pointer;
  position: relative;
}
.qfsd-header-ecmenu__link img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.qfsd-header-ecmenu__link .fs-client-cart-count {
  display: block;
  width: auto;
  min-width: 1.5em;
  height: 1.5em;
  padding: 0.25em;
  color: var(--qfsd-header-cart-badge-color-foreground, #ffffff);
  background-color: var(--qfsd-header-cart-badge-color-background, #004b86);
  font-size: 12px;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  z-index: 2;
  margin: auto;
  transform: translate(50%, -50%);
}
.qfsd-header-ecmenu__link .fs-client-cart-count.fs-client-cart-count--0 {
  display: none;
}
.qfsd-header:not([data-open=search]) .qfsd-header-ecmenu__link[data-header-action=search] .is-opened {
  display: none;
}

.qfsd-header[data-open=search] .qfsd-header-ecmenu__link[data-header-action=search] .is-closed {
  display: none;
}

.qfsd-header-usermenu {
  display: block;
  width: 100%;
}
.qfsd-header-usermenu__list {
  list-style: none;
  padding: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--qfsd-header-usermenu-gap, 5px);
}
.qfsd-header-usermenu__list__item {
  display: block;
  margin: 0;
  padding: 0;
  text-align: center;
}

.qfsd-header-ecmenu .qfsd-header-usermenu {
  width: 220px;
  max-width: 90vw;
  padding: 15px 25px;
  color: var(--qfsd-color-foreground, #282828);
  background-color: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 90%;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s;
}
.qfsd-header[data-open=usermenu] .qfsd-header-ecmenu .qfsd-header-usermenu {
  opacity: 1;
  visibility: visible;
}

.qfsd-header-usermenu-link {
  display: block;
  color: inherit;
  text-align: center;
}
.qfsd-header-usermenu-link.is-btn {
  display: block;
  font-size: 15px;
  line-height: 1.5;
  padding: 1em 0.5em;
  text-decoration: none !important;
  color: var(--qfsd-color-button--primary__font);
  background-color: var(--qfsd-color-button--primary);
  border-radius: var(--qfsd-size-button--primary__radius);
}
.qfsd-header-usermenu-link.is-link {
  display: inline-block;
  text-decoration: none !important;
  border: 0;
  padding: 0.25em;
  position: relative;
}
.qfsd-header-usermenu-link.is-link::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 5;
  margin: auto;
  transition: width 0.25s;
}
.qfsd-header-usermenu-link.is-link:hover::after {
  width: 0;
}

/*
 * 検索
------------------------------------------------*/
.qfsd-header-search {
  display: block;
  width: 100%;
  padding: 25px 0;
  border-top: 1px solid var(--qfsd-header-color-foreground, #282828);
  color: var(--qfsd-header-color-foreground);
  background: var(--qfsd-header-color-background);
  font-size: var(--qfsd-font-size-base);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 5;
  margin: auto;
}
.qfsd-header-search__content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}
.qfsd-header-search__form {
  display: block;
  width: 100%;
}
.qfsd-header-search__form .qfsd-searchForm {
  max-width: 892px;
}
.qfsd-header-search__aside {
  display: block;
  width: 100%;
}
.qfsd-header-search {
  transition: opacity 0.25s;
  opacity: 0;
  pointer-events: none;
}
.qfsd-header[data-open=search] .qfsd-header-search {
  opacity: 1;
  pointer-events: auto;
}
