@charset "UTF-8";

/* 取扱商品ページ用スタイル */
.p-product-container {
    padding-bottom: 160px;
}

.p-product {
    margin-top: 80px;
}

/* カードグリッド */
.p-product__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* カードリンク */
.p-product__card {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* カード画像 */
.p-product__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.p-product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

@media (hover: hover) {

    a.p-product__card:hover .p-product__image img,
    a.p-product__card:focus-visible .p-product__image img {
        transform: scale(1.05);
    }

    .p-product__label {
        transition: color 0.3s ease;
    }

    a.p-product__card:hover .p-product__label,
    a.p-product__card:focus-visible .p-product__label {
        color: var(--color_main);
    }
}

a.p-product__card:focus-visible {
    outline: 2px solid var(--color_main);
    outline-offset: 2px;
}

/* カードラベル */
.p-product__label {
    margin-bottom: 16px;
    text-decoration: underline;
}

/* SP */
@media screen and (max-width: 599px) {
    .p-product-container {
        padding-bottom: 80px;
    }

    .p-product {
        margin-top: 40px;
    }

    .p-product__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
