<!-- **買い物を続けるボタン（システムパーツ）↓↓ -->
.fs-c-continueShopping {
    text-align: center;
    padding-bottom: 60px;
}

.fs-c-button--standard {
font-size: 2rem!important;
}

<!-- **元のページに戻るボタン（システムパーツ）↓↓ -->
.fs-c-button__label {
font-size: 2rem!important;
}

<!-- **商品一覧コラム↓↓ -->
.fs-c-inputInformation {
margin-bottom: 100px;
}
<!-- **カルーセル下げ↓↓ -->
.top-keyvisual-wrap {
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .top-keyvisual-wrap {
    margin-top: 80px;
  }
}

<!-- **プレビュー非表示↓↓ -->
.fs-preview-header { display: none; }

body,
p,
a,
li,
span,
div,
h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-style: normal !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
}




/* =========================================
   futureshop / MY ROUTINE sticky cart
   全差し替え用CSS
========================================= */

/* --- futureshop側のfixed干渉対策 --- */
.fs-l-page,
.fs-l-main,
.fs-l-product,
.fs-l-productLayout,
.fs-system-product {
  transform: none !important;
}

/* プレビューモードの黒バーがあると見え方がズレやすいので非表示 */
.fs-preview-header {
  display: none !important;
}

/* body下に余白確保 */
body {
  padding-bottom: 130px !important;
}

/* =========================================
   Sticky Cart 本体
========================================= */
.myr-sticky-cart {
  position: fixed !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;

  z-index: 999999 !important;

  display: block !important;
  visibility: visible !important;

  margin: 0 !important;
  box-sizing: border-box !important;

  background: rgba(255, 255, 255, 0.98) !important;
  border-top: 1px solid #d9d9d9 !important;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15) !important;

  padding: 10px 12px calc(10px + env(safe-area-inset-bottom)) !important;

  transform: none !important;
  -webkit-transform: none !important;
}

.myr-sticky-cart__inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  box-sizing: border-box;
}

.myr-sticky-cart__row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.myr-sticky-cart__select-wrap {
  position: relative;
  margin-bottom: 10px;
}

.myr-sticky-cart__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

/* =========================================
   フォーム要素
========================================= */
.myr-sticky-cart__select,
.myr-sticky-cart__qty {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid #8d8d8d;
  border-radius: 0;
  background: #fff;
  color: #222;
  font-size: 14px;
  line-height: 1.2;
  box-sizing: border-box;
}

.myr-sticky-cart__select {
  width: 100%;
  height: 44px;
  padding: 0 40px 0 14px;
}

.myr-sticky-cart__qty {
  width: 78px;
  min-width: 78px;
  height: 52px;
  padding: 0 10px;
  text-align: center;
}

.myr-sticky-cart__select:focus,
.myr-sticky-cart__qty:focus {
  outline: none;
  border-color: #333;
}

/* =========================================
   ボタン
========================================= */
.myr-sticky-cart__button {
  flex: 1;
  height: 52px;
  border: none;
  border-radius: 0;
  background: linear-gradient(180deg, #ea4a43 0%, #d63d37 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 3px 0 rgba(170, 35, 30, 0.9);
  box-sizing: border-box;
}

.myr-sticky-cart__button:hover {
  opacity: 0.96;
}

.myr-sticky-cart__button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 rgba(170, 35, 30, 0.9);
}

/* =========================================
   PCでは非表示
========================================= */
@media screen and (min-width: 769px) {
  .myr-sticky-cart {
    display: none !important;
  }

  body {
    padding-bottom: 0 !important;
  }
}


/* =========================
   サブカテゴリ一覧
   スマホ2列 / PC3列
   隙間なし
========================= */

/* 件数表示は不要 */
.fs-c-subgroup .fs-c-listControl {
  display: none;
}

/* 全体 */
.fs-c-subgroup {
  margin: 0;
  padding: 0;
  background: transparent;
}

/* 一覧 */
.fs-c-subgroupList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

/* 各項目 */
.fs-c-subgroupList__item {
  margin: 0;
  padding: 0;
}

/* リンク */
.fs-c-subgroupList__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 10px;
  text-decoration: none;
  color: #111;
  background: #f7f7f7;
  border: 1px solid #e3e3e3;
  border-radius: 0;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  margin: 0;
}

/* ラベル */
.fs-c-subgroupList__label {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* hover */
.fs-c-subgroupList__link:hover {
  background: #f1f1f1;
  border-color: #d5d5d5;
}

/* active */
.fs-c-subgroupList__link:active {
  transform: scale(0.98);
}

/* 矢印は消す */
.fs-c-subgroupList__link::after {
  display: none;
}

/* 最後が1個余る場合 */
.fs-c-subgroupList__item:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

/* =========================
   PC
========================= */
@media screen and (min-width: 768px) {
  .fs-c-subgroupList {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .fs-c-subgroupList__link {
    min-height: 44px;
    padding: 9px 12px;
  }

  .fs-c-subgroupList__label {
    font-size: 13px;
    line-height: 1.4;
  }

  .fs-c-subgroupList__item:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

/* =========================
   スマホ微調整
========================= */
@media screen and (max-width: 767px) {
  .fs-c-subgroupList {
    gap: 0;
  }

  .fs-c-subgroupList__link {
    min-height: 38px;
    padding: 7px 8px;
  }

  .fs-c-subgroupList__label {
    font-size: 11px;
    line-height: 1.3;
  }
}