.fs-preview-header {
  display: none;
}

/* 横並びを縦に（多分）  */
@media screen and (min-width: 960px) {
    .fs-body-cart .fs-l-cart__contentsArea, .fs-l-checkout {
        display: block !important;
    }

    .fs-body-my-top .fs-l-account {
        display: block !important;
    }

    .fs-body-login .fs-c-loginForm {
        display: block !important;
    }

    .fs-body-my-orders .fs-c-history, .fs-body-my-storeOrders .fs-c-history {
        display: block !important;
    }

    .fs-body-wishlist-login .fs-c-loginForm {
        display: block;
    }

    .fs-body-wishlist-login .fs-c-newUsers {
        margin-left: 0;
    }

    .fs-body-review-login .fs-c-loginForm {
        display: block;
    }

    .fs-body-review-login .fs-c-newUsers {
        margin-left: 0px !important;
    }

    .fs-c-productList__list {
        display: grid;
        grid-template-columns: calc(33% - 0px) calc(33% - 0px) calc(33% - 0px);
        grid-gap: 0px;
    }
}

/* 商品の横並びを3つにする  */
@media screen and (min-width: 768px) {
 .fs-c-productList__list {
   display: -ms-grid;
   display: grid;
   -ms-grid-columns: 33.3333333333% 33.3333333333% 33.3333333333%;
   grid-template-columns: 33.3333333333% 33.3333333333% 33.3333333333%;
 }
}