/* 店舗情報CSS */
.resv-shop-info {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    flex-wrap: wrap;
}
.resv-shop-map {
    flex: 1 1 320px;
}
.resv-shop-detail {
    flex: 1 1 320px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    background-image: url('/img/map.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}
.resv-shop-detail p {
    margin-left: 1rem;
}
.resv-shiga {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 90px;
    opacity: 0.15;
}

.shop-info-map {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    object-fit: cover;
    margin-top: 8px;
    border: 1px solid #ddd;
}

@media (max-width: 900px) {
    .resv-shop-info {
        flex-direction: column;
        gap: 16px;
    }
}
@media (max-width: 600px) {
    .resv-shop-detail {
        padding: 12px;
    }
}

@media (max-width: 430px) {
    .shop-info-map {
        height: 300px;
    }
}