@charset "UTF-8";
/* CSS Document */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333333;
}
div>span{
    display: inline-block;
}

.shoplist.leftinfo ul{
    margin: 3rem auto 5rem;
    max-width: 514px;
    justify-content: center;
}
.shoplist.leftinfo li{
    font-size: 110%;
}
.shop-city{
    margin: 0 auto 2.4rem;
    max-width: 860px;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    background: #1C2660;
    text-align: center;
}
.shop-city_outer{
    margin-top: -170px;
    padding-top: 170px;
}
.shop-list{
    margin: auto;
    max-width: 750px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.shop-list>li{
    display: flex;
    align-items: center;
    gap: 5%;
    padding: 25px 38px;
    border: 1px solid #C0C1D3;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 5px 10px rgba(52,51,62,0.17);
}
.shop-list>li>img{
    display: block;
    width: 36%;
    height: auto;
}
.shop-list>li>div{
    width: calc(100% - 36%);
}
.shop-list h3{
    margin: 0 0 14px;
    color: #1C2660;
    font-size: 26px;
    font-weight: 700;
}
.shop-list h3 span{
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
}
.tag{
    position: relative;
    display: flex;
    align-items: center;
    width: 156px;
    height: 20px;
    padding: 1px 2px 1px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    background: #1C2660;
}

.tag:before{
    position: absolute;
    top: 0;
    left: -9.5px;
    content: '';
    clip-path: polygon(100% 0, 20% 50%, 100% 100%);
    background: #1C2660;
    width: 10px;
    height: 20px;
}

.tag:after{
    position: absolute;
    top: calc(50% - 2px);
    left: 0px;
    width: 3px;
    height: 3px;
    content: '';
    border-radius: 50%;
    background: #fff;
}
.address>div>a{
    display: inline-block;
    margin-top: 2px;
    padding-left: 5px;
    color: #1C2660;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-align: right;
}
.address>div>a::after{
    content: "＞＞";
    font-size: 11px;
}
.address>div>a:hover{
    text-decoration: none;
}
.shop-list_detail{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.shop-list_detail li{
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
}
.shop-list_detail li.time{
    align-items: center;
}
.shop-list_icon{
    display: inline-block;
    margin-right: 5px;
}
.shop-list_detail li.-link a{
    color: #1C2660;
    text-decoration: underline;
}
.shop-list_detail li.-link a::after{
    content: "＞＞";
    font-size: 13px;
}
.shop-list_detail li.-link a:hover{
    text-decoration: none;
}
.tel a{
    color: #333;
    cursor: pointer;
}
.tel a:hover{
    color: #333;
    text-decoration: underline;
}
.shop-list_btn{
    display: block;
    font-weight: 700;
    background: #D7671E;
    border: 1px solid #D7671E;
    border-radius: 3px;
    text-align: center;
    transition: all 0.2s ease-in-out;
}
.shop-list_btn:hover{
    color: #D7671E;
    background: #fff;
}
.kawasaki{
    margin-top: 70px;
}

@media (max-width: 790px){
    .shop-list{
        max-width: 500px;
    }
    .shop-list>li{
        flex-direction: column;
        gap: 18px;
        padding: 7% 8%;
    }
    .shop-list>li>img{
        margin: auto;
        width: 90%;
    }
    .shop-list>li>div{
        width: 100%;
    }
    .tag{
        margin: auto auto 5px;
    }
    .shop-list h3{
        line-height: 1.5;
        text-align: center;
    }
    .shop-list h3 span{
        display: block;
    }
    .shoplist .shoplist-area{
        font-size: 16px;
        line-height: 1.15;
    }
}
@media (max-width: 450px){
    .address>div>a{
        display: inline-block;
    }
    .shop-list h3{
        font-size: 24px;
    }
    .shop-list h3 span{
        font-size: 14px;
    }
    .shop-list_detail li{
        font-size: 15px;
    }
    .shop-list_icon{
        width: 15px;
    }
}