def parse_salon(self, response):
    sel = Selector(response)
    item = LocationRestaurantItem()
    item['page_url'] = self.get_property(sel, LocationHotelSelectors.CANONICAL_URL) or response.url
    item['name'] = self.get_property(sel, LocationHotelSelectors.NAME)
    item['name_kata'] = self.get_property(sel, LocationHotelSelectors.NAME_KATA)
    item['address'] = self.get_property(sel, LocationHotelSelectors.ADDRESS, clean=True)
    item['phone'] = LocationHotelSelectors.get_phone(sel)

    prefecture, area = LocationHotelSelectors.get_prefecture_area(sel)

    item['prefecture'] = prefecture
    item['area'] = area
    genre = LocationHotelSelectors.get_restaurant_genre(sel)
    item['genre'] = genre
    item['kind'] = LocationHotelSelectors.convert_latte_kind(genre)

    item['page_body'] = LocationHotelSelectors.get_body(sel, is_restaurant=True)
    self.count += 1
    print u'%s: %s > %s -> %s' % (self.count, item['prefecture'], item['area'], item['name'])

    return item