/* カスタマイズ用CSS */
/* ▼ 共通 ▼ */
a {
    transition: opacity .4s ease-in-out;
}
a:hover {
    opacity: .6;
}
.ec-headerTitle .ec-headerTitle__title a {
    font-size: 28px;
}
.ec-itemNav__nav li a {
    font-size: 14px;
}
/* ▲ 共通 ▲ */

/* ▼ トップページ ▼ */
/*カテゴリ*/
.ec-categoryRole .ec-categoryRole__list {
    flex-wrap: wrap;
    gap: 20px 20px;
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem {
    margin: 0;
    width: calc(25% - 15px);
    background-color: #ffffff;
    box-shadow: 0 0 7px rgba(0, 0, 0, .1);
}
.ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem a {
    color: #000000;
}
.ec-categoryRole .ec-categoryRole__listItem figure {
    margin: 0;
}
.ec-categoryRole .ec-categoryRole__listItem figure figcaption {
    line-height: 1;
    padding: 10px;
    text-align: center;
}

/*新着・セール中の商品*/
.ec-newItemRole .ec-newItemRole__listItem .txt-sale {
    color: #DE5D50;
    border: 1px solid #DE5D50;
    border-radius: 5px;
    padding: 5px 10px;
    line-height: 1;
    display: inline-block;
    margin: 10px 0 0 0;
}

@media (max-width: 768px) {
    .ec-categoryRole .ec-categoryRole__list .ec-categoryRole__listItem {
        width: 47%;
    }
    .ec-categoryRole .ec-categoryRole__listItem figure figcaption {
        font-size: 12px;
    }
}

/* ▲ トップページ ▲ */