@charset "UTF-8";

/* FSのCSS上書き */
/* ヘッダー */
.fs-l-header {
  padding: 0;
}


/* パンくず */
.fs-c-breadcrumb {
  width: 1000px;
  max-width: 100%;
  background: #f7f6f2;
  margin: 0 auto 20px;
  padding: 5px;
  font-size: 85%;
}

.fs-c-breadcrumb__listItem a {
  font-size: 85%;
  text-decoration: underline;
}

/* メインコンテンツ */
.fs-l-main {
  width: 1000px;
}

/* メイン部分 */
.fs-l-pageMain {
  width: 760px;
}

.fs-c-heading--page {
  padding: 0;
  margin: 0 0 25px 0;
  border-bottom: 2px solid #dddddd;
  border-color: #a3c343;
  text-align: left;
  font-size: 1.5em;
  color: #333;
  line-height: 1.5;
}

.fs-c-subSection__title {
  margin: 20px 0 5px 0;
  padding: 0;
  border-bottom: 2px solid #dddddd;
  border-color: #a3c343;
  text-align: left;
  color: #333;
  line-height: 1.5;
  font-size: 1.17em;
}

.fs-l-footer {
  margin: 0;
  border: none;
  background-color: #f7f6f2;
}

/* 購入ボタン */
.fs-c-cartPayment__button .fs-c-button--loginAndPurchase,
.fs-c-cartPayment__button .fs-c-button--purchaseHere {
  background: #f0880f;
  border: none;
  padding: 1em 1.6em;
}

.fs-c-cartPayment__button .fs-c-button--unregisteredUserPurchase {
  background: #a3c343;
  border: none;
  padding: 1em 1.6em;
}

.fs-c-productListItem__control {
  flex-direction: column;
}

.fs-body-category .fs-c-button--addToCart--list.fs-c-button--plain {
  max-width: 174px;
  width: 100%;
  margin: 0;
  margin-bottom: 8px;
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0880f;
  border: 1px solid #f0880f;
  border-radius: 1px;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  padding: 0;
}

.fs-c-productListItem__prices .fs-c-productPrice__main__label {
  font-size: 12px;
}

.fs-c-price__currencyMark {
  display: none;
}

.fs-c-productListItem__prices .fs-c-price__value {
  font-size: 20px;
}

.fs-c-price__value::after {
  content: "円";
  font-size: 14px;
}

/* チェックアウトページ */
#fs_Checkout .fs-l-pageMain {
  width: auto;
}

.fs-c-confirmOrder__button .fs-c-button--confirmOrder {
  background: #f0880f;
  border: none;
  padding: 1em 1.6em;
}

.fs-c-checkout-previewAndEdit__button .fs-c-button--change--small,
.fs-c-checkout-destination__button .fs-c-button--change--small,
.fs-c-checkout-destination__button .fs-c-button--chooseDestination,
.fs-c-checkout-preview__button .fs-c-button--change--small {
  background: #a3c343;
  border: none;
}

.fs-c-checkout-previewAndEdit__button .fs-c-button--change--small .fs-c-button__label,
.fs-c-checkout-preview__button .fs-c-button--change--small .fs-c-button__label,
.fs-c-checkout-destination__button .fs-c-button--change--small .fs-c-button__label,
.fs-c-checkout-destination__button .fs-c-button--chooseDestination .fs-c-button__label {
  color: #fff;
}

.fs-c-checkout-previewAndEdit__button .fs-c-button--change--small .fs-c-button__label {
  color: #fff;
}

/* 960px以上 */
/* メイン部分 */
@media screen and (min-width: 960px) {
  .fs-l-pageMain .fs-c-productName__name {
    font-size: 1.2em;
  }

  .fs-l-pageMain .fs-c-button__label {
    font-size: 0.8em;
  }

  /* カート */
  .fs-body-cart .fs-l-cart__contentsArea {
    grid-template-columns: none;
  }

  #fs_orderTotalContainer {
    position: -webkit-sticky; /* Safari用 */
    position: sticky;
    top: 0; /* 上端からの距離 */
  }

}