SELECT 
  a.item_id, 
  b.reason 
FROM 
  cscart_access_restriction as a 
  LEFT JOIN cscart_access_restriction_reason_descriptions as b ON a.item_id = b.item_id 
  AND a.type = b.type 
  AND lang_code = 'ja' 
WHERE 
  (
    ip_from <= '12e2b559' 
    AND ip_to >= '12e2b559'
  ) 
  AND a.type IN ('ips', 'ipr', 'ipb') 
  AND status = 'A'

Query time 0.00257

JSON explain

{
  "query_block": {
    "select_id": 1,
    "table": {
      "table_name": "a",
      "access_type": "ALL",
      "possible_keys": ["type"],
      "rows": 44,
      "filtered": 100,
      "attached_condition": "a.ip_from <= '12e2b559' and a.ip_to >= '12e2b559' and a.`type` in ('ips','ipr','ipb') and a.`status` = 'A'"
    },
    "table": {
      "table_name": "b",
      "access_type": "eq_ref",
      "possible_keys": ["PRIMARY"],
      "key": "PRIMARY",
      "key_length": "18",
      "used_key_parts": ["item_id", "type", "lang_code"],
      "ref": ["markins_test.a.item_id", "markins_test.a.type", "const"],
      "rows": 1,
      "filtered": 100,
      "attached_condition": "trigcond(b.lang_code = 'ja')"
    }
  }
}