/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

/* =========================
   LP商品一覧
========================= */

.lp-product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(250px,300px));
    justify-content:center;
    gap:24px;
    margin:40px 0;
}


/* 商品カード */

.lp-product-card{
    border:1px solid #ddd;
    padding:15px;
    text-align:left;
    background:#fff;

    display:flex;
    flex-direction:column;
}

/* 商品画像 */

.lp-product-card img{
    width:100%;
    height:auto;
    display:block;
}

/* 商品名 */

.lp-product-card h3{
    margin:15px 0 10px;
    font-size:20px;
    font-weight:bold;
    line-height:1.5;
    color:#003f94;
}

/* セール価格 */

.lp-price{
    color:#d60000;
    margin:10px 0 5px;
}

.lp-price strong{
    font-size:25px !important;
    font-weight:bold;
}

/* 通常販売価格 */

.lp-price-normal{
    color:#000000;
    margin:10px 0 5px;
}

.lp-price-normal strong{
    font-size:25px !important;
    font-weight:bold;
}

/* 通常価格 セール元値*/

.lp-label{
    color:#666;
    font-size:12px;
    text-decoration:none;
    display:block;
}

.lp-old-price{
    color:#999;
    text-decoration:line-through;
    margin-bottom:15px;
}

/* 通常価格 クーポン適用前*/

.lp-label-cp{
    color:#666;
    font-size:12px;
    text-decoration:none;
    display:block;
}

.lp-old-price-cp{
    color:#999;
    text-decoration:none;
    margin-bottom:15px;
}

/* ボタン */

.lp-product-card .c-btn{
    width:100% !important;
    margin-top:auto;
}

.lp-product-card .c-btn a{
    display:block !important;
    width:100% !important;
    box-sizing:border-box;
}

/* カラバリアイコン */

.lp-color-image{
    display:flex;
    gap:4px;
    margin:6px 0 10px;
}

.lp-color-image img{
    width:30px;
    height:auto;
}


/* =========================
   スマホ
========================= */

@media(max-width:750px){

    .lp-product-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .lp-product-card{
        padding:10px;
    }

    .lp-product-card h3{
        font-size:15px;
    }

    .lp-product-card .c-btn a::after{
        display:none !important;
    }

    .lp-price{
        font-size:11px;
    }

    .lp-price strong{
        font-size:18px !important;
        line-height:1.1;
    }

    .lp-price-normal{
        font-size:11px;
    }

    .lp-price-nomarl strong{
        font-size:18px !important;
        line-height:1.1;
    }

    .lp-label{
        font-size:9px;
    }

    .lp-old-price{
        font-size:11px;
    }

    .lp-label-cp{
        font-size:9px;
    }

    .lp-old-price-cp{
        font-size:11px;
    }

   .lp-color-image img{
        width:20px;
    }
}

/* =========================
   ラベル
========================= */

.lp-badges{
    margin-bottom:10px;
}

.lp-badge{
    display:inline-block;
    padding:4px 10px;
    margin:0 4px 4px 0;
    font-size:12px;
    font-weight:bold;
    color:#fff;
    border-radius:3px;
}

.lp-badge.stock{
    background:#d60000;
}

.lp-badge.web{
    background:#005bac;
}