@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@500&display=swap');
:root {
    /* color */
    --ec-gray-font: #808080;
    --ec-black: #262626;
    --ec-red:#ff0000;
    /* font */
    --ec-en : 'Jost', sans-serif;
}
span.reference {
    color: var(--ec-red);
}
.tax::after{
    content: "(税込)";
    font-family: var(--ja);
    font-size: 1.2rem;
    margin-left: 5px;
    color: var(--ec-gray-font);
}
.point::after{
    content: "ポイント";
    font-family: var(--ja);
    font-size: 1.2rem;
    margin-left: 5px;
    color: var(--ec-gray-font);
}
/*==============
    goods-top
===============*/
#goods ul{
    display: flex;
    flex-wrap: wrap;
    row-gap: 80px;
    column-gap: 4%;
}
#goods ul li{
    width: 22%;
}
#goods ul li a .imgWrap{
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #ccc;
}
#goods ul li a .imgWrap img{
    transition: 0.8s all;
}
#goods ul li a:hover .imgWrap img{
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
#goods ul li a .goods-name{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    font-size: 1.3rem;
    margin-bottom: 10px;
    transition: 0.4s all;
}
#goods ul li a .price{
    font-family: var(--ec-en);
    font-size: 1.4rem;
    color: var(--ec-gray-font);
    transition: 0.4s all;
}
#goods ul li a:hover .goods-name,
#goods ul li a:hover .price{
    opacity: 0.5;
}
#goods .lead {
    margin-bottom: 32px;
    font-size: 1.6rem;
}

#goods .lead .txt {
    margin-bottom: 8px;
}
#goods .lead p.txt:last-child{
    margin-bottom:0px;
}
#goods .error{
    color:var(--ec-black);
}
/* pagination  PREV 1 2 3 NEXT*/
.pagination {
    margin-top: 62px;
    font-family: var(--ec-en);
    font-size: 20px;
    display: flex;
    justify-content: center;
}

.pagination content{
    font-size: initial;
    font-family: var(--ec-en);
    margin-right: 3%;
}
.pagination content a{
    color: var(--ec-gray-font);
}
.pagination.text-center a,
.pagination.text-center span{
    font-size: 1.6rem;
    transition: 0.4s all;
}
.material-icons.md-24 { 
    font-size: 1.6rem;
}
.pagination.text-center a:hover{
    opacity: 0.5;
}
.pagination content:last-child{
    margin-right: 0;
}
.pagination a .material-icons {
    vertical-align: sub;
}
.pagination span.current {
    color: var(--sub-color);
    font-family: var(--ec-en);
}

@media screen and (max-width: 768px){
    #ec-header ul li:nth-child(1) {
        width: 100%;
    }
    #goods ul{
        row-gap: 50px;
    }
    #goods ul li{
        width: 48%;
    }
    /* pagination  PREV 1 2 3 NEXT*/
    .pagination content{
        font-size: 16px;
    }
    .pagination a .material-icons {
        font-size: 22px;
    }
    #goods .lead {
    margin-bottom: 24px;
    font-size: 1.4rem;
    }
    #goods .lead p.txt {
    margin-bottom: 8px;
    }
    #goods .lead p.txt:last-child{
    margin-bottom:0px;
    }
}
/*==============
    buyFlow
===============*/
.buyFlow .step{
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-bottom: 70px;
}
.buyFlow .jp{
    font-family:var(--ja);
    text-align: center;
}
.buyFlow .step li{
    width: 100%;
    max-width: 128px;
    border: 1px solid var(--ec-black);
    text-align: center;
    font-size: 1.3rem;
    background: #fff;
    padding: 10px 0 11px;
    position: relative;
    line-height: 1.5;
    display: block;
}
.buyFlow .step li.icon-arrow::after,
.buyFlow .step li.on.icon-arrow::after{
    content: "\e901";
    font-size: 2rem;
    position: absolute;
    right: -2.5rem;
    line-height: 0.8;
    color: var(--ec-black);
}
.buyFlow .step li.icon-arrow::before{
    content: none;
}
.buyFlow .step li.on{
    background: var(--ec-black);
    color: #fff;
}
@media screen and (max-width: 768px){
    .buyFlow .step{
        margin-bottom: 60px;
    }
    .pc{
        display: none;
    }
    .sp{
        display: block;
    }
}
@media screen and (max-width: 700px){
    .buyFlow .step li{
        max-width: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .buyFlow .step li.icon-arrow::after,
    .buyFlow .step li.on.icon-arrow::after{

}
    .ec-container{
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 80px !important;
}
    
}
header.pc .button a:hover {
    background: var(--color1);
    color: var(--pale-gray);
}
@media screen and (max-width: 1200px){
        header.sp h1{
        position: fixed;
        top: 5.56vh;
        left: 3.3%;
        z-index: 1;
    }
        header.sp h1 img {
        width: 100%;
        max-width: 155px;
    }
}