/* 出張相談対応セクション */
.visit-service-section {
    margin-top: 2rem;
}

.visit-service-banner {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.visit-service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.visit-service-icon {
    font-size: 2.5rem;
    color: #ffffff;
    z-index: 1;
}

.visit-service-content {
    flex: 1;
    z-index: 1;
}

.visit-service-title {
    margin: 0 0 0.5rem 0;
    color: #ffffff;
}

.outlet-visit-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.outlet-visit-badge i {
    color: #fbbf24;
}

.visit-service-description {
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .visit-service-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.2rem;
    }
    
    .visit-service-icon {
        font-size: 2rem;
    }
}