@charset "utf-8";


/* = ショップリスト = */
.nav_list_item_brand {
    position: relative;
}

.nav_list_item_brand .list {
    position: relative;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

.nav_list_item_brand .list .item {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-top: 0.65em;
}

@media screen and (max-width: 940px) {

    .nav_list_item_brand .list .item {
        width: 31%;
        margin-left: 1%;
        margin-right: 1%;
    }
}

@media screen and (max-width: 790px) {

    .nav_list_item_brand .list .item {
        width: 48%;
        margin-left: 1%;
        margin-right: 1%;
    }
}

@media screen and (max-width: 440px) {
    .nav_list_item_brand .list .item {
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    }
}


.nav_list_item_brand .list .item a {
    background-color: #fff;
    color: #000;
    padding: 10px;
    position: relative;
    border-radius: 500px;
    line-height: 1.2;
    text-align: center;
    box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.5);
}

.nav_list_item_brand .list .item a:hover {
    background-color: #D5A300;
    color: #fff;
}



.shop_list {
    position: relative;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (max-width: 580px) {
    .shop_list {
        background-position: 50% 100%;
        background-size: 50%;
    }
}

.shop_list .item {
    position: relative;
    width: 31%;
    margin-top: 30px;
    margin-left: 1.15%;
    margin-right: 1.15%;
    padding-top: 0px;
    /*打ち消し*/
    padding-bottom: 0px;
    /*打ち消し*/
}

.shop_list .item::after {
    display: none;
}

@media screen and (max-width: 940px) {
    .shop_list .item {
        width: 47%;
        margin-left: 1.5%;
        margin-right: 1.5%;
    }
}

@media screen and (max-width: 640px) {
    .shop_list .item {
        width: 100%;
        margin-left: 0%;
        margin-right: 0%;
    }
}

.shop_list .item a {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-direction: column;
    box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.5);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #fff;
    padding-bottom: 25px;
}

.shop_list .item a .btn {
    border: 1px solid #D5A300;
}

.shop_list .item a:hover {
    background-color: #D5A300;
}

.shop_list .item a:hover .btn {
    color: #fff;
    background-color: #D5A300;
    opacity: 1;
    border: 1px solid #fff;
}

.shop_list .item a:hover .btn::after {
    color: #fff;
    right: 10px;
}


.item_brand_images {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.item_brand_images img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    object-fit: cover;
    height: 100%;
    z-index: 1;
}

.item_brand_images .shop_logo {
    max-width: 30%;
    max-height: 50%;
    z-index: 3;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    object-fit: contain;
}

.item_brand_images::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0%;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.nologo::after {
    display: none;
}

.item_brand_conts {
    width: 86%;
    height: calc(100% - 200px);
    margin-left: auto;
    margin-right: auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-direction: column;
}

.shop_list a .item_brand_conts dt {
    font-weight: 700;
    padding-top: 1em;
    padding-bottom: 1em;
    color: #000;
}

.item_brand_conts dt span {
    display: block;
    font-weight: 700;
    font-size: 20px;
}

.item_brand_conts .item_link {
    margin-top: auto;
}

.item_brand_conts .item_link.btn {
    width: 100%;
    padding: 10px 15px;
    padding-right: 40px;
    box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0);
}