.sidebar-shopinfo {
    margin-bottom: 20px;
    padding: 20px;
    background-color: var(--bg02);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.sidebar-shopinfo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text01);
    margin: 0 0 30px 0 !important;
    line-height: 1.2;
    text-align: center;
    position: relative;
}

.sidebar-shopinfo-ruby {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text01);
}

.shopinfo-item {
    display: flex;
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid var(--bg01);
}

.shopinfo-item:last-child {
    border-bottom: none;
}

.shopinfo-label {
    font-weight: 600;
    color: var(--text01);
    min-width: 80px;
    margin-right: 10px;
    font-size: 0.9rem;
}

.shopinfo-value {
    color: var(--text01);
    font-size: 0.9rem;
    line-height: 1.4;
    flex: 1;
}

.shopinfo-tags {
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    justify-items: center;
}

.shopinfo-tag {
    background-color: var(--tag-shopinfo-bg);
    color: var(--tag-shopinfo-text);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    width: 100px;
    text-align: center;
    white-space: nowrap;
}

.shopinfo-map {
    margin-top: 20px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.shopinfo-map iframe {
    border-radius: 8px;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
    .sidebar-shopinfo {
        margin-bottom: 15px;
    }
    
    .sidebar-shopinfo-title {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .shopinfo-label,
    .shopinfo-value {
        font-size: 0.85rem;
    }
    
    .shopinfo-item {
        margin: 8px 0;
        padding: 6px 0;
    }
} 