@charset "utf-8";


.search-category-btn {
    background-color: #f9f9f9;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 3%;
}
.search-category-btn .item {
    border: 2px solid #0192d1;
    box-shadow: 0 2px 1px #0072a3;
    border-radius: 6px;
    flex-basis: 48%;
    margin-bottom: 1rem;
}
.search-category-btn .item:hover {
    border-color: #ef8103;
    box-shadow: 0 2px 1px #ed6e00;
}
.search-category-btn a {
    align-items: center;
    background-color: #fff;
    border-radius: 6px;
    color: #222;
    display: inline-flex;
    font-size: .72rem;
    font-weight: bold;
    padding: 0.6rem 0.4rem;
    width: 100%;
}
.search-category-btn .img-box {
    height: auto;
    margin-right: 0.4rem;
    width: 32px;
}


/* SP用 */
@media screen and (max-width: 560px) {
    .sale-banner-btn {
        background-color: #00a3de;
        border-color: #00a3de!important;
    }
}

/* PC用 */
@media screen and (min-width: 561px) {
.sale-banner-btn {
    background-color: #00a3de;
    border-color: #00a3de!important;
}

.search-category-btn .item {
    flex-basis: 31%;
    margin-bottom: 1.1rem;
}
.search-category-btn a {
    font-size: 1rem;
    padding: .8rem;
}
.search-category-btn .img-box {
    margin-right: 0.7rem;
    width: 40px;
}
}