SELECT 
  a.*, 
  b.option_name, 
  b.internal_option_name, 
  b.option_text, 
  b.description, 
  b.inner_hint, 
  b.incorrect_message, 
  b.comment 
FROM 
  cscart_product_options as a 
  LEFT JOIN cscart_product_options_descriptions as b ON a.option_id = b.option_id 
  AND b.lang_code = 'ja' 
WHERE 
  a.product_id IN (
    426562, 446627, 409567, 403223, 456812, 
    416073, 444305, 414771, 405344, 428114, 
    460638, 435197, 412021, 450932, 405246, 
    430164, 444428, 428029, 441949, 460434, 
    433652, 426548, 416330, 447518, 427542, 
    408429, 447154, 419276, 421080, 437947, 
    413185, 419295, 403213, 403380, 408359, 
    409393, 430349, 453094, 411903, 422798, 
    422092, 433129, 424917, 459596, 425363, 
    441519, 434875, 460167
  ) 
  AND a.status = 'A' 
ORDER BY 
  a.position

Query time 0.00055

JSON explain

{
  "query_block": {
    "select_id": 1,
    "cost": 0.038809631,
    "nested_loop": [
      {
        "read_sorted_file": {
          "filesort": {
            "sort_key": "a.position",
            "table": {
              "table_name": "a",
              "access_type": "ALL",
              "possible_keys": ["c_status"],
              "loops": 1,
              "rows": 16,
              "cost": 0.0134628,
              "filtered": 100,
              "attached_condition": "a.product_id in (426562,446627,409567,403223,456812,416073,444305,414771,405344,428114,460638,435197,412021,450932,405246,430164,444428,428029,441949,460434,433652,426548,416330,447518,427542,408429,447154,419276,421080,437947,413185,419295,403213,403380,408359,409393,430349,453094,411903,422798,422092,433129,424917,459596,425363,441519,434875,460167) and a.`status` = 'A'"
            }
          }
        }
      },
      {
        "table": {
          "table_name": "b",
          "access_type": "eq_ref",
          "possible_keys": ["PRIMARY"],
          "key": "PRIMARY",
          "key_length": "9",
          "used_key_parts": ["option_id", "lang_code"],
          "ref": ["u985510652_ecartify.a.option_id", "const"],
          "loops": 16,
          "rows": 1,
          "cost": 0.01513024,
          "filtered": 100,
          "attached_condition": "trigcond(b.lang_code = 'ja')"
        }
      }
    ]
  }
}