/*　マイページの購入履歴で合計金額と件数を非表示にする　*/
#fs_MyOrders .fs-c-history__infoSummary{
  display: none;
}

/* P03 ゲスト購入フォームの「次へ」が幅28pxに潰れるのを直す（2026-09-19 追加）
   原因: .fs-c-buttonContainer{display:flex} で文字幅まで縮み、「次へ」に最小幅の指定が無い */
.fs-body-customerDetails .fs-c-button--next,
.fs-body-customerDetails .fs-c-button--registerAndContinue{
  min-width:240px; width:100%; max-width:340px;
  padding:15px 0; font-size:15px; font-weight:700; text-align:center;
}

/* P04 スマホの一覧ページ送りが幅115pxに潰れるのを直す（2026-09-19 追加）
   原因: テーマの .fs-c-listControl{width:calc(100% - 240px)} はPC用(並び替え枠240pxぶん)だが、スマホにも効いている */
@media screen and (max-width:719px){
  .fs-c-productList__controller .fs-c-listControl{width:100%;flex-direction:column-reverse;gap:12px;align-items:center}
  .fs-c-productList__controller .fs-c-listControl .fs-c-pagination{flex-wrap:wrap;justify-content:center;gap:6px}
  .fs-c-productList__controller .fs-c-listControl .fs-c-pagination__item{min-width:44px;min-height:44px;line-height:44px;text-align:center}
  .fs-c-productList__controller .fs-c-listControl .fs-c-listControl__status{white-space:nowrap}
}

/* P06 検索パネルの手当て（2026-09-19 案）
   1) 色見本3番目は検索値が「グレー」なのに茶色で表示されている → 表示をグレーに合わせる
   2) 入力欄が14pxだと iPhone で入力時に画面が勝手に拡大する → 16pxに
   3) 人気ワードのボタンが高さ22px・文字10pxで押しにくい → 文字13px・高さ約36pxに */
html body .colorList li.color03 .colorTip{background-color:#9e9e9e} /* 制作会社CSSが後から読まれるため指定を強くしている */
@media screen and (max-width:719px){
  #tabSearch input.searchWordInpput{font-size:16px}
  #tabAllBox #tabSearch.tabBoxSearch .tagBox .tagList li a{font-size:13px;padding:9px 12px;line-height:1.3}
}
