
/* 数量のプルダウン前に「数量」のテキストを追加する */
.fs-c-quantity{
  display: flex;
  align-items: center;
  max-width: 10em;
  min-width: 10em;
  position: relative;
}
.fs-c-quantity::before{
  content:"数量：";
  flex-basis: 6em;
}
.fs-c-quantity__number:focus:not(.is-error) + .fs-c-quantity__message{
  left:calc(100% + 4px);
}
.fs-c-productList__list > *:nth-child(4) {
    -ms-grid-column: 4;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 2;
}
/*　特別商品時
.fs-c-productList__list {
    -ms-grid-columns: calc(25% - 0px) calc(25% - 0px) calc(25% - 0px) calc(25% - 0px) !important;
    grid-template-columns: calc(25% - 0px) calc(25% - 0px) calc(25% - 0px) calc(25% - 0px) !important;
}
.fs-c-productList__list > *:nth-child(4) {
    -ms-grid-column: 4;
    grid-column: 4;
    -ms-grid-row: 1;
    grid-row: 1;
}*/
/*　上段２段・下段3段
.fs-c-productList__list {
    -ms-grid-columns: calc(33% - 0px) calc(33% - 0px) calc(33% - 0px) !important;
    grid-template-columns:calc(33% - 0px) calc(33% - 0px) calc(33% - 0px) !important;
}
.fs-c-productList__list > *:nth-child(3) {
-ms-grid-column: 1;
grid-column: 1;
-ms-grid-row: 2;
grid-row: 2;
}
.fs-c-productList__list > *:nth-child(4) {
-ms-grid-column: 2;
grid-column: 2;
-ms-grid-row: 2;
grid-row: 2;
}
.fs-c-productList__list > *:nth-child(5) {
-ms-grid-column: 3;
grid-column: 3;
-ms-grid-row: 2;
grid-row: 2;
}*/
　　　　