﻿.grb_diapo-product__product-list {
    max-width: 1440px;
    margin: 0 auto;
}
.grb_diapo-product__product-item {
    width: 100%;
    max-width: 280px;
    padding: 5px 5px 15px 10px;
    background-color: var(--blanc);
    border-radius: 10px;
    border: 1px solid #D4D4D4;
    transition: border-color .2s;
}
.grb_diapo-product__product-item:hover {
    border-color: #E53029;
}
.grb_diapo-product__tag {
    padding: 5px;
    color: var(--blanc);
    border-radius: 5px;
    background-color: #E53029;
}
.grb_diapo-product__tag--event {
    margin-right: auto;
    font-weight: var(--semibold);
}
.grb_diapo-product__image {
    width: 100%;
    height: 120px;
}
.grb_diapo-product__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.grb_diapo-product__product-content {
    row-gap: 5px;
    width: 100%;
}
.grb_diapo-product__product-category {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: var(--semibold);
}
.grb_diapo-product__product-label {
    display: -webkit-box;
    width: 100%;
    max-width: 240px;
    height: 30px;
    margin-right: auto;
    font-size: 13px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.grb_diapo-product__prices {
    column-gap: 5px;
    margin-right: auto
}
.grb_diapo-product__origin-price {
    position: relative;
}
.grb_diapo-product__origin-price::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: var(--noir);
    transform: translateY(-50%);
}
.grb_diapo-product__current-price {
    font-size: var(--size_h4);
    font-weight: var(--semibold);
}
.grb_diapo-product__origin-price + .grb_diapo-product__current-price {
    color: #EE3C34;
}
.grb_summer-sales__bg-laptop {
    width: 100%;
    max-width: 268px;
    height: 178px;
    border-radius: 10px;
}
.grb_summer-sales__bg-laptop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.grb_summer-sales__bg-pc {
    position: absolute;
    bottom: -22px;
    left: -10px;
}
.grb_summer-sales__rect {
    position: relative;
    width: 100%;
    max-width: 570px;
    height: 263px;
    padding: 35px 30px;
    border-radius: 10px;
    background-color: #DE2E22;
}
.grb_summer-sales__rect.themeid {
    height: 263px;
}
.grb_summer-sales__rect-content {
    align-items: flex-start;
    width: 100%;
    height: 100%;
    max-width: 206px;
}
.grb_summer-sales__rect-text {
    color: #fff;
    font-size: 20px;
    font-weight: var(--semibold);
}
.grb_summer-sales__rect:hover svg path {
    animation-name: movedArrow;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
.grb_summer-sales__rect-btn {
    width: fit-content;
    padding: 10px;
    background-color: #fff;
    color: #DE2E22;
    font-size: 18px;
    font-weight: var(--semibold);
    border-radius: 10px;
}

.grb_summer-sales__rect:has(.grb_summer-sales__bg-pc) {
    justify-content: flex-end;
}
.grb_summer-sales__rect--mobile {
    display: none;
    width: 100%;
}
.grb_summer-sales__rect--mobile__link {
    padding: 10px 15px;
    color: #fff;
    background-color: #DE2E22;
    font-size: 18px;
    font-weight: var(--semibold);
    border: 2px solid #DE2E22;
    border-radius: 20px;
}
.grb_summer-sales__rect--mobile__link.themeid {
    color: #DE2E22;
    background-color: #fff;
}
@media screen and (max-width: 768px) {
    .grb_summer-sales__rect {
        display: none;
    }
    .grb_summer-sales__rect--mobile {
        display: flex;
    }

    .grb_diapo-product__product-item {
        max-width: 170px;
        padding: 5px 5px 20px 5px;
    }
    .grb_diapo-product__tag {
        font-size: 12px;
    }
    .grb_diapo-product__image {
        height: 100px;
    }
}