SELECT 
  cscart_categories.category_id, 
  cscart_categories.parent_id, 
  cscart_categories.id_path, 
  cscart_category_descriptions.category, 
  cscart_categories.position, 
  cscart_categories.status, 
  cscart_categories.company_id 
FROM 
  cscart_categories 
  LEFT JOIN cscart_category_descriptions ON cscart_categories.category_id = cscart_category_descriptions.category_id 
  AND cscart_category_descriptions.lang_code = 'ja' 
WHERE 
  1 = 1 
  AND (
    cscart_categories.usergroup_ids = '' 
    OR FIND_IN_SET(
      0, cscart_categories.usergroup_ids
    ) 
    OR FIND_IN_SET(
      1, cscart_categories.usergroup_ids
    )
  ) 
  AND cscart_categories.status IN ('A') 
  AND cscart_categories.id_path LIKE '203/%' 
ORDER BY 
  cscart_categories.is_trash asc, 
  cscart_categories.position asc, 
  cscart_category_descriptions.category asc

Query time 0.00008

JSON explain

{
  "query_block": {
    "select_id": 1,
    "filesort": {
      "sort_key": "cscart_categories.is_trash, cscart_categories.position, cscart_category_descriptions.category",
      "temporary_table": {
        "table": {
          "table_name": "cscart_categories",
          "access_type": "range",
          "possible_keys": ["c_status", "id_path"],
          "key": "id_path",
          "key_length": "767",
          "used_key_parts": ["id_path"],
          "rows": 12,
          "filtered": 100,
          "index_condition": "cscart_categories.id_path like '203/%'",
          "attached_condition": "(cscart_categories.usergroup_ids = '' or find_in_set(0,cscart_categories.usergroup_ids) or find_in_set(1,cscart_categories.usergroup_ids)) and cscart_categories.`status` = 'A'"
        },
        "table": {
          "table_name": "cscart_category_descriptions",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["category_id", "lang_code"],
          "ref": ["smscrm_edev.cscart_categories.category_id", "const"],
          "rows": 1,
          "filtered": 100,
          "attached_condition": "trigcond(cscart_category_descriptions.lang_code = 'ja')"
        }
      }
    }
  }
}

Result

category_id parent_id id_path category position status company_id
210 204 203/204/210 コンフォート & クルーザー 10 A 0
212 211 203/211/212 ゴルフクラブ 10 A 0
216 215 203/215/216 バックパック 10 A 0
204 203 203/204 自転車 10 A 0
211 203 203/211 ゴルフ 20 A 0
213 211 203/211/213 ゴルフボール 20 A 0
209 204 203/204/209 ロードバイク 20 A 0
217 215 203/215/217 寝袋 20 A 0
215 203 203/215 キャンプ用品 30 A 0
214 211 203/211/214 ゴルフバッグ & カート 30 A 0
218 215 203/215/218 テント 30 A 0
208 204 203/204/208 マウンテンバイク 30 A 0