Pandoc is awesome for this:
`pandoc input.docx -o output.md`
There's more you can do, with style sheets and so on, which you will likely have to dig into for the tables and multiple columns to come out the way you want. You can also extract media files from inside a docx file:
`pandoc --extract-media=. input.docx -o output.md`