@charset "UTF-8";
/*
|---------------------------------------------------------------
| fs-product.css
|---------------------------------------------------------------
*/
:root {
  --mbs-pd-color-primary: var(--mbs-color-brand);
  --mbs-pd-color-secondary: #777777;
}

:root {
  --mbs-pd-layout-gap: 20px;
  --mbs-pd-border-color: #efefef;
  --mbs-pd-component-border-color: #cccccc;
  --mbs-pd-font-size-base: 15px;
  --mbs-pd-section-gap: 32px;
}
@media (min-width: 750.02px) {
  :root {
    --mbs-pd-layout-gap: 30px;
  }
}
@media (min-width: 1200.02px) {
  :root {
    --mbs-pd-layout-gap: 60px;
  }
}

/* reset */
.fs-l-productLayout {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.fs-c-productSelection { /* 項目選択肢 */
  display: none !important;
}

/*--------------- カートに入れる ---------------*/
.fs-c-button--addToCart--detail,
.fs-c-button--addToCart--variation {
  color: var(--mbs-cart-button-color);
  background: var(--mbs-cart-button-bgcolor);
  border-color: var(--mbs-cart-button-border-color);
}

.fs-c-button--addToCart--subscriptionDetail {
  color: var(--mbs-cart-button-color);
  background: var(--mbs-cart-button-bgcolor);
  border-color: var(--mbs-cart-button-border-color);
}

.fs-c-button--addToSubscriptionCart--detail {
  color: var(--mbs-cart-button-color);
  background: var(--mbs-cart-button-bgcolor);
  border-color: var(--mbs-cart-button-border-color);
}

/*
 * Page
------------------------------------------------*/
.mbs-pd {
  --mbs-container-maxwidth: 1200px;
  --mbs-container-padding: 20px;
  font-size: var(--mbs-pd-font-size-base, 15px);
}
@media (min-width: 750.02px) {
  .mbs-pd {
    padding: 30px 0 0;
  }
  .mbs-pd > .fs-c-breadcrumb {
    display: none;
  }
}

/*
 * パンくずリスト
------------------------------------------------*/
.mbs-pd-breadcrumbs {
  --mbs-separator-size: 0.5em;
  display: block;
  width: 100%;
  margin: 0;
  font-size: clamp(10px, 1.33vw, 12px);
}
.mbs-pd-breadcrumbs .fs-c-breadcrumb {
  color: #777777;
  font-size: 1em;
  padding: 0;
}
.mbs-pd-breadcrumbs .fs-c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.mbs-pd-breadcrumbs .fs-c-breadcrumb__listItem {
  display: flex;
  align-items: center;
}
.mbs-pd-breadcrumbs .fs-c-breadcrumb__listItem + .fs-c-breadcrumb__listItem::before {
  content: "";
  display: block;
  width: var(--mbs-separator-size);
  height: var(--mbs-separator-size);
  border-width: 1px 1px 0 0;
  border-style: solid;
  border-color: var(--mbs-pd-component-border-color);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin: 0 0.5em;
}
.mbs-pd-breadcrumbs--product {
  --mbs-container-padding: 0px;
  font-size: 12px;
  margin-bottom: 1.75em;
}
@media (max-width: 750px) {
  .mbs-pd-breadcrumbs--product {
    display: none;
  }
}
@media (min-width: 750.02px) {
  .mbs-pd-breadcrumbs--upper {
    display: none;
  }
}
.mbs-pd-breadcrumbs--upper .fs-c-breadcrumb {
  padding: 15px var(--mbs-container-padding);
  overflow-x: auto;
  width: auto;
}
.mbs-pd-breadcrumbs--upper .fs-c-breadcrumb__list {
  width: auto;
  flex-wrap: nowrap;
  padding: 0;
}
.mbs-pd-breadcrumbs--upper .fs-c-breadcrumb__listItem {
  width: auto;
  flex: 0 0 auto;
  white-space: nowrap;
}
.mbs-pd-breadcrumbs--upper .fs-c-breadcrumb__listItem:last-child {
  padding-right: var(--mbs-container-padding);
}

/*
 * Main
------------------------------------------------*/
.mbs-pd-main {
  width: 100%;
  margin: 0 0 var(--mbs-pd-layout-gap, 25px);
  padding: 15px 0;
}
@media (min-width: 750.02px) {
  .mbs-pd-main {
    padding: 30px 0;
  }
}
.mbs-pd-main__layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--mbs-pd-layout-gap);
}
@media (min-width: 750.02px) {
  .mbs-pd-main__layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.mbs-pd-main__layout__images {
  display: block;
  width: 100%;
}
.mbs-pd-main__layout__details {
  display: block;
  width: 100%;
}
.mbs-pd-main__layout__details .mbs-container {
  padding-left: 0;
  padding-right: 0;
}

/*
 * Section
------------------------------------------------*/
.mbs-pd-section {
  container-type: inline-size;
  display: block;
  width: 100%;
  margin: 30px 0 50px;
}
.mbs-pd-section__header {
  display: block;
  width: 100%;
  margin: 0 0 var(--mbs-pd-section-gap, 15px);
}
.mbs-pd-section__body {
  display: block;
  width: 100%;
}

.mbs-pd-section-title {
  display: block;
  width: 100%;
  margin: 0 0 0.5em;
  padding: 0.75em 0;
  color: var(--mbs-color-foreground);
  border-bottom: 2px solid currentColor;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}
@media (max-width: 750px) {
  .mbs-pd-section-title {
    width: auto;
    margin-left: calc(-1 * var(--mbs-container-padding));
    margin-right: calc(-1 * var(--mbs-container-padding));
    padding-left: var(--mbs-container-padding);
    padding-right: var(--mbs-container-padding);
    font-size: 16px;
    border-top: 1px solid var(--mbs-pd-border-color);
    border-bottom-width: 1px;
  }
}

/*--------------- アコーディオン ---------------*/
.mbs-pd-section.has-collapse {
  --mbs-rotate: 0deg;
  --mbs-navigation-size: max(11px, 0.67em);
}
.mbs-pd-section.has-collapse .mbs-pd-section-title {
  --mbs-padding-x: 0.5em;
  padding-right: calc(var(--mbs-navigation-size) * 2 + var(--mbs-padding-x, 0px));
  position: relative;
  cursor: pointer;
}
.mbs-pd-section.has-collapse .mbs-pd-section-title::after {
  content: "";
  display: block;
  width: var(--mbs-navigation-size);
  height: var(--mbs-navigation-size);
  border-style: solid;
  border-width: 1px 0 0 1px;
  border-color: currentColor;
  transform: rotate(calc(45deg + var(--mbs-rotate)));
  position: absolute;
  top: 0;
  right: var(--mbs-padding-x, 0px);
  bottom: 0;
  z-index: 2;
  margin: auto;
}
@media (max-width: 750px) {
  .mbs-pd-section.has-collapse .mbs-pd-section-title {
    --mbs-padding-x: var(--mbs-container-padding);
  }
}
.mbs-pd-section.has-collapse.is-closed {
  --mbs-rotate: 180deg;
}
.mbs-pd-section.has-collapse.is-closed .mbs-pd-section__body {
  display: none;
}
.mbs-pd-section.has-collapse.is-opened {
  --mbs-rotate: 0deg;
}
.mbs-pd-section.has-collapse.js--opened {
  --mbs-rotate: 0deg;
}
.mbs-pd-section.has-collapse.js--closed {
  --mbs-rotate: 180deg;
}

/*
 * お支払い方法
------------------------------------------------*/
.mbs-pd-payments {
  --mbs-pd-section-gap: 25px;
}

.mbs-pd-payment {
  font-size: var(--mbs-pd-font-size-base, 15px);
  line-height: 1.75;
}
.mbs-pd-payment p {
  margin: 0 0 1em;
}

.mbs-pd-payment-brands {
  --mbs-gap: 15px;
  --mbs-image-height: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(var(--mbs-gap) / 2) var(--mbs-gap);
}
.mbs-pd-payment-brands img {
  display: block;
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  height: var(--mbs-image-height);
  -o-object-fit: contain;
  object-fit: contain;
}
@container (min-width: 480.02px) {
  .mbs-pd-payment-brands {
    --mbs-gap: 20px;
    --mbs-image-height: 42px;
  }
}

.mbs-pd-detail {
  display: block;
}
.mbs-pd-detail__breadcrumbs {
  display: block;
  width: 100%;
}
.mbs-pd-detail__heading {
  display: block;
  width: 100%;
}
.mbs-pd-detail__marks {
  display: block;
  width: 100%;
}
.mbs-pd-detail__periods {
  display: block;
  width: 100%;
}
.mbs-pd-detail__carts {
  display: block;
  width: 100%;
}
.mbs-pd-detail__carts::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--mbs-pd-border-color);
  margin: 30px 0;
}
@media (max-width: 750px) {
  .mbs-pd-detail__carts::before {
    width: auto;
    margin-left: calc(-1 * var(--mbs-container-padding));
    margin-right: calc(-1 * var(--mbs-container-padding));
  }
}
.mbs-pd-detail__aside {
  display: block;
  width: 100%;
}

/*
 * シリーズ名
------------------------------------------------*/
.mbs-pd-series {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  text-align: left;
}

/*
 * 見出し
------------------------------------------------*/
.mbs-pd-heading {
  --mbs-pd-heading-line-height: 1.5;
  --mbs-pd-heading-name-font-size: 18px;
  --mbs-pd-heading-copy-font-size: 16px;
  --mbs-pd-heading-number-font-size: 12px;
  --mbs-pd-heading-margin-bottom: 10px;
  display: block;
  width: 100%;
  margin: 0 0 var(--mbs-pd-heading-margin-bottom);
  padding: 0;
  line-height: var(--mbs-pd-heading-line-height);
}
@media (min-width: 750.02px) {
  .mbs-pd-heading {
    --mbs-pd-heading-name-font-size: 24px;
    --mbs-pd-heading-copy-font-size: 18px;
    --mbs-pd-heading-number-font-size: 13px;
    --mbs-pd-heading-margin-bottom: 15px;
  }
}
.mbs-pd-heading::after {
  content: "";
  display: table;
  clear: both;
  visibility: hidden;
}
.mbs-pd-heading .fs-c-productNumber {
  float: right;
  border: 0;
  margin: 0;
  padding: 0 0 0 0.5em;
  text-align: right;
  font-size: var(--mbs-pd-heading-number-font-size, 1em);
  line-height: calc(var(--mbs-pd-heading-copy-font-size) * var(--mbs-pd-heading-line-height));
  color: var(--mbs-pd-color-secondary);
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
}
.mbs-pd-heading .fs-c-productNumber__label {
  font-size: 1em;
  font-weight: normal;
}
.mbs-pd-heading .fs-c-productNumber__label::after {
  content: "：";
}
.mbs-pd-heading .fs-c-productNumber__number {
  font-size: 1em;
  font-weight: normal;
}
.mbs-pd-heading .fs-c-productNameHeading {
  display: block;
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 1em;
  line-height: inherit;
  text-align: left;
}
.mbs-pd-heading .fs-c-productNameHeading__copy, .mbs-pd-heading .fs-c-productNameHeading__name {
  margin: 0;
  padding: 0;
}
.mbs-pd-heading .fs-c-productNameHeading__copy {
  display: block;
  color: var(--mbs-color-brand);
  font-size: var(--mbs-pd-heading-copy-font-size, 1em);
  font-weight: var(--mbs-pd-heading-copy-font-weight, 700);
}
.mbs-pd-heading .fs-c-productNameHeading__name {
  clear: both;
  display: block;
  padding-top: 0.25em; /* Number or Copy margin */
  font-size: var(--mbs-pd-heading-name-font-size, 1em);
  font-weight: var(--mbs-pd-heading-name-font-weight, 700);
}
.mbs-pd-heading .mbs-pd-series {
  color: var(--mbs-pd-color-secondary);
}

/*
 * アイコン・マーク
------------------------------------------------*/
.mbs-pd-marks {
  display: block;
  width: 100%;
  margin: 0 0 15px;
}
@media (min-width: 750.02px) {
  .mbs-pd-marks {
    margin-bottom: 20px;
  }
}

/*
* 販売期間表示
------------------------------------------------*/
.mbs-pd-detail__periods {
  font-size: 12px;
}
@media (min-width: 750.02px) {
  .mbs-pd-detail__periods {
    font-size: 15px;
  }
}

/*
 * カートエリア
------------------------------------------------*/
.mbs-pd-detail-cart {
  --mbs-pd-cart-btn-font-size: 16px;
  --mbs-pd-cart-default-order: 2;
}
@media (min-width: 750.02px) {
  .mbs-pd-detail-cart {
    --mbs-pd-cart-btn-font-size: 20px;
  }
}
.mbs-pd-detail-cart {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 5px;
}
.mbs-pd-detail-cart > * {
  grid-column: span 2;
  order: var(--mbs-pd-cart-default-order, 0);
}
.mbs-pd-detail-cart .mbs-pd-messages {
  order: calc(var(--mbs-pd-cart-default-order, 0) - 5);
}
.mbs-pd-detail-cart__prices {
  grid-column: auto;
  order: calc(var(--mbs-pd-cart-default-order, 0) - 2);
}
.mbs-pd-detail-cart .fs-c-productQuantityAndWishlist {
  grid-column: auto;
  align-self: flex-end;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  order: calc(var(--mbs-pd-cart-default-order, 0) - 1);
}
.mbs-pd-detail-cart .fs-c-productQuantityAndWishlist__wishlist {
  display: none;
}
.mbs-pd-detail-cart .fs-c-productActionButton {
  width: 100%;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mbs-pd-detail-cart .fs-c-productActionButton > *[class*=fs-c-button] {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  padding: 1em 1em;
  font-size: var(--mbs-pd-cart-btn-font-size);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

/*--------------- 在庫メッセージ ---------------*/
.mbs-pd-detail-cart .fs-c-productNotice {
  margin: 15px 0;
}

/*--------------- 数量 ---------------*/
.mbs-pd-detail-cart .fs-c-quantity {
  width: 150px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--mbs-pd-component-border-color);
  padding: 0 0.5em;
  position: relative;
  font-size: max(16px, 1em); /* for iOS */
}
@media (min-width: 750.02px) {
  .mbs-pd-detail-cart .fs-c-quantity {
    font-size: 18px;
  }
}
.mbs-pd-detail-cart .fs-c-quantity::before {
  content: "数量：";
  display: block;
  padding: 0.5em 0;
  flex: 0 0 auto;
}
.mbs-pd-detail-cart .fs-c-quantity__select {
  border: 0;
  outline: none;
  box-shadow: none;
  padding: 0.5em 2em 0.5em 0.5em;
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
  font-size: 1em;
  background-color: transparent;
  background-image: url("/item/assets/images/icon/angle-down-black.svg");
  background-repeat: no-repeat;
  background-size: 1em 1em;
  background-position: center right 0;
}
.mbs-pd-detail-cart .fs-c-quantity__number {
  border: 0;
  padding: 0.5em 0.5em;
  border: 0;
  outline: none;
  box-shadow: none;
  font-size: 1em;
  width: 100%;
  flex-grow: 1;
  flex-basis: 0;
}
.mbs-pd-detail-cart .fs-c-quantity__message {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  bottom: auto;
  z-index: 2;
  margin: auto;
}

/*--------------- 価格 ---------------*/
.mbs-pd-prices {
  --mbs-value-font-size: 1.67em;
  --mbs-addon-font-size: 0.8em;
}
@media (min-width: 750.02px) {
  .mbs-pd-prices {
    --mbs-value-font-size: 2.4em;
    --mbs-addon-font-size: 0.87em;
  }
}
.mbs-pd-prices .fs-c-productPrice__main__label {
  font-size: var(--mbs-addon-font-size);
}
.mbs-pd-prices .fs-c-productPrices--productDetail {
  margin-bottom: 4px;
}
.mbs-pd-prices .fs-c-productPrices--productDetail .fs-c-productPrice:not(.fs-c-productPrice--listed) {
  gap: 0 0.25em;
}
.mbs-pd-prices .fs-c-productPrices--productDetail .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__main__price {
  font-family: var(--mbs-font-family-en, inherit);
  font-size: var(--mbs-value-font-size);
  font-weight: 700;
  line-height: 1;
}
.mbs-pd-prices .fs-c-productPrices--productDetail .fs-c-productPrice:not(.fs-c-productPrice--listed) .fs-c-productPrice__addon {
  font-size: var(--mbs-addon-font-size);
  font-weight: 400;
}

.mbs-pd-prices .fs-c-productPointDisplay {
  display: inline-block;
  color: inherit;
  background: inherit;
  border: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 500;
}
.mbs-pd-prices .fs-c-productPostage {
  display: inline-block;
  padding: 0;
  font-size: 1em;
  font-weight: 500;
}

/*--------------- バリエーション ---------------*/
.mbs-pd-detail-cart .fs-c-productChooseVariation {
  order: calc(var(--mbs-pd-cart-default-order, 0) - 10);
}
.mbs-pd-detail-cart .fs-c-productChooseVariation::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--mbs-pd-border-color);
  margin: 30px 0;
}
@media (max-width: 750px) {
  .mbs-pd-detail-cart .fs-c-productChooseVariation::after {
    width: auto;
    margin-left: calc(-1 * var(--mbs-container-padding));
    margin-right: calc(-1 * var(--mbs-container-padding));
  }
}
.mbs-pd-detail-cart .fs-c-variationLabel {
  font-weight: normal;
}
.mbs-pd-detail-cart .fs-c-variationPanelList {
  gap: 0.5em;
}
.mbs-pd-detail-cart .fs-c-variationPanelList__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}
.mbs-pd-detail-cart .fs-c-variationPanelList__list__item {
  min-width: 0;
  display: flex;
  flex: 0 0 auto;
  max-width: 100%;
}
.mbs-pd-detail-cart .fs-c-variationPanelList__panel {
  --mbs-color: var(--mbs-color-foreground);
  --mbs-bgcolor: #ffffff;
  --mbs-border-color: var(--mbs-pd-component-border-color);
  border: 1px solid var(--mbs-border-color);
  border-radius: 0;
}
.mbs-pd-detail-cart .fs-c-variationPanelList__panel__content {
  min-height: 0;
  padding: 0.75em 1.25em;
  justify-content: center;
  align-items: center;
  color: var(--mbs-color);
  background: var(--mbs-bgcolor);
  text-align: center;
}
.mbs-pd-detail-cart .fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel {
  --mbs-color: #ffffff;
  --mbs-bgcolor: #000000;
  --mbs-border-color: var(--mbs-bgcolor);
}
.mbs-pd-detail-cart .fs-c-variationPanelList__radio:checked + .fs-c-variationPanelList__panel .fs-c-variationPanelList__panel__content {
  color: var(--mbs-color);
  background: var(--mbs-bgcolor);
}

/* 在庫切れ */
.mbs-pd-detail-cart .fs-c-variationPanelList__panel--outOfStock {
  --mbs-color: #eeeeee;
  --mbs-bgcolor: #ffffff;
  --mbs-border-color: #eeeeee;
  position: relative;
}
.mbs-pd-detail-cart .fs-c-variationPanelList__panel--outOfStock::before {
  content: "";
  display: block;
  width: 3.5em;
  height: 2px;
  background: var(--mbs-color, currentColor);
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: auto;
}

/*--------------- 独自カートボタン ---------------*/
.mbs-pd-original-cartButton {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  padding: 1em 1em;
  font-size: var(--mbs-pd-cart-btn-font-size);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none !important;
  color: var(--mbs-cart-button-color);
  background: var(--mbs-cart-button-bgcolor);
  border-color: var(--mbs-cart-button-border-color);
}
.mbs-pd-original-cartButton ~ .fs-c-productActionButton {
  display: none;
}

/*
 * 複製お気に入りボタン
------------------------------------------------*/
.mbs-pd-clone-wishlist {
  display: block;
}
.mbs-pd-clone-wishlist .fs-c-productQuantityAndWishlist {
  display: block;
}
.mbs-pd-clone-wishlist .fs-c-productQuantityAndWishlist__wishlist {
  display: block;
  width: 100%;
  padding: 0;
}
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--addToWishList--detail,
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--removeFromWishList--detail {
  box-shadow: none;
  width: 100%;
  padding: 1em 1.45em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  font-size: 1em;
  font-weight: 600;
  color: var(--mbs-color-foreground);
  background: #ffffff;
  border: 1px solid var(--mbs-pd-component-border-color);
  border-radius: 0;
}
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--addToWishList--detail::before,
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--removeFromWishList--detail::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("/item/assets/images/icon/bookmark-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--addToWishList--detail::after,
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--removeFromWishList--detail::after {
  display: none;
}
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--removeFromWishList--detail {
  color: var(--mbs-color-subcolor1, #727171);
}
.mbs-pd-clone-wishlist .fs-c-button--particular.fs-c-button--removeFromWishList--detail::before {
  background-image: url("/item/assets/images/icon/bookmark-gray.svg");
}

/*
 * Banner
------------------------------------------------*/
.mbs-pd-banner {
  display: block;
  width: 100%;
}
.mbs-pd-banner--sp {
  margin-top: 15px;
}
@media (min-width: 750.02px) {
  .mbs-pd-banner--sp {
    display: none !important;
  }
}
.mbs-pd-descriptions + .mbs-pd-banner--pc {
  margin-top: -15px;
  margin-bottom: 60px;
}

@media (max-width: 750px) {
  .mbs-pd-banner--pc {
    display: none !important;
  }
}

/*--------------- image ---------------*/
.mbs-pd-banner-image {
  display: block;
  width: 100%;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}
.mbs-pd-banner-image[href=""] {
  pointer-events: none;
}
.mbs-pd-banner-image img {
  display: block;
  /* width: 100%; */
  max-width: 100%;
  height: auto;
}

/*--------------- loading ---------------*/
.mbs-pd-banner:not(.js--active) {
  display: none;
}
.mbs-pd-banner:not(.js--active) .mbs-pd-banner-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.mbs-pd-banner--pc:not(.js--active) .mbs-pd-banner-image {
  width: 980px;
  height: auto;
  aspect-ratio: 980/170;
  max-width: 100%;
}
.mbs-pd-banner--sp:not(.js--active) .mbs-pd-banner-image {
  width: 680px;
  height: auto;
  max-width: 100%;
  aspect-ratio: 680/190;
}

/*
 * 商品画像
------------------------------------------------*/
.mbs-pd-image {
  --mbs-pd-image-controller-position-x: clamp(15px, 3.51cqw, 20px);
  --mbs-pd-image-controller-position-y: var(--mbs-pd-image-controller-position-x);
  container-type: inline-size;
}
.mbs-pd-image .fs-c-productPlainImage {
  display: block;
  width: 100%;
}
.mbs-pd-image .fs-c-productPlainImage img {
  display: block;
  width: 100%;
  height: auto;
}
.mbs-pd-image__main {
  display: block;
  width: 100%;
  min-height: clamp(50px, 100cqw, 570px);
  outline: 1px solid var(--mbs-pd-border-color);
  outline-offset: -1px;
  position: relative;
}
.mbs-pd-image__main__images {
  /*  */
}
.mbs-pd-image__sub {
  display: block;
  width: 100%;
}
.mbs-pd-image__main + .mbs-pd-image__sub {
  margin-top: clamp(15px, 2vw, 30px);
}

/*--------------- メイン画像 ---------------*/
.mbs-pd-mainImage:not(.swiper-initialized) .fs-c-productPlainImage:not(:first-child) {
  display: none;
}
.mbs-pd-mainImage .swiper-button-next,
.mbs-pd-mainImage .swiper-button-prev {
  --mbs-button-size: 30px;
  --mbs-gap: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--mbs-button-size);
  height: var(--mbs-button-size);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  position: absolute;
  top: auto;
  left: auto;
  right: var(--mbs-pd-image-controller-position-x, 20px);
  bottom: var(--mbs-pd-image-controller-position-y, 20px);
  z-index: 5;
  margin: auto;
  cursor: pointer;
  transition: opacity 0.25s;
}
.mbs-pd-mainImage .swiper-button-next::before,
.mbs-pd-mainImage .swiper-button-prev::before {
  content: "";
  box-sizing: border-box;
  display: block;
  width: calc(var(--mbs-button-size) / 3);
  height: calc(var(--mbs-button-size) / 3);
  border-style: solid;
  border-width: 1px 1px 0 0;
  border-color: currentColor;
  flex-shrink: 0;
}
.mbs-pd-mainImage .swiper-button-next::after,
.mbs-pd-mainImage .swiper-button-prev::after {
  display: none;
}
.mbs-pd-mainImage .swiper-button-next:hover,
.mbs-pd-mainImage .swiper-button-prev:hover {
  opacity: 0.85;
}
.mbs-pd-mainImage .swiper-button-next::before {
  transform: translateX(-25%) rotate(45deg);
}
.mbs-pd-mainImage .swiper-button-prev {
  right: calc(20px + var(--mbs-button-size) + var(--mbs-gap));
}
.mbs-pd-mainImage .swiper-button-prev::before {
  transform: translateX(25%) rotate(225deg);
}

/*--------------- サブ画像 ---------------*/
.mbs-pd-subImage {
  --mbs-gap: 5px;
}
.mbs-pd-subImage__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--mbs-gap);
}
.mbs-pd-subImage__list__item {
  display: flex;
}
@media (min-width: 750.02px) {
  .mbs-pd-subImage {
    --mbs-gap: 10px;
  }
}

.mbs-pd-subImage-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #ffffff;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.mbs-pd-subImage-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/*
 * バリエーション
------------------------------------------------*/
.mbs-pd-variations:not(.js--hasContents) {
  display: none;
}

.mbs-pd-variation {
  --mbs-fs-p-product-gap: 15px;
  width: 100%;
}
.mbs-pd-variation .mbr-lineup__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px 6px;
}
@media (min-width: 750.02px) {
  .mbs-pd-variation .mbr-lineup__list {
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 25px 10px;
  }
}
.mbs-pd-variation .mbr-lineup .fs-c-productName__name {
  font-size: clamp(12px, 9.28cqw, 13px);
  line-height: 1.5;
}
.mbs-pd-variation .mbr-lineup .fs-c-productPrices {
  display: none;
}

/* fallback */
.mbs-pd-variation .fs-c-featuredProduct__header {
  display: none;
}
.mbs-pd-variation.js--active .fs-c-featuredProduct {
  display: none;
}

/*
 * 関連商品
------------------------------------------------*/
.mbs-pd-relation {
  --mbs-fs-p-product-gap: 15px;
  width: 100%;
}
.mbs-pd-relation .mbr-lineup__list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px 6px;
}
@media (min-width: 750.02px) {
  .mbs-pd-relation .mbr-lineup__list {
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 25px 10px;
  }
}
/*
 * レコメンド
------------------------------------------------*/
.mbs-pd-rcms {
  display: block;
  width: 100%;
  margin: 0;
  padding: clamp(30px, 4vw, 60px) 0;
  color: var(--mbs-colore-foreground);
  background: #f6f6f6;
}
@media (min-width: 750.02px) {
  .mbs-pd-rcms {
    margin-top: 80px;
  }
}

.mbs-pd-rcm {
  width: 100%;
  font-size: var(--mbs-pd-font-size-base, 15px);
  line-height: 1.75;
  margin: 0 0 1.5em;
}

.mbs-pd-rcm-section {
  display: block;
  width: 100%;
  margin: 0;
  padding: clamp(30px, 4vw, 60px) 0;
}
.mbs-pd-rcm-section__header {
  display: block;
  width: 100%;
  margin: 0 0 clamp(35px, 4.67vw, 50px);
}
.mbs-pd-rcm-section__body {
  display: block;
  width: 100%;
}

.mbs-pd-rcm-section-title {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 29px;
  text-align: center;
}
.mbs-pd-rcm-section-title__main {
  display: block;
  width: 100%;
  font-family: var(--mbs-font-family-en, inherit);
  font-size: 1em;
  font-weight: 700;
}
.mbs-pd-rcm-section-title__sub {
  display: block;
  width: 100%;
  font-family: var(--mbs-font-family-ja, var(--mbs-font-family-base, inherit));
  font-size: 0.45em;
  font-weight: 400;
}
.mbs-pd-rcm-section-title__main + .mbs-pd-rcm-section-title__sub {
  margin-top: 0.35em;
}
@media (min-width: 750.02px) {
  .mbs-pd-rcm-section-title {
    font-size: 36px;
  }
  .mbs-pd-rcm-section-title__main {
    font-size: 1em;
  }
  .mbs-pd-rcm-section-title__sub {
    font-size: 0.39em;
  }
}

@media (max-width: 750px) {
  .mbs-pd-rcms .mbr-lineup {
    --mbs-enabled-slider: true;
  }
  .mbs-pd-rcms .mbr-lineup:not(.swiper-initialized) .mbr-lineup__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--mbs-recommend-gap, 20px) 1px;
  }
}
@media (min-width: 750.02px) {
  .mbs-pd-rcms .mbr-lineup {
    --mbs-enabled-slider: false;
  }
  .mbs-pd-rcms .mbr-lineup:not(.swiper-initialized) .mbr-lineup__list {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: var(--mbs-recommend-gap, 20px);
  }
  .mbs-pd-rcms .mbr-lineup:not(.swiper-initialized) .mbr-lineup__list__item:nth-child(n+7) {
    display: none;
  }
}

/*--------------- recommend ---------------*/
@media (max-width: 750px) {
  .mbjs-pd-recommend {
    width: auto;
    margin-left: calc(-1 * var(--mbs-container-padding));
    margin-right: calc(-1 * var(--mbs-container-padding));
  }
  .mbjs-pd-recommend .mbr-lineup {
    padding-left: var(--mbs-container-padding);
    padding-right: var(--mbs-container-padding);
  }
}

.mbjs-pd-recommend-wrapper:not(.js--active) {
  display: none;
}

/*
 * 下部固定カート
------------------------------------------------*/
.mbs-pd-ecNav {
  width: 100%;
  padding: 15px 0;
  color: var(--mbs-color-foreground);
  background: #f6f6f6;
  transition: opacity 0.25s;
  opacity: 1;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: calc(var(--mbs-header-zindex, 105) - 5);
  margin: auto;
}
@media (min-width: 750.02px) {
  .mbs-pd-ecNav {
    display: none;
  }
}
.mbs-pd-ecNav:not(.js--active) {
  pointer-events: none;
  opacity: 0;
}
.mbs-pd-ecNav__content {
  width: 100%;
  display: flex;
  gap: 15px;
}
.mbs-pd-ecNav__bookmark {
  display: block;
  flex: 0 0 auto;
  max-width: 50%;
}
.mbs-pd-ecNav:not(.has-bookmark) .mbs-pd-ecNav__bookmark {
  display: none;
}

/*--------------- カートに入れる ---------------*/
.mbs-pd-ecNav-cartBtn {
  text-decoration: none !important;
  outline: none !important;
  color: var(--mbs-cart-button-color);
  background: var(--mbs-cart-button-bgcolor);
  border-color: var(--mbs-cart-button-border-color);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  padding: 0.75em 1em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

/*--------------- お気に入り ---------------*/
.mbs-pd-ecNav-bookmark {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none !important;
  border: 1px solid #cccccc;
  color: var(--mbs-color-foreground);
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  padding: 0.75em 1em;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.mbs-pd-ecNav-bookmark:not(:disabled) {
  cursor: pointer;
}
.mbs-pd-ecNav-bookmark::before {
  content: "";
  display: block;
  width: 1.25em;
  height: 1.25em;
  background-image: url("/item/assets/images/icon/bookmark-light.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
.mbs-pd-ecNav-bookmark.js--bookmarked {
  color: var(--mbs-color-subcolor1, #727171);
}
.mbs-pd-ecNav-bookmark.js--bookmarked::before {
  /* opacity: 0.6; */
  background-image: url("/item/assets/images/icon/bookmark-gray.svg");
}
.mbs-pd-ecNav-bookmark:not(.js--bookmarked) .mbs-pd-ecNav-bookmark__text.is-bookmarked {
  display: none;
}
.mbs-pd-ecNav-bookmark.js--bookmarked .mbs-pd-ecNav-bookmark__text:not(.is-bookmarked) {
  display: none;
}

.mbs-pd-ecNav .mbs-pd-ecNav-bookmark__text {
  display: none;
}
