.shop{
    margin-top: 100px;
}

.shop:nth-of-type(n + 2){
    margin-top: 150px;
}

.shop__items{
    display: flex;
    flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 80px 60px;
    margin-top: 50px;
}

.shop__item{
    width: calc(50% - 60px * 1 / 2);
}

.shop__name{
    font-weight: 700;
    font-size: 24px;
    line-height: 180%;
    letter-spacing: 0.05em;
    color: #1B1E49;
    padding: 18.5px 24px;
    border-bottom: 1px solid #D9D9D9;

}
.shop__info{
    padding: 15px 24px;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}
.shop__info-title{
font-weight: 700;
font-size: 18px;
line-height: 180%;
letter-spacing: 0.05em;
width: 75px;
color: #1B1E49;
font-family: "Noto Sans JP", sans-serif;


}
.shop__info-value{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: 0.05em;
    color: #1B1E49;
    width: 70%;
}
.shop__map{
    position: absolute;
    right: 0;
    top: 15px;
    display: inline-block;
    background: #B81C22;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    line-height: 33px;
    max-width: 72px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.05em;
    font-family: "Noto Sans JP", sans-serif;
    border-radius: 50px;
    text-decoration: underline;

}

@media (max-width: 768px) {
    .shop{
        margin-top: 50px;
    }
    
    .shop:nth-of-type(n + 2){
        margin-top: 50px;
    }
    
    .shop__items{
        gap: 30px;
        margin-top: 30px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .shop__item{
        width: 100%;
    }
    
    .shop__name{
        font-size: 18px;
        padding: 10px 5px;
    }
    .shop__info{
        padding: 8px 5px;
        gap: 15px;
    }
    .shop__info-title{
    font-size: 14px;
    width: 60px;
    }
    
    .shop__info-value{
        font-size: 14px;
        line-height: 180%;
        width: 54%;

    }
    .shop__map{
        top: 8px;
        font-size: 12px;
        line-height: 26px;
        max-width: 68px;
    }
}
