body{
    font-family: "Noto Sans JP", sans-serif;
}

/* category list
--------------------------*/
.spPage_catIcon{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 8%;
}
.pc.sp_banner img{
    max-width: 763px;
    height: auto;
}
#productList{
    max-width: 763px;
}

/* バナーリスト
--------------------------*/
.spPage_catIcon{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    grid-column-gap: 15px;
    grid-row-gap: 15px; 
    margin-bottom: 8%;
}
@media (max-width: 768px) {
    .spPage_catIcon{
    grid-template-columns: repeat(2, 1fr);
    }
}
.spPage_catIcon li img{
    width: 100%;
    height: auto;
}

.seTitle{
    color: #002d59;
    padding: 1% 1em;
    border-top: 2px solid #002d59;
    border-bottom: 2px solid #002d59;
    margin-bottom: 2%;
}
@media (max-width: 1024px) {
    spPage_catIcon li{
        width: 49%;
    }
}

/*PC/SP
---------------------------*/
.pc{
    display: block;
}
.sp{
    display: none;
}
@media (max-width: 1024px) {
    .pc{
    display: none;
}
.sp{
    display: block;
}

}


