/* クーポン対象商品の画像サイズ調整 */
.fs-body-my-coupons .fs-c-productListCarousel__list__item {
    max-width: 200px;
    min-width: 200px;
    margin: 0 8px;
}

.fs-body-my-coupons .fs-c-productListItem .fs-c-buttonContainer {
    flex-direction: column;
}

.fs-body-my-coupons .fs-c-button--addToCart--list.fs-c-button--plain {
    padding: 15px;
}

/*商品詳細ページ*/
.variations-title {
    padding-top: 10px;
}

.variations-title a {
    font-size: 18px;
    font-weight: bold;
}

.variations-button {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 16px 0 16px 0;
}

.variations-button li a {
    display: block;
    padding: 10px 24px;
    border: 1px solid #DD5300;
    border-radius: 50px;
    background-color: #ffffff;
    color: #DD5300;
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
}

.variations-button li a:hover {
    background-color: #f5f5f5;
    border-color: #999;
}

.variations-button li a.active {
    background-color: #333333;
    color: #ffffff;
    border-color: #333333;
}

.variations-button li a span {
    color: #000;
    font-size: 80%;
}

@media (min-width: 1200px) {
    .variations-button {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 1200px) {
    .variations-title {
        text-align: center;
    }
}
/*プレビュー時のヘッダ非表示*/
.fs-preview-header { display: none; }